From af83fb961154a98ec94a533ef07ebfb0d9610f90 Mon Sep 17 00:00:00 2001 From: keronshb Date: Sat, 20 Nov 2021 12:04:35 -0500 Subject: [PATCH 01/11] FestiveMap 2021 --- _maps/festivestation.dm | 1 + _maps/festivestation.json | 11 + .../map_files/FestiveBall/FestiveStation.dmm | 123060 +++++++++++++++ .../FestiveBall/doorButtonOrganizer.dm | 10 + _maps/map_files/LambdaStation/lambda.dmm | 52 +- _maps/map_files/PubbyStation/PubbyStation.dmm | 98 +- code/datums/weather/weather.dm | 4 + .../datums/weather/weather_types/ice_storm.dm | 36 + code/game/area/Space_Station_13_areas.dm | 2 +- code/game/area/areas/edina.dm | 204 + code/game/objects/structures/fence.dm | 21 +- code/game/objects/structures/fluff.dm | 6 + code/modules/clothing/gloves/mittens.dm | 30 + code/modules/holiday/halloween/jacqueen.dm | 144 + code/modules/vehicles/vehicle_key.dm | 21 + config/maps.txt | 4 + icons/mob/radial.dmi | Bin 18236 -> 18973 bytes icons/obj/clothing/gloves.dmi | Bin 22566 -> 24034 bytes icons/obj/halloween_items.dmi | Bin 9171 -> 12351 bytes icons/obj/sofaclean.dmi | Bin 0 -> 3376 bytes icons/turf/areas.dmi | Bin 41609 -> 43119 bytes modular_citadel/code/modules/festive/32x64.dm | 60 + .../code/modules/festive/32x64icons.dmi | Bin 0 -> 2573 bytes .../code/modules/festive/alleywaybricks.dmi | Bin 0 -> 753 bytes .../code/modules/festive/bigtree.dmi | Bin 0 -> 235597 bytes .../code/modules/festive/blue_brick_wall.dmi | Bin 0 -> 1691 bytes .../modules/festive/blue_brick_window.dmi | Bin 0 -> 3943 bytes .../code/modules/festive/city_sign.dmi | Bin 0 -> 1227 bytes .../code/modules/festive/cobblestone.dmi | Bin 0 -> 1495 bytes .../code/modules/festive/festive_decals.dm | 53 + .../code/modules/festive/festive_notes.dm | 7 + .../code/modules/festive/festive_objects.dmi | Bin 0 -> 2139 bytes .../code/modules/festive/grey_brick_wall.dmi | Bin 0 -> 1624 bytes .../modules/festive/grey_brick_window.dmi | Bin 0 -> 3789 bytes .../code/modules/festive/grey_panel_wall.dmi | Bin 0 -> 1167 bytes .../code/modules/festive/privacy.dm | 26 + .../code/modules/festive/rails.dmi | Bin 0 -> 707 bytes .../code/modules/festive/red_brick_wall.dmi | Bin 0 -> 1630 bytes .../code/modules/festive/red_brick_window.dmi | Bin 0 -> 4028 bytes .../code/modules/festive/sidewalk.dmi | Bin 0 -> 1071 bytes .../code/modules/festive/stairs.dmi | Bin 0 -> 2179 bytes .../code/modules/festive/streetdecals.dmi | Bin 0 -> 1807 bytes .../code/modules/festive/trainplatform.dmi | Bin 0 -> 506 bytes .../modules/festive/trainplatformedges.dmi | Bin 0 -> 444 bytes modular_citadel/code/modules/festive/turfs.dm | 1671 + .../code/modules/festive/wheelchair.dm | 114 + .../modules/festive/white_alleywaybricks.dmi | Bin 0 -> 753 bytes .../code/modules/festive/white_brick_wall.dmi | Bin 0 -> 1623 bytes .../modules/festive/white_brick_window.dmi | Bin 0 -> 3867 bytes .../code/modules/festive/wooden.dmi | Bin 0 -> 423 bytes .../code/modules/vectorcrafts/vectorcraft.dm | 12 + .../code/modules/vectorcrafts/vectortruck.dm | 147 + tgstation.dme | 11 + 53 files changed, 125728 insertions(+), 77 deletions(-) create mode 100644 _maps/festivestation.dm create mode 100644 _maps/festivestation.json create mode 100644 _maps/map_files/FestiveBall/FestiveStation.dmm create mode 100644 _maps/map_files/FestiveBall/doorButtonOrganizer.dm create mode 100644 code/datums/weather/weather_types/ice_storm.dm create mode 100644 code/game/area/areas/edina.dm create mode 100644 code/modules/clothing/gloves/mittens.dm create mode 100644 icons/obj/sofaclean.dmi create mode 100644 modular_citadel/code/modules/festive/32x64.dm create mode 100644 modular_citadel/code/modules/festive/32x64icons.dmi create mode 100644 modular_citadel/code/modules/festive/alleywaybricks.dmi create mode 100644 modular_citadel/code/modules/festive/bigtree.dmi create mode 100644 modular_citadel/code/modules/festive/blue_brick_wall.dmi create mode 100644 modular_citadel/code/modules/festive/blue_brick_window.dmi create mode 100644 modular_citadel/code/modules/festive/city_sign.dmi create mode 100644 modular_citadel/code/modules/festive/cobblestone.dmi create mode 100644 modular_citadel/code/modules/festive/festive_decals.dm create mode 100644 modular_citadel/code/modules/festive/festive_notes.dm create mode 100644 modular_citadel/code/modules/festive/festive_objects.dmi create mode 100644 modular_citadel/code/modules/festive/grey_brick_wall.dmi create mode 100644 modular_citadel/code/modules/festive/grey_brick_window.dmi create mode 100644 modular_citadel/code/modules/festive/grey_panel_wall.dmi create mode 100644 modular_citadel/code/modules/festive/privacy.dm create mode 100644 modular_citadel/code/modules/festive/rails.dmi create mode 100644 modular_citadel/code/modules/festive/red_brick_wall.dmi create mode 100644 modular_citadel/code/modules/festive/red_brick_window.dmi create mode 100644 modular_citadel/code/modules/festive/sidewalk.dmi create mode 100644 modular_citadel/code/modules/festive/stairs.dmi create mode 100644 modular_citadel/code/modules/festive/streetdecals.dmi create mode 100644 modular_citadel/code/modules/festive/trainplatform.dmi create mode 100644 modular_citadel/code/modules/festive/trainplatformedges.dmi create mode 100644 modular_citadel/code/modules/festive/turfs.dm create mode 100644 modular_citadel/code/modules/festive/wheelchair.dm create mode 100644 modular_citadel/code/modules/festive/white_alleywaybricks.dmi create mode 100644 modular_citadel/code/modules/festive/white_brick_wall.dmi create mode 100644 modular_citadel/code/modules/festive/white_brick_window.dmi create mode 100644 modular_citadel/code/modules/festive/wooden.dmi create mode 100644 modular_citadel/code/modules/vectorcrafts/vectortruck.dm diff --git a/_maps/festivestation.dm b/_maps/festivestation.dm new file mode 100644 index 0000000000..2016d22f30 --- /dev/null +++ b/_maps/festivestation.dm @@ -0,0 +1 @@ +#define FORCE_MAP "_maps/FestiveStation.json" diff --git a/_maps/festivestation.json b/_maps/festivestation.json new file mode 100644 index 0000000000..0803c1b566 --- /dev/null +++ b/_maps/festivestation.json @@ -0,0 +1,11 @@ +{ + "map_name": "FestiveStation", + "map_path": "map_files/FestiveBall", + "map_file": "FestiveStation.dmm", + "shuttles": { + "cargo": "cargo_box", + "ferry": "ferry_fancy", + "whiteship": "whiteship_box", + "emergency": "emergency_box" + } +} diff --git a/_maps/map_files/FestiveBall/FestiveStation.dmm b/_maps/map_files/FestiveBall/FestiveStation.dmm new file mode 100644 index 0000000000..f401e7f1db --- /dev/null +++ b/_maps/map_files/FestiveBall/FestiveStation.dmm @@ -0,0 +1,123060 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/obj/effect/baseturf_helper/asteroid/snow, +/turf/closed/indestructible/rock/snow, +/area/edina) +"aab" = ( +/obj/effect/mapping_helpers/planet_z, +/turf/closed/indestructible/rock/snow, +/area/edina) +"aac" = ( +/turf/closed/indestructible/rock/snow, +/area/edina) +"aad" = ( +/turf/closed/mineral/snowmountain, +/area/edina) +"aae" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"aaf" = ( +/obj/effect/festive/trainrails/north{ + icon_state = "trainrails_west" + }, +/turf/open/floor/plating/dirt, +/area/edina) +"aag" = ( +/obj/effect/festive/trainrails/north{ + icon_state = "trainrails_east" + }, +/turf/open/floor/plating/dirt, +/area/edina) +"aah" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"aaj" = ( +/turf/open/lava, +/area/edina) +"aak" = ( +/turf/closed/festive/whitebrick, +/area/edina/backstreet) +"aal" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aam" = ( +/turf/closed/festive/redbrick, +/area/edina) +"aan" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aao" = ( +/obj/structure/table/wood, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aap" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aaq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"aar" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"aat" = ( +/obj/item/clothing/shoes/kindleKicks, +/turf/open/floor/plasteel/dark, +/area/edina/crew_quarters/store/pet) +"aau" = ( +/obj/item/clothing/shoes/wheelys, +/obj/item/clothing/suit/nerdshirt, +/turf/open/floor/plasteel/dark, +/area/edina/crew_quarters/store/pet) +"aav" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/window, +/turf/open/floor/grass, +/area/edina/crew_quarters/store/pet) +"aaw" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 5 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"aax" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window, +/obj/structure/sign/poster/contraband/space_up{ + pixel_y = 32 + }, +/turf/open/floor/grass, +/area/edina/backstreet) +"aay" = ( +/obj/structure/flora/rock, +/obj/structure/window, +/obj/structure/sign/poster/contraband/pwr_game{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/floor/grass, +/area/edina/backstreet) +"aaz" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/toilet{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/storage/tools) +"aaA" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/structure/curtain{ + color = "#FF5555" + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aaB" = ( +/obj/structure/dresser{ + pixel_y = 12 + }, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_y = 30 + }, +/turf/open/floor/carpet/red, +/area/edina) +"aaC" = ( +/obj/structure/closet/cabinet{ + pixel_y = 15 + }, +/turf/open/floor/carpet/red, +/area/edina) +"aaD" = ( +/obj/structure/bed, +/obj/effect/spawner/lootdrop/bedsheet, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/decal/festive/green_stockings, +/turf/open/floor/carpet/red, +/area/edina) +"aaE" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"aaF" = ( +/obj/structure/window/reinforced, +/turf/open/floor/holofloor/ice, +/area/edina) +"aaG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aaH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aaI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aaJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aaK" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aaL" = ( +/turf/closed/festive/whitebrick, +/area/ai_monitored/turret_protected/ai_upload) +"aaM" = ( +/turf/closed/festive/whitebrick, +/area/command/bridge) +"aaN" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"aaO" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"aaP" = ( +/turf/open/floor/festive/alleyway, +/area/edina) +"aaQ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"aaR" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 9 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aaS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aaT" = ( +/obj/structure/table, +/obj/item/aiModule/core/full/asimov, +/obj/item/aiModule/core/freeformcore, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/aimodule_harmless, +/obj/effect/spawner/lootdrop/aimodule_neutral, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/aiModule/core/full/custom, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aaU" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aaV" = ( +/obj/structure/table, +/obj/item/aiModule/supplied/quarantine, +/obj/machinery/camera/motion, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aaW" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aaX" = ( +/obj/structure/table, +/obj/item/aiModule/reset, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aaY" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aaZ" = ( +/obj/machinery/computer/prisoner/management, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"aba" = ( +/turf/closed/festive/whitebrick, +/area/edina/street) +"abb" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/command/bridge) +"abc" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abd" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/command/bridge) +"abe" = ( +/obj/machinery/modular_computer/console/preset/command, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abf" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/command/bridge) +"abg" = ( +/obj/machinery/computer/med_data, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abh" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"abi" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abj" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abk" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/command/bridge) +"abp" = ( +/obj/machinery/computer/upload/ai{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"abq" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload) +"abr" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abs" = ( +/turf/open/floor/plasteel, +/area/command/bridge) +"abt" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/command/bridge) +"abu" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abv" = ( +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abw" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"abx" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aby" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"abz" = ( +/obj/machinery/light/floor, +/turf/open/floor/plasteel, +/area/command/bridge) +"abA" = ( +/turf/open/floor/carpet/green, +/area/command/bridge) +"abB" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abC" = ( +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abD" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"abE" = ( +/obj/machinery/computer/upload/borg{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"abF" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/command/bridge) +"abG" = ( +/obj/structure/table/glass, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/turf/open/floor/carpet/green, +/area/command/bridge) +"abH" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/command/bridge) +"abI" = ( +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/command/bridge) +"abJ" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abK" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWEMiddle, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"abL" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/computer/shuttle/labor, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abM" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/computer/communications, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abN" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/computer/card, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abO" = ( +/obj/structure/table/glass, +/obj/item/storage/secure/briefcase, +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/ids, +/turf/open/floor/carpet/green, +/area/command/bridge) +"abP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/command/bridge) +"abQ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/assembly/timer, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/turf/open/floor/plasteel, +/area/command/bridge) +"abR" = ( +/obj/structure/table, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/aiModule/supplied/oxygen, +/obj/item/aiModule/zeroth/oneHuman, +/obj/item/aiModule/reset/purge, +/obj/effect/spawner/lootdrop/aimodule_harmful, +/obj/item/aiModule/supplied/protectStation, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"abS" = ( +/obj/structure/table, +/obj/item/aiModule/supplied/freeform, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Foyer"; + dir = 1; + network = list("minisat") + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"abT" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"abU" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + name = "Keycard Authentication Device \[Bridge]"; + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abV" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abW" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/donut_box, +/obj/item/radio, +/turf/open/floor/carpet/green, +/area/command/bridge) +"abX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abY" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"abZ" = ( +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 5 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aca" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"acb" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"acc" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/floor/plasteel, +/area/command/bridge) +"acd" = ( +/obj/machinery/door/window{ + dir = 4; + name = "Command Console Access"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"ace" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"acf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"acg" = ( +/turf/closed/festive/whitebrick, +/area/edina) +"ach" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"aci" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"acj" = ( +/obj/machinery/door/poddoor/shutters{ + id = "parkcomm"; + name = "Command Parking" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street) +"ack" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street) +"acl" = ( +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/item/multitool, +/turf/open/floor/plasteel, +/area/command/bridge) +"acm" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"acn" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/command/bridge) +"aco" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/command/bridge) +"acp" = ( +/obj/machinery/computer/monitor{ + dir = 8; + name = "bridge power monitoring console" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"acq" = ( +/turf/closed/festive/whitebrick, +/area/command/meeting_room/council) +"acr" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/command/meeting_room/council) +"acs" = ( +/turf/closed/festive/whitebrick, +/area/command/heads_quarters/captain) +"act" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"acu" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"acv" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/table/wood, +/obj/item/hand_labeler, +/obj/item/assembly/timer, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"acw" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"acx" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/button/door{ + id = "heads_meeting"; + name = "Security Shutters"; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"acy" = ( +/obj/machinery/photocopier, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"acz" = ( +/turf/open/floor/wood, +/area/command/meeting_room/council) +"acA" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"acB" = ( +/obj/machinery/camera{ + c_tag = "Conference Room" + }, +/obj/structure/filingcabinet/security, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"acC" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"acD" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"acE" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"acF" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"acG" = ( +/obj/vehicle/sealed/vectorcraft/CAPT{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"acH" = ( +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"acI" = ( +/obj/machinery/door/poddoor/shutters{ + id = "capgarage"; + name = "Captain's Garage" + }, +/turf/open/floor/plasteel/dark, +/area/edina/street) +"acJ" = ( +/turf/open/floor/plasteel, +/area/edina) +"acK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"acL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"acM" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"acN" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"acO" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"acP" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 9 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"acQ" = ( +/turf/open/floor/festive/sidewalk, +/area/edina) +"acR" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"acS" = ( +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"acT" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"acU" = ( +/obj/machinery/button/door{ + id = "capgarage"; + name = "Captain's Garage"; + pixel_x = -28; + pixel_y = -7; + req_access_txt = "20" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"acV" = ( +/obj/machinery/door/poddoor/shutters{ + id = "capgarage"; + name = "Captain's Garage" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"acW" = ( +/obj/effect/festive/street/streetlineinnernw{ + pixel_x = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"acX" = ( +/obj/machinery/button/door{ + id = "parkcomm"; + name = "Command Parking"; + pixel_x = 28; + pixel_y = 7; + req_one_access_txt = "2;19" + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street) +"acY" = ( +/obj/machinery/light/floor, +/turf/open/floor/carpet/purple, +/area/command/meeting_room/council) +"acZ" = ( +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"ada" = ( +/obj/structure/chair/comfy{ + color = "#ff8000" + }, +/turf/open/floor/carpet/purple, +/area/command/meeting_room/council) +"adb" = ( +/obj/structure/chair/comfy/black, +/obj/structure/chair/comfy{ + color = "#d400ff" + }, +/turf/open/floor/carpet/purple, +/area/command/meeting_room/council) +"adc" = ( +/obj/structure/chair/comfy{ + color = "#0022e6" + }, +/turf/open/floor/carpet/purple, +/area/command/meeting_room/council) +"add" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ade" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/command/nuke_storage) +"adf" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"adg" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"adh" = ( +/obj/machinery/porta_turret/ai{ + dir = 4; + installation = /obj/item/gun/energy/e_gun + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"adi" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"adj" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"adk" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"adl" = ( +/turf/open/floor/wood, +/area/edina) +"adm" = ( +/obj/machinery/porta_turret/ai{ + dir = 4; + installation = /obj/item/gun/energy/e_gun + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"adn" = ( +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"adp" = ( +/obj/effect/festive/street/streetlinewest, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"adq" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Quarters"; + req_access_txt = "57" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"adr" = ( +/obj/effect/festive/street/streetlinenm, +/turf/open/floor/festive/cobblestone, +/area/edina/street) +"ads" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"adt" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/command/meeting_room/council) +"adu" = ( +/obj/structure/table/wood/fancy/black, +/turf/open/floor/carpet/purple, +/area/command/meeting_room/council) +"adv" = ( +/obj/structure/chair/brass{ + dir = 8; + name = "Top brass chair" + }, +/turf/open/floor/carpet/purple, +/area/command/meeting_room/council) +"adw" = ( +/turf/closed/wall/r_wall, +/area/edina) +"adx" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"ady" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"adz" = ( +/obj/machinery/vending/boozeomat/pubby_captain, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"adA" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"adB" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"adC" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"adD" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"adE" = ( +/obj/machinery/power/terminal, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"adF" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"adG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"adH" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"adI" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"adJ" = ( +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"adL" = ( +/obj/structure/closet/secure_closet/hop, +/obj/item/clothing/suit/hooded/wintercoat/hop, +/obj/item/clothing/neck/scarf/darkblue, +/obj/item/key/hop, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop/private) +"adM" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/hop/private) +"adN" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/command/heads_quarters/hop/private) +"adO" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/wood, +/area/edina) +"adP" = ( +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/command/heads_quarters/hop/private) +"adQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/hop, +/obj/effect/decal/festive/red_stockings, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/wood, +/area/command/heads_quarters/hop/private) +"adR" = ( +/obj/effect/festive/street/streetlinenm, +/obj/vehicle/sealed/vectorcraft/auto{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street) +"adS" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"adT" = ( +/obj/structure/chair/comfy{ + color = "#ffcc00"; + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/command/meeting_room/council) +"adU" = ( +/obj/structure/chair/comfy{ + color = "#38a2ff"; + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/command/meeting_room/council) +"adV" = ( +/obj/structure/chair/comfy{ + color = "#ff3838"; + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/command/meeting_room/council) +"adW" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Kill Room"; + dir = 4; + network = list("ss13","rd") + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"adX" = ( +/obj/structure/table/wood, +/obj/item/card/id/captains_spare, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"adY" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"adZ" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"aea" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"aeb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aec" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aed" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"aee" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aeg" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop/private) +"aeh" = ( +/obj/effect/festive/street/streetlinenm, +/obj/effect/festive/street/streetlinesm, +/turf/open/floor/festive/cobblestone, +/area/edina/street) +"aei" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/storage/photo_album, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"aej" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/storage/box/matches, +/obj/item/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"aek" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ael" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"aem" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aen" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = 28 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_y = -25 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aeo" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = 28 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_y = -25 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aep" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aeq" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aes" = ( +/obj/structure/bed/dogbed/ian, +/turf/open/floor/wood, +/area/command/heads_quarters/hop/private) +"aet" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/command/heads_quarters/hop/private) +"aeu" = ( +/obj/effect/festive/street/streetlineem, +/obj/vehicle/sealed/vectorcraft/hop{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street) +"aev" = ( +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street) +"aew" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"aex" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"aey" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"aez" = ( +/obj/structure/table/wood/fancy/black, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"aeA" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Captain's Desk Access"; + req_access_txt = "20" + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"aeB" = ( +/obj/structure/displaycase/captain, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"aeC" = ( +/turf/closed/festive/whitebrick, +/area/ai_monitored/command/nuke_storage) +"aeD" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aeE" = ( +/obj/effect/landmark/start/ai, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = -9 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = -9 + }, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = 32 + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 28; + pixel_y = 32 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -28; + pixel_y = 32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aeF" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aeG" = ( +/turf/closed/festive/whitebrick, +/area/command/heads_quarters/hop/private) +"aeH" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office"; + req_access_txt = "57" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"aeI" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + name = "privacy shutters" + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"aeJ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + name = "privacy shutters" + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"aeK" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + name = "privacy shutters" + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"aeL" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"aeM" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access_txt = "20" + }, +/obj/effect/decal/festive/mistletoe, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"aeN" = ( +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"aeO" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"aeP" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"aeQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Vault APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"aeR" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"aeS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aeT" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/turret_protected/ai"; + dir = 1; + name = "AI Chamber APC"; + pixel_x = -8; + pixel_y = 40 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aeU" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -24; + pixel_y = 40 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/festive/mistletoe, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aeV" = ( +/obj/machinery/turretid{ + name = "AI Chamber turret control"; + pixel_x = null; + pixel_y = 40 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aeW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aeX" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aeY" = ( +/turf/closed/festive/whitebrick, +/area/command/gateway) +"aeZ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop/private) +"afa" = ( +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"afb" = ( +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/mob/living/simple_animal/pet/dog/corgi/Ian, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"afc" = ( +/obj/machinery/disposal/bin, +/obj/machinery/computer/security/telescreen/vault{ + pixel_y = 30 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"afd" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 35 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"afe" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/pdapainter, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "57" + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 6; + pixel_y = 25; + req_access_txt = "57" + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 36 + }, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 6; + pixel_y = 36 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"aff" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"afg" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"afh" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"afi" = ( +/obj/item/banner/command, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"afj" = ( +/obj/structure/showcase/machinery/tv, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"afk" = ( +/obj/structure/showcase/machinery/implanter{ + layer = 2.7; + pixel_y = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"afl" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"afm" = ( +/obj/structure/showcase/perfect_employee, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"afn" = ( +/obj/structure/showcase/machinery/tv, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"afo" = ( +/obj/item/banner/command, +/obj/effect/decal/festive/christmas_ivy_string, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"afp" = ( +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"afq" = ( +/turf/closed/festive/whitebrick, +/area/command/heads_quarters/captain/private) +"afr" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/curtain, +/obj/item/soap/deluxe, +/obj/item/bikehorn/rubberducky, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"afs" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"aft" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"afu" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album{ + pixel_y = -10 + }, +/obj/item/camera, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"afv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"afw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"afx" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"afy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"afz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/ore_silo, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"afA" = ( +/obj/machinery/porta_turret/ai{ + dir = 4; + installation = /obj/item/gun/energy/e_gun + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"afB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/north) +"afC" = ( +/turf/closed/festive/whitebrick, +/area/ai_monitored/command/storage/eva) +"afD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"afE" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"afF" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"afG" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"afH" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"afI" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWEMiddle, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop/private) +"afJ" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"afK" = ( +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hop/private) +"afL" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"afM" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Reception Window" + }, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_y = 28 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"afN" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"afO" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"afP" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"afQ" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"afR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"afS" = ( +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"afT" = ( +/obj/structure/closet/crate/goldcrate, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"afU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"afV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"afW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"afX" = ( +/obj/structure/closet/crate/silvercrate, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"afY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"afZ" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"aga" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"agb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"agc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"agd" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light_switch{ + pixel_x = -8; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"age" = ( +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"agf" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"agg" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"agh" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"agi" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop/private) +"agj" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hop/private) +"agk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/computer/card{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"agl" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/festive/whitebrick/windowWERightEnd, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop/private) +"agm" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"agn" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"ago" = ( +/obj/structure/table/wood/fancy/green, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/clothing/head/HoS/beret/syndicate, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agp" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Showcase Access"; + req_access_txt = "20" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agq" = ( +/obj/structure/table/wood/fancy/red, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/clothing/accessory/armband/hydro, +/obj/item/banhammer, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agr" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"ags" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"agt" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"agu" = ( +/obj/structure/closet/secure_closet/freezer/money, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/clothing/head/bearpelt, +/obj/item/skub, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"agv" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"agw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"agx" = ( +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("vault") + }, +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"agy" = ( +/obj/structure/safe, +/obj/item/bikehorn/golden, +/obj/item/ammo_box/a357, +/obj/item/tank/internals/plasma/full, +/obj/item/disk/nuclear/fake, +/obj/item/stack/ore/diamond, +/obj/item/gun/energy/disabler, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"agz" = ( +/obj/structure/showcase/cyborg/old, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"agA" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"agB" = ( +/obj/structure/showcase/cyborg/old, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"agC" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"agD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"agE" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/multitool, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"agF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"agG" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"agH" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"agI" = ( +/obj/machinery/gateway, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"agJ" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"agK" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway"; + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"agL" = ( +/obj/machinery/vending/cart, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"agM" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop/private) +"agN" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"agO" = ( +/obj/machinery/light/floor, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"agP" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/clothing/mask/cigarette/cigar/havana, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = -3 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agQ" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/lighter, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agR" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agS" = ( +/obj/machinery/light/floor, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agT" = ( +/obj/structure/table/wood/fancy/green, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/under/syndicate/baseball, +/obj/item/clothing/head/beret/sec{ + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0); + desc = "A replica beret resembling that of a special operations officer under Nanotrasen."; + name = "replica officer's beret" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agU" = ( +/obj/structure/showcase/mecha/marauder, +/obj/machinery/light/floor, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agV" = ( +/obj/structure/table/wood/fancy/red, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/head/centhat{ + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0); + desc = "A replica hat of a Central Commander's attire. It has a small tag on it saying, 'It's good to be emperor.'"; + name = "Replica CentCom hat" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agW" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/folder/blue, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agX" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agY" = ( +/obj/structure/table/wood/fancy/green, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"agZ" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"aha" = ( +/obj/structure/closet/secure_closet/captains, +/obj/item/clothing/head/caphat/beret/white, +/obj/item/radio, +/obj/item/clothing/neck/scarf/darkblue, +/obj/item/key/CAPT, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ahb" = ( +/obj/machinery/camera{ + c_tag = "Prison Common Room"; + network = list("ss13","prison") + }, +/obj/effect/decal/festive/green_stockings, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ahc" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWEMiddle, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"ahd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/festive/whitebrick, +/area/ai_monitored/command/nuke_storage) +"ahe" = ( +/obj/structure/sign/warning/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/festive/whitebrick, +/area/ai_monitored/command/nuke_storage) +"ahf" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + req_access_txt = "53" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"ahg" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/festive/whitebrick, +/area/ai_monitored/command/nuke_storage) +"ahh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"ahi" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"ahj" = ( +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/storage/eva"; + dir = 8; + name = "E.V.A. Storage APC"; + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"ahk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ahl" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ahm" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Magboot Storage"; + pixel_x = -1; + req_access_txt = "19" + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"ahn" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"aho" = ( +/obj/machinery/door/window{ + name = "Gateway Chamber"; + req_access_txt = "62" + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"ahp" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/stamp/hop, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"ahq" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/computer/bounty{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"ahr" = ( +/obj/structure/table/wood/fancy/red, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"ahs" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/radio, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"aht" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"ahu" = ( +/obj/structure/table/wood/fancy/green, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/neck/cloak/festive, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"ahv" = ( +/obj/structure/window/reinforced, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"ahw" = ( +/obj/structure/table/wood/fancy/red, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/suit/armor/centcom, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"ahx" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ahy" = ( +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain/private) +"ahz" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"ahA" = ( +/turf/closed/festive/whitebrick, +/area/command/teleporter) +"ahB" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/command/nuke_storage) +"ahC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/command/nuke_storage) +"ahD" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"ahE" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"ahF" = ( +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"ahG" = ( +/obj/structure/closet/crate/rcd{ + pixel_y = 4 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "RCD Storage"; + pixel_x = 1; + req_access_txt = "19" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"ahH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ahI" = ( +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ahJ" = ( +/obj/machinery/camera/motion{ + c_tag = "E.V.A. Storage"; + dir = 8 + }, +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ahK" = ( +/obj/machinery/camera{ + c_tag = "Gateway"; + dir = 4 + }, +/obj/structure/table, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/command/gateway) +"ahL" = ( +/obj/structure/table, +/obj/item/paper/pamphlet/gateway, +/turf/open/floor/plasteel, +/area/command/gateway) +"ahM" = ( +/turf/open/floor/plasteel, +/area/command/gateway) +"ahN" = ( +/obj/structure/table, +/obj/item/radio/off{ + pixel_y = 6 + }, +/obj/item/radio/off{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/radio/off{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/radio/off, +/turf/open/floor/plasteel, +/area/command/gateway) +"ahO" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"ahP" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"ahQ" = ( +/obj/structure/table, +/obj/item/folder/blue, +/obj/item/stack/packageWrap{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/hand_labeler, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"ahR" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"ahS" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + name = "Keycard Authentication Device \[HoP]"; + pixel_x = 26 + }, +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"ahT" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"ahU" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"ahV" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ahW" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain/private) +"ahX" = ( +/obj/item/storage/secure/safe{ + pixel_x = 35; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ahY" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ahZ" = ( +/obj/structure/table, +/obj/item/hand_tele, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aia" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/structure/closet/crate, +/obj/item/crowbar, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aib" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aic" = ( +/obj/machinery/camera{ + c_tag = "Teleporter" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aid" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aie" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/command/nuke_storage) +"aif" = ( +/obj/machinery/door/airlock/command/glass{ + name = "AI Core"; + req_access_txt = "65" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aig" = ( +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"aih" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/command/nuke_storage) +"aii" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"aij" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Jetpack Storage"; + pixel_x = -1; + req_access_txt = "19" + }, +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide/eva{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/tank/jetpack/carbondioxide/eva, +/obj/item/tank/jetpack/carbondioxide/eva{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"aik" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"ail" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/command/gateway) +"aim" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"ain" = ( +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"aio" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"aip" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = -30 + }, +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop/private) +"aiq" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"air" = ( +/obj/machinery/light{ + light_color = "#e8eaff" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/command/corporate_showroom) +"ais" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ait" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/stamp/captain, +/obj/item/pen/fountain/captain, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"aiu" = ( +/obj/structure/table/wood, +/obj/item/hand_tele, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"aiv" = ( +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"aiw" = ( +/obj/machinery/power/apc{ + areastring = "/area/command/teleporter"; + dir = 8; + name = "Teleporter APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aix" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aiy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/command/teleporter) +"aiz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aiA" = ( +/obj/machinery/holopad, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aiB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/bluespace_beacon, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aiC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aiD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aiE" = ( +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aiF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/command/nuke_storage) +"aiG" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/hallway) +"aiH" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"aiI" = ( +/obj/effect/decal/festive/green_stockings, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"aiJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"aiK" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"aiL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"aiM" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"aiN" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"aiO" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop/private) +"aiP" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop/private) +"aiQ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop/private) +"aiR" = ( +/turf/closed/festive/whitebrick, +/area/command/corporate_showroom) +"aiS" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"aiT" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"aiU" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"aiV" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"aiW" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNS, +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"aiX" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"aiY" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"aiZ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"aja" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ajb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ajc" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ajd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"aje" = ( +/obj/machinery/shieldwallgen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ajf" = ( +/obj/machinery/shieldwallgen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ajg" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ajh" = ( +/obj/machinery/light/floor, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"aji" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/floor, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"ajj" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ajk" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ajl" = ( +/turf/closed/wall/r_wall, +/area/edina/street) +"ajm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ajn" = ( +/obj/machinery/button/door{ + id = "stationawaygate"; + name = "Gateway Access Shutter Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "31" + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"ajo" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/exile, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"ajp" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/open/floor/plating, +/area/command/teleporter) +"ajq" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"ajr" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"ajs" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"ajt" = ( +/obj/effect/festive/street/streetlinesouth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"aju" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"ajv" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 9 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"ajw" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"ajx" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/progcastaux) +"ajy" = ( +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/aisat/hallway"; + name = "MiniSat Chamber Hallway APC"; + pixel_x = null; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"ajz" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"ajA" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ajB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ajC" = ( +/obj/machinery/button/door{ + id = "capgarage"; + name = "Captain's Garage"; + pixel_x = -28; + pixel_y = -7; + req_access_txt = "20" + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 9 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"ajD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Gateway Access"; + req_access_txt = "62" + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"ajE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/command/gateway) +"ajF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/command/gateway) +"ajG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/command/nuke_storage) +"ajH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/closed/festive/whitebrick, +/area/ai_monitored/command/nuke_storage) +"ajI" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Service Bay"; + req_one_access_txt = "65" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"ajJ" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Chamber Hallway"; + req_one_access_txt = "65" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"ajK" = ( +/turf/closed/wall/r_wall, +/area/engineering) +"ajL" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 5 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"ajM" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"ajN" = ( +/obj/machinery/button/door{ + id = "parkcomm"; + name = "Command Parking"; + pixel_x = 28; + pixel_y = 7; + req_one_access_txt = "2;19" + }, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"ajO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/engineering) +"ajP" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/light/floor, +/turf/open/floor/engine, +/area/engineering) +"ajQ" = ( +/obj/machinery/power/port_gen/pacman, +/obj/item/stack/sheet/mineral/plasma{ + amount = 35 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"ajR" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"ajS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"ajT" = ( +/obj/item/clothing/head/welding, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"ajU" = ( +/turf/open/floor/engine, +/area/engineering) +"ajV" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"ajW" = ( +/obj/effect/festive/street/streetlineinnerne, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"ajX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engineering) +"ajY" = ( +/obj/machinery/power/grounding_rod, +/turf/open/floor/engine, +/area/engineering) +"ajZ" = ( +/obj/structure/closet/cabinet{ + pixel_y = 15 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"aka" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"akc" = ( +/turf/open/floor/festive/alleyway, +/area/edina/street) +"akd" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"ake" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"akf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"akg" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/secondary/command) +"akh" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering) +"aki" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"akj" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"akk" = ( +/obj/structure/rack, +/obj/item/multitool, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"akl" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/secondary/command) +"akm" = ( +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"akn" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/command/nuke_storage) +"ako" = ( +/mob/living/simple_animal/pet/dog/pug, +/turf/open/floor/grass, +/area/edina) +"akp" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/floor, +/turf/open/floor/engine, +/area/engineering) +"akq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engineering) +"akr" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engineering) +"aks" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/floor, +/turf/open/floor/engine, +/area/engineering) +"akt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Service Bay"; + dir = 8; + network = list("minisat"); + start_active = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"aku" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/engine, +/area/engineering) +"akv" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/engineering) +"akw" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/engine, +/area/engineering) +"akx" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engineering) +"aky" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"akz" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"akA" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"akB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/secondary/command) +"akC" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 9 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"akD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"akE" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"akF" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"akG" = ( +/obj/effect/festive/street/streetlineem, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"akH" = ( +/obj/effect/festive/street/streetlineem, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"akI" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"akJ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"akK" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"akL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/reflector/single/anchored{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering) +"akM" = ( +/obj/machinery/field/generator{ + anchored = 1 + }, +/turf/open/floor/engine, +/area/engineering) +"akN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/reflector/single/anchored{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engineering) +"akO" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"akP" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"akQ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"akR" = ( +/obj/machinery/manned_turret/ultimate{ + anchored = 1; + name = "Anti-Greyshit Cannon"; + projectile_type = /obj/item/projectile/beam/disabler/slug + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"akS" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"akT" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"akU" = ( +/obj/structure/streetdecor/lampfestive, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/secondary/command) +"akV" = ( +/turf/open/floor/plasteel/stairs/left, +/area/edina/street/secondary/command) +"akW" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"akX" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/edina/street/secondary/command) +"akY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"akZ" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"ala" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/floor, +/turf/open/floor/engine, +/area/engineering) +"alb" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/floor, +/turf/open/floor/engine, +/area/engineering) +"alc" = ( +/turf/open/floor/plasteel/stairs/right, +/area/edina/street/secondary/command) +"ald" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"ale" = ( +/obj/effect/festive/street/streetlineem, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"alf" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"alg" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"alh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"ali" = ( +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"alj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"alk" = ( +/obj/structure/reflector/single/anchored{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering) +"all" = ( +/obj/structure/reflector/single/anchored{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engineering) +"alm" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aln" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"alo" = ( +/turf/closed/wall/mineral/iron, +/area/maintenance/starboard/fore) +"alp" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"alq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"alr" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 26 + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"als" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/engineering) +"alt" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"alu" = ( +/obj/effect/festive/street/streetlineem, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"alv" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina) +"alw" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"alx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"aly" = ( +/turf/open/floor/plasteel, +/area/service/hydroponics) +"alz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"alA" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engineering) +"alB" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"alC" = ( +/obj/structure/chair/sofa/right, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/carpet/royalblack, +/area/ai_monitored/turret_protected/aisat_interior) +"alD" = ( +/obj/structure/chair/sofa, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/carpet/royalblack, +/area/ai_monitored/turret_protected/aisat_interior) +"alE" = ( +/obj/structure/chair/sofa/left, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/carpet/royalblack, +/area/ai_monitored/turret_protected/aisat_interior) +"alF" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/carpet/royalblack, +/area/ai_monitored/turret_protected/aisat_interior) +"alG" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat/hallway"; + name = "Chamber Hallway Turret Control"; + pixel_x = 32; + pixel_y = 32; + req_access = null; + req_access_txt = "65" + }, +/turf/open/floor/carpet/royalblack, +/area/ai_monitored/turret_protected/aisat_interior) +"alH" = ( +/turf/open/floor/carpet/royalblack, +/area/ai_monitored/turret_protected/aisat_interior) +"alI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"alJ" = ( +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/castle) +"alK" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 9 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"alL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/north) +"alM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"alN" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 5 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"alO" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"alP" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"alQ" = ( +/turf/open/floor/festive/stairs/stairsnorth, +/area/maintenance/starboard/fore) +"alR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/stairs/stairsnorth, +/area/maintenance/starboard/fore) +"alS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"alT" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street) +"alU" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 10 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"alV" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"alW" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/open/floor/engine, +/area/engineering) +"alX" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/royalblue, +/area/ai_monitored/turret_protected/aisat_interior) +"alY" = ( +/turf/open/floor/carpet/royalblue, +/area/ai_monitored/turret_protected/aisat_interior) +"alZ" = ( +/turf/closed/wall/mineral/iron, +/area/security) +"ama" = ( +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/carpet/royalblack, +/area/ai_monitored/turret_protected/aisat_interior) +"amb" = ( +/obj/structure/streetdecor/lampfestive, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"amc" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"amd" = ( +/turf/closed/wall/mineral/iron, +/area/security/processing) +"ame" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"amf" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"amg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/stairs/stairswest, +/area/maintenance/starboard/fore) +"amh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ami" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security/glass, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"aml" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amm" = ( +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amn" = ( +/obj/machinery/door/airlock/security/glass, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amo" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amp" = ( +/obj/effect/festive/street/sidewalkw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"amq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/festive/trainplatform/secorner, +/turf/open/floor/plating/dirt, +/area/edina) +"amr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ams" = ( +/obj/structure/festive/trainplatform/edge_west, +/turf/open/floor/plating/dirt, +/area/edina) +"amt" = ( +/turf/open/floor/festive/stairs/stairseast, +/area/maintenance/starboard/fore) +"amu" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"amv" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"amw" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"amx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"amy" = ( +/turf/closed/wall/mineral/iron, +/area/science/robotics/mechbay) +"amz" = ( +/turf/closed/wall/mineral/iron, +/area/security/office) +"amA" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/office) +"amB" = ( +/obj/machinery/manned_turret/ultimate{ + anchored = 1; + name = "Anti-Greyshit Cannon"; + projectile_type = /obj/item/projectile/beam/disabler/slug + }, +/turf/open/floor/wood, +/area/security/office) +"amC" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/light/floor, +/turf/open/floor/engine, +/area/engineering) +"amD" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engineering) +"amE" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/floor, +/turf/open/floor/engine, +/area/engineering) +"amF" = ( +/obj/structure/fence, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"amG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/engine, +/area/engineering) +"amH" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/floor, +/turf/open/floor/engine, +/area/engineering) +"amI" = ( +/obj/machinery/light/floor, +/turf/open/floor/carpet/royalblue, +/area/ai_monitored/turret_protected/aisat_interior) +"amJ" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Foyer"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/festive/alleyway, +/area/ai_monitored/turret_protected/aisat_interior) +"amK" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"amL" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table, +/obj/item/poster/random_official, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amM" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amN" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table, +/obj/item/poster/random_official, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amO" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/emcloset, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amP" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table, +/obj/item/poster/random_official, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amQ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amR" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amT" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amU" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/starboard/fore"; + dir = 1; + name = "Starboard Bow Maintenance APC"; + pixel_y = -24 + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amV" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amW" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/rack, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amX" = ( +/obj/machinery/space_heater, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amY" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/firecloset, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"amZ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/emcloset, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ana" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"anb" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/ce) +"anc" = ( +/obj/machinery/button/door{ + id = "ceprivacy"; + name = "Privacy Shutters Control"; + pixel_y = 26 + }, +/obj/machinery/holopad, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"and" = ( +/obj/structure/rack, +/obj/item/lighter, +/obj/item/clothing/glasses/meson{ + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/item/reagent_containers/pill/patch/silver_sulf, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"ane" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"anf" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/command/heads_quarters/ce"; + dir = 4; + name = "CE Office APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/item/key/CE, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"ang" = ( +/obj/machinery/door/airlock/external{ + name = "External Containment Access"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plasteel, +/area/engineering) +"anh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering) +"ani" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engineering) +"anj" = ( +/obj/structure/flora/grass/both, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"ank" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"anl" = ( +/turf/closed/wall/mineral/iron, +/area/security/prison) +"anm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"ann" = ( +/turf/closed/wall/mineral/iron, +/area/ai_monitored/security/armory) +"ano" = ( +/turf/closed/wall/mineral/iron, +/area/command/heads_quarters/hos) +"anp" = ( +/turf/closed/wall/mineral/iron, +/area/security/detectives_office) +"anq" = ( +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 10; + req_access_txt = "24" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -10; + req_access_txt = "10" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"anr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"ans" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/office) +"ant" = ( +/turf/open/floor/wood, +/area/security/office) +"anu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"anv" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"anw" = ( +/turf/open/floor/plasteel, +/area/engineering) +"anx" = ( +/obj/machinery/power/emitter/anchored{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/circuit/red, +/area/engineering) +"any" = ( +/obj/machinery/the_singularitygen/tesla, +/obj/machinery/light/floor, +/turf/open/floor/plasteel, +/area/engineering) +"anz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engineering) +"anA" = ( +/obj/machinery/light/floor, +/turf/open/floor/plasteel, +/area/engineering) +"anB" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"anC" = ( +/obj/structure/flora/grass/brown, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"anD" = ( +/turf/open/floor/wood, +/area/security/prison) +"anE" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/prison) +"anF" = ( +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/security/prison) +"anG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"anH" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/wood, +/area/security/prison) +"anI" = ( +/obj/machinery/cryopod, +/turf/open/floor/wood, +/area/security/prison) +"anJ" = ( +/obj/item/canvas/nineteenXnineteen, +/obj/structure/easel, +/turf/open/floor/wood, +/area/security/prison) +"anK" = ( +/obj/machinery/vr_sleeper, +/turf/open/floor/wood, +/area/security/prison) +"anL" = ( +/obj/machinery/button/door{ + id = "permabolt3"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/bed, +/obj/machinery/flasher{ + id = "PCell 3"; + pixel_x = -28 + }, +/obj/item/toy/plush/catgirl/fermis, +/turf/open/floor/wood, +/area/security/prison) +"anM" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = 24; + prison_radio = 1 + }, +/turf/open/floor/wood, +/area/security/prison) +"anN" = ( +/obj/item/paper, +/obj/structure/table/wood, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Prison Cell 3"; + network = list("ss13","prison") + }, +/turf/open/floor/wood, +/area/security/prison) +"anO" = ( +/obj/machinery/button/door{ + id = "permacell3"; + name = "Cell 3 Lockdown"; + pixel_x = -30; + req_access_txt = "2" + }, +/obj/machinery/button/flasher{ + id = "PCell 3"; + pixel_x = -20 + }, +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/wood, +/area/security/prison) +"anP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/wood, +/area/security/prison) +"anQ" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/open/floor/wood, +/area/security/prison) +"anR" = ( +/obj/structure/rack, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/security/prison) +"anS" = ( +/obj/structure/table, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/item/key/security, +/obj/structure/sign/poster/official/ion_rifle{ + pixel_x = -32 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"anT" = ( +/obj/structure/table, +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"anU" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"anV" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"anW" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"anX" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/advtaser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun/advtaser, +/obj/item/gun/energy/e_gun/advtaser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"anY" = ( +/obj/structure/closet/secure_closet/lethalshots, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"anZ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/contraband/armory, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"aoa" = ( +/obj/machinery/flasher/portable, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"aob" = ( +/obj/machinery/flasher/portable, +/obj/structure/sign/poster/official/enlist{ + pixel_y = 32 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"aoc" = ( +/obj/structure/dresser, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"aod" = ( +/obj/structure/sign/poster/contraband/donut_corp{ + pixel_y = -32 + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"aoe" = ( +/turf/closed/wall/mineral/iron, +/area/service/bar/atrium) +"aof" = ( +/obj/structure/table/wood, +/obj/machinery/light_switch{ + pixel_x = 23 + }, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"aog" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aoh" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/rack, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aoi" = ( +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aoj" = ( +/obj/machinery/computer/med_data, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aok" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/camera, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aol" = ( +/turf/open/floor/carpet, +/area/security/detectives_office) +"aom" = ( +/obj/machinery/computer/apc_control{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"aon" = ( +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"aoo" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"aop" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/paper/monitorkey, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"aoq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"aor" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"aos" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engineering) +"aot" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering) +"aou" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/engineering) +"aov" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engineering) +"aow" = ( +/turf/open/floor/plating, +/area/engineering) +"aox" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engineering) +"aoy" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engineering) +"aoz" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering) +"aoA" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engineering) +"aoB" = ( +/obj/machinery/light/small, +/turf/open/floor/carpet/royalblack, +/area/ai_monitored/turret_protected/aisat_interior) +"aoC" = ( +/obj/structure/flora/grass/green, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aoD" = ( +/turf/open/floor/festive/alleyway, +/area/science/research) +"aoE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"aoF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"aoG" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet) +"aoH" = ( +/obj/structure/holohoop{ + layer = 3.9 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"aoI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/holofloor, +/area/security/prison) +"aoJ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"aoK" = ( +/obj/item/storage/crayons, +/turf/open/floor/wood, +/area/security/prison) +"aoL" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security E.V.A. Storage"; + req_access_txt = "3" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/security/office) +"aoM" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt3"; + name = "Cell 3" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "permacell3"; + name = "cell blast door" + }, +/turf/open/floor/wood, +/area/security/prison) +"aoN" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/security/prison) +"aoO" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 3"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/wood, +/area/security/prison) +"aoP" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Evidence Storage"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/security/prison) +"aoQ" = ( +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aoR" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/item/radio/intercom{ + pixel_x = 26 + }, +/turf/open/floor/wood, +/area/security/prison) +"aoS" = ( +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/structure/table, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"aoT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/wood, +/area/ai_monitored/security/armory) +"aoU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ai_monitored/security/armory) +"aoV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/wood, +/area/ai_monitored/security/armory) +"aoW" = ( +/turf/closed/wall/r_wall, +/area/science/research) +"aoX" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research) +"aoY" = ( +/obj/item/radio/intercom{ + pixel_x = 26 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"aoZ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"apa" = ( +/turf/open/floor/wood, +/area/commons/dorms) +"apb" = ( +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"apc" = ( +/obj/item/storage/secure/safe/HoS{ + pixel_x = 32 + }, +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = -26 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"apd" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/storage/briefcase, +/turf/open/floor/carpet, +/area/security/detectives_office) +"ape" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/security/detectives_office) +"apf" = ( +/obj/item/radio/intercom{ + pixel_x = 26 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"apg" = ( +/obj/machinery/computer/card/minor/ce{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_x = -32 + }, +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"aph" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"api" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/stamp/ce, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"apj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"apk" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"apl" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"apm" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"apn" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"apo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"app" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"apq" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/prison) +"apr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"aps" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"apt" = ( +/turf/open/floor/holofloor, +/area/security/prison) +"apu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/holofloor, +/area/security/prison) +"apv" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"apw" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/prison) +"apx" = ( +/obj/item/radio/intercom{ + pixel_x = 26 + }, +/turf/open/floor/wood, +/area/security/prison) +"apy" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/wood, +/area/security/prison) +"apz" = ( +/obj/vehicle/ridden/secway, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"apA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/wood, +/area/ai_monitored/security/armory) +"apB" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/wood, +/area/ai_monitored/security/armory) +"apC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/start/warden, +/turf/open/floor/wood, +/area/ai_monitored/security/armory) +"apD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/ai_monitored/security/armory) +"apE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/wood, +/area/ai_monitored/security/armory) +"apF" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"apG" = ( +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/wood, +/area/security/office) +"apH" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/wood, +/area/security/office) +"apI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"apJ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"apK" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/obj/effect/decal/festive/mistletoe, +/turf/open/floor/festive/wooden/wooden1, +/area/command/heads_quarters/hos) +"apL" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"apM" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = 3 + }, +/obj/item/lighter, +/turf/open/floor/carpet, +/area/security/detectives_office) +"apN" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/detective, +/turf/open/floor/carpet, +/area/security/detectives_office) +"apO" = ( +/obj/structure/table/wood, +/obj/item/camera/detective, +/turf/open/floor/carpet, +/area/security/detectives_office) +"apP" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"apQ" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/ce{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"apR" = ( +/obj/machinery/keycard_auth{ + pixel_y = -28 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"apS" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"apT" = ( +/obj/structure/table/reinforced, +/obj/item/cartridge/engineering{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/cartridge/engineering{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/cartridge/engineering{ + pixel_x = 3 + }, +/obj/item/cartridge/atmos, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"apU" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"apV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engineering) +"apW" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engineering) +"apX" = ( +/obj/machinery/announcement_system, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"apY" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"apZ" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/multitool, +/obj/item/radio/off, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"aqa" = ( +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"aqb" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"aqc" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/blue, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"aqd" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"aqe" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"aqf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"aqg" = ( +/turf/open/floor/holofloor/ice, +/area/edina) +"aqh" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"aqi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"aqj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/prison) +"aqk" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"aql" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/security/prison) +"aqm" = ( +/obj/machinery/button/door{ + id = "permabolt2"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/bed, +/obj/machinery/flasher{ + id = "PCell 2"; + pixel_x = -28 + }, +/obj/item/toy/plush/catgirl/fermis, +/turf/open/floor/wood, +/area/security/prison) +"aqn" = ( +/obj/item/paper, +/obj/structure/table/wood, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Prison Cell 2"; + network = list("ss13","prison") + }, +/turf/open/floor/wood, +/area/security/prison) +"aqo" = ( +/obj/machinery/button/door{ + id = "permacell2"; + name = "Cell 2 Lockdown"; + pixel_x = -30; + req_access_txt = "2" + }, +/obj/machinery/button/flasher{ + id = "PCell 2"; + pixel_x = -20 + }, +/turf/open/floor/wood, +/area/security/prison) +"aqp" = ( +/turf/open/floor/wood, +/area/service/bar/atrium) +"aqq" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/prison"; + dir = 4; + name = "Prison Wing APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/wood, +/area/security/prison) +"aqr" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/wood, +/area/security/prison) +"aqs" = ( +/obj/structure/rack, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"aqt" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"aqu" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -32 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"aqv" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Shutters"; + pixel_y = -26; + req_access_txt = "3" + }, +/obj/machinery/light, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"aqw" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"aqx" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/armor/laserproof, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"aqy" = ( +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aqz" = ( +/obj/structure/rack, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"aqA" = ( +/obj/machinery/suit_storage_unit/hos, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"aqB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"aqC" = ( +/obj/structure/closet/secure_closet/hos, +/obj/item/key/hos, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/neck/scarf/red, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"aqD" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/security/office) +"aqE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/security/office) +"aqF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/wood, +/area/security/office) +"aqG" = ( +/obj/structure/filingcabinet, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqH" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqI" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqJ" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqK" = ( +/obj/machinery/light/floor, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aqL" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqM" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"aqN" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"aqO" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"aqP" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"aqQ" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"aqR" = ( +/obj/machinery/light/floor, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"aqS" = ( +/obj/machinery/computer/telecomms/server{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/computer) +"aqT" = ( +/obj/effect/festive/street/sidewalkwem, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aqU" = ( +/obj/structure/table, +/obj/item/instrument/harmonica, +/turf/open/floor/wood, +/area/security/prison) +"aqV" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt2"; + name = "Cell 2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "permacell2"; + name = "cell blast door" + }, +/turf/open/floor/wood, +/area/security/prison) +"aqW" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 2"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/wood, +/area/security/prison) +"aqX" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/prison) +"aqY" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/security/prison) +"aqZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/wood, +/area/ai_monitored/security/armory) +"ara" = ( +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Armory"; + req_access_txt = "3" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"arb" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"arc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + dir = 2; + name = "armoury desk"; + req_access_txt = "1" + }, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "armoury desk"; + req_access_txt = "3" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/security/armory) +"ard" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"are" = ( +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"arf" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering) +"arg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering) +"arh" = ( +/obj/machinery/power/apc/highcap/fifteen_k{ + areastring = "/area/engineering"; + dir = 1; + name = "Engineering APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/engineering) +"ari" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engineering) +"arj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering) +"ark" = ( +/obj/machinery/quantumpad{ + map_pad_id = "EngieL2"; + map_pad_link_id = "AME" + }, +/turf/open/floor/plasteel, +/area/engineering) +"arl" = ( +/obj/machinery/vending/engineering, +/turf/open/floor/plasteel, +/area/engineering) +"arm" = ( +/obj/structure/particle_accelerator/end_cap, +/obj/structure/particle_accelerator/fuel_chamber, +/obj/structure/particle_accelerator/particle_emitter/center, +/obj/structure/particle_accelerator/particle_emitter/left, +/obj/structure/particle_accelerator/particle_emitter/right, +/obj/structure/particle_accelerator/power_box, +/obj/machinery/particle_accelerator/control_box, +/obj/structure/closet/crate/engineering{ + name = "Particle Accelerator Crate" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/floor, +/turf/open/floor/plasteel, +/area/engineering) +"arn" = ( +/obj/item/stack/cable_coil/red, +/obj/item/wrench, +/obj/item/weldingtool/largetank, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/power/apc/highcap/fifteen_k{ + areastring = "/area/engineering"; + dir = 1; + name = "Engineering APC"; + pixel_x = 30 + }, +/obj/structure/cable, +/obj/machinery/light/floor, +/turf/open/floor/plasteel, +/area/engineering) +"aro" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/tcommsat/server) +"arp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/tcommsat/server) +"arq" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"arr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/tcommsat/server) +"ars" = ( +/obj/vehicle/ridden/secway, +/obj/item/key/security, +/turf/open/floor/wood, +/area/security/office) +"art" = ( +/obj/item/radio/intercom{ + pixel_x = 26 + }, +/turf/open/floor/wood, +/area/security/office) +"aru" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/tcommsat/server) +"arv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/tcommsat/server) +"arw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 8; + name = "8maintenance loot spawner" + }, +/obj/structure/table, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"arx" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/wood, +/area/security/prison) +"ary" = ( +/obj/item/toy/cards/deck, +/obj/structure/table, +/turf/open/floor/wood, +/area/security/prison) +"arz" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/structure/table, +/turf/open/floor/wood, +/area/security/prison) +"arA" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/prison) +"arB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/prison) +"arC" = ( +/turf/closed/wall/mineral/iron, +/area/security/warden) +"arD" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/warden) +"arE" = ( +/turf/open/floor/wood, +/area/security/warden) +"arF" = ( +/obj/item/bedsheet/hos, +/obj/structure/bed, +/obj/effect/landmark/start/head_of_security, +/obj/item/storage/fancy/donut_box, +/obj/structure/sign/poster/official/nt_storm_officer{ + pixel_y = 32 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"arG" = ( +/obj/machinery/computer/security, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/security/warden) +"arH" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/wood, +/area/security/warden) +"arI" = ( +/obj/structure/table, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/wood, +/area/security/warden) +"arJ" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"arK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"arL" = ( +/obj/machinery/iv_drip, +/obj/item/reagent_containers/blood, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"arM" = ( +/obj/machinery/computer/security/hos{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"arN" = ( +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"arO" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio/off{ + pixel_y = 3 + }, +/obj/item/taperecorder{ + pixel_x = -4 + }, +/obj/item/cartridge/detective, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"arP" = ( +/obj/machinery/photocopier, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"arQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/wood, +/area/security/office) +"arR" = ( +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/structure/rack, +/turf/open/floor/wood, +/area/security/office) +"arS" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering) +"arT" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/light/floor, +/turf/open/floor/plasteel, +/area/engineering) +"arU" = ( +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Engineering"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/engineering) +"arV" = ( +/obj/machinery/light/floor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engineering) +"arW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/engineering) +"arX" = ( +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"arY" = ( +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"arZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"asa" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/holofloor, +/area/security/prison) +"asb" = ( +/obj/item/toy/beach_ball/holoball, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/holofloor, +/area/security/prison) +"asc" = ( +/obj/structure/table, +/obj/machinery/light/floor, +/turf/open/floor/wood, +/area/security/prison) +"asd" = ( +/obj/structure/table, +/turf/open/floor/wood, +/area/security/prison) +"ase" = ( +/obj/machinery/button/door{ + id = "permabolt1"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/bed, +/obj/machinery/flasher{ + id = "PCell 1"; + pixel_x = -28 + }, +/obj/item/toy/plush/catgirl/fermis, +/turf/open/floor/wood, +/area/security/prison) +"asf" = ( +/obj/item/paper, +/obj/structure/table/wood, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Prison Cell 1"; + network = list("ss13","prison") + }, +/turf/open/floor/wood, +/area/security/prison) +"asg" = ( +/obj/machinery/button/door{ + id = "permacell1"; + name = "Cell 1 Lockdown"; + pixel_x = -30; + req_access_txt = "2" + }, +/obj/machinery/button/flasher{ + id = "PCell 1"; + pixel_x = -20 + }, +/turf/open/floor/wood, +/area/security/prison) +"ash" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/wood, +/area/security/warden) +"asi" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/wood, +/area/security/warden) +"asj" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = 26 + }, +/turf/open/floor/wood, +/area/security/warden) +"ask" = ( +/obj/item/storage/box/bodybags, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/reagent_containers/syringe{ + name = "steel point" + }, +/obj/item/reagent_containers/glass/bottle/charcoal, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"asl" = ( +/turf/open/floor/plasteel/white, +/area/security/brig) +"asm" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"asn" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"aso" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"asp" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"asq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"asr" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"ass" = ( +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"ast" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/security/office) +"asu" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering) +"asv" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/engineering) +"asw" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering) +"asx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/vending/wardrobe/engi_wardrobe, +/turf/open/floor/plasteel, +/area/engineering) +"asy" = ( +/obj/structure/window/reinforced, +/obj/machinery/vending/tool, +/turf/open/floor/plasteel, +/area/engineering) +"asz" = ( +/obj/structure/window/reinforced, +/obj/machinery/vending/engivend, +/turf/open/floor/plasteel, +/area/engineering) +"asA" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/engineering) +"asB" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering) +"asC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engineering) +"asD" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering) +"asE" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"asF" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"asG" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"asH" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"asI" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"asJ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security E.V.A. Storage"; + req_access_txt = "3" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/office) +"asK" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"asL" = ( +/obj/structure/fence, +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16; + pixel_y = 10 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"asM" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"asN" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/holofloor, +/area/security/prison) +"asO" = ( +/obj/structure/table, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/wood, +/area/security/prison) +"asP" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt1"; + name = "Cell 1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "permacell1"; + name = "cell blast door" + }, +/turf/open/floor/wood, +/area/security/prison) +"asQ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 1"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/wood, +/area/security/prison) +"asR" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/security/warden) +"asS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/security/warden) +"asT" = ( +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/security/warden) +"asU" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/security/warden"; + dir = 8; + name = "Brig Control APC"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/wood, +/area/security/warden) +"asV" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Infirmary"; + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"asW" = ( +/obj/machinery/computer/card/minor/hos{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"asX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/mob/living/simple_animal/hostile/retaliate/bat{ + desc = "A fierce companion for any person of power, this spider has been carefully trained by Nanotrasen specialists. Its beady, staring eyes send shivers down your spine."; + emote_hear = list("chitters"); + faction = list("spiders"); + harm_intent_damage = 3; + health = 200; + icon_dead = "guard_dead"; + icon_gib = "guard_dead"; + icon_living = "guard"; + icon_state = "guard"; + maxHealth = 250; + max_co2 = 5; + max_tox = 2; + melee_damage_lower = 15; + melee_damage_upper = 20; + min_oxy = 5; + movement_type = 1; + name = "Sergeant Araneus"; + real_name = "Sergeant Araneus"; + turns_per_move = 10 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"asY" = ( +/obj/machinery/computer/security/labor{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = 26 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"asZ" = ( +/obj/structure/table/reinforced, +/obj/item/lighter, +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/security/office) +"ata" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/security/office) +"atb" = ( +/obj/structure/chair/office/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/office) +"atc" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"atd" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"ate" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"atf" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/miner/oxygen, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"atg" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ath" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/rnd/production/protolathe/department/engineering, +/turf/open/floor/plasteel, +/area/engineering) +"ati" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering) +"atj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering) +"atk" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/plasteel, +/area/engineering) +"atl" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/pipe_dispenser, +/obj/item/clothing/glasses/meson/engine, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/engineering) +"atm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/floor, +/turf/open/floor/plasteel, +/area/engineering) +"atn" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"ato" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"atp" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"atq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"atr" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"ats" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"att" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"atu" = ( +/obj/structure/fence, +/obj/structure/fence, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"atv" = ( +/obj/structure/ice_stasis, +/turf/open/floor/holofloor/ice, +/area/edina) +"atw" = ( +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/structure/rack, +/turf/open/floor/wood, +/area/security/office) +"atx" = ( +/obj/effect/landmark/start/security_officer, +/turf/open/floor/wood, +/area/security/office) +"aty" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/wood, +/area/security/office) +"atz" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"atA" = ( +/obj/structure/grille, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"atB" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"atC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"atD" = ( +/obj/machinery/washing_machine, +/turf/open/floor/wood, +/area/security/prison) +"atE" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -30 + }, +/turf/open/floor/wood, +/area/security/warden) +"atF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/warden) +"atG" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/security/warden) +"atH" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/festive/street/streetlineem, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"atI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"atJ" = ( +/obj/item/storage/toolbox/drone, +/obj/structure/table, +/turf/open/floor/wood, +/area/security/warden) +"atK" = ( +/obj/structure/table, +/obj/item/toy/figure/warden, +/turf/open/floor/wood, +/area/security/warden) +"atL" = ( +/obj/effect/landmark/start/warden, +/obj/structure/chair/office/dark, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + pixel_x = -27; + pixel_y = 8; + req_access_txt = "2" + }, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Cell Shutters"; + pixel_x = -27; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/security/warden) +"atM" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/warden) +"atN" = ( +/obj/structure/closet/secure_closet/warden, +/turf/open/floor/wood, +/area/security/warden) +"atO" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/white, +/area/security/brig) +"atP" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"atQ" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"atR" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"atS" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"atT" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"atU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"atV" = ( +/obj/structure/table/wood, +/obj/item/stamp/hos, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/recharger{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"atW" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"atX" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/wood, +/area/security/office) +"atY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/security/office) +"atZ" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/office) +"aua" = ( +/obj/machinery/rnd/production/techfab/department/security, +/turf/open/floor/wood, +/area/security/office) +"aub" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"auc" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"aud" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"aue" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/item/radio/intercom{ + pixel_x = 26 + }, +/turf/open/floor/wood, +/area/security/office) +"auf" = ( +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"aug" = ( +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"auh" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"aui" = ( +/obj/machinery/computer/rdconsole/production{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering) +"auj" = ( +/obj/effect/landmark/start/station_engineer, +/obj/machinery/light/floor, +/turf/open/floor/plasteel, +/area/engineering) +"auk" = ( +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Engineering"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/engineering) +"aul" = ( +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/pipe_dispenser, +/obj/item/clothing/glasses/meson/engine, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/engineering) +"aum" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engineering) +"aun" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"auo" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"aup" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"auq" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/tcommsat/server"; + dir = 4; + name = "Telecomms Server APC"; + pixel_x = 25 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"aur" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"aus" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"aut" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"auu" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/holofloor, +/area/security/prison) +"auv" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/security/prison) +"auw" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"aux" = ( +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"auy" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"auz" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 30 + }, +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"auA" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/security/prison) +"auB" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/prison) +"auC" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/security/warden) +"auD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/security/warden) +"auE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/wood, +/area/security/warden) +"auF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"auG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/decal/festive/holly, +/turf/open/floor/wood, +/area/security/warden) +"auH" = ( +/obj/machinery/door/window/southleft{ + name = "Reception Desk"; + req_access_txt = "63" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Armory Desk"; + req_access_txt = "3" + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/security/warden) +"auI" = ( +/turf/closed/wall/mineral/iron, +/area/security/brig) +"auJ" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/security/brig) +"auK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"auL" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"auM" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/office) +"auN" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"auO" = ( +/obj/structure/grille, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"auP" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"auQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/office) +"auR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/security/office) +"auS" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"auT" = ( +/obj/structure/window/reinforced, +/obj/machinery/rnd/production/circuit_imprinter, +/turf/open/floor/plasteel, +/area/engineering) +"auU" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/engineering) +"auV" = ( +/obj/structure/window/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/pipe_dispenser, +/obj/item/clothing/glasses/meson/engine, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/engineering) +"auW" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/engineering) +"auX" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/engineering) +"auY" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/closed/wall/r_wall, +/area/engineering) +"auZ" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"ava" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"avb" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"avc" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"avd" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"ave" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"avf" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"avg" = ( +/obj/structure/table, +/obj/structure/bedsheetbin/towel, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/prison) +"avh" = ( +/obj/machinery/light/small, +/obj/item/bikehorn/rubberducky, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"avi" = ( +/turf/open/floor/wood, +/area/security/brig) +"avj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/brig) +"avk" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/security/brig) +"avl" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/wood, +/area/security/brig) +"avm" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/wood, +/area/security/brig) +"avn" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/wood, +/area/security/brig) +"avo" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/auto_name/north, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/wood, +/area/security/brig) +"avp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/wood, +/area/security/brig) +"avq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/wood, +/area/security/brig) +"avr" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/security/brig) +"avs" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/wood, +/area/security/brig) +"avt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/processing) +"avu" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/progcastaux) +"avv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/computer/shuttle/labor, +/turf/open/floor/wood, +/area/security/processing) +"avw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/computer/security/labor, +/turf/open/floor/wood, +/area/security/processing) +"avx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/computer/secure_data, +/turf/open/floor/wood, +/area/security/processing) +"avy" = ( +/obj/machinery/recharger, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/security/processing) +"avz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1, +/obj/machinery/atmospherics/components/unary/portables_connector/layer3{ + dir = 1; + pixel_x = 10 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"avA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"avB" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering) +"avC" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering) +"avD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/engineering) +"avE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/engineering) +"avF" = ( +/obj/structure/closet, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel, +/area/engineering) +"avG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering) +"avH" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"avI" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"avJ" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"avK" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"avL" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"avM" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"avN" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"avO" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"avP" = ( +/obj/structure/streetdecor/bigtree{ + pixel_x = -16 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"avQ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"avR" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/holofloor, +/area/security/prison) +"avS" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"avT" = ( +/obj/structure/holohoop{ + dir = 1; + layer = 4.1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/holofloor, +/area/security/prison) +"avU" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/holofloor, +/area/security/prison) +"avV" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/office) +"avW" = ( +/obj/machinery/disposal/bin, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/office) +"avX" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/security/office) +"avY" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/holofloor, +/area/security/prison) +"avZ" = ( +/obj/item/cultivator, +/turf/open/floor/wood, +/area/security/prison) +"awa" = ( +/obj/item/shovel/spade, +/turf/open/floor/wood, +/area/security/prison) +"awb" = ( +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/wood, +/area/security/prison) +"awc" = ( +/obj/item/plant_analyzer, +/turf/open/floor/wood, +/area/security/prison) +"awd" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"awe" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"awf" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/security/brig) +"awg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/brig) +"awh" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/brig) +"awi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/security/brig) +"awj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/security/brig) +"awk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/brig) +"awl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/brig) +"awm" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/brig) +"awn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/brig) +"awo" = ( +/obj/structure/fence, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research) +"awp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/brig) +"awq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 8 + }, +/turf/open/floor/wood, +/area/security/brig) +"awr" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/brig) +"aws" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research{ + name = "Science Street" + }) +"awt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 7 + }, +/turf/open/floor/wood, +/area/security/brig) +"awu" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Transferring Control"; + req_access_txt = "63" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/processing) +"awv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/processing) +"aww" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/processing) +"awx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/processing) +"awy" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/security/processing) +"awz" = ( +/turf/open/floor/wood, +/area/security/processing) +"awA" = ( +/obj/machinery/door/airlock/external{ + name = "Gulag Shuttle Airlock" + }, +/turf/open/floor/wood, +/area/security/processing) +"awB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1, +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"awC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"awD" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"awE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"awF" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1, +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"awG" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"awH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"awI" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering) +"awJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/engineering) +"awK" = ( +/obj/machinery/ntnet_relay, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"awL" = ( +/obj/machinery/camera{ + c_tag = "Telecomms Server Room"; + dir = 1; + network = list("tcomms") + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"awM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/holofloor/ice, +/area/edina) +"awN" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/security/prison) +"awO" = ( +/obj/machinery/biogenerator, +/turf/open/floor/wood, +/area/security/prison) +"awP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/office) +"awQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/security/office) +"awR" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/wood, +/area/security/prison) +"awS" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/glowshroom, +/turf/open/floor/wood, +/area/security/prison) +"awT" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/grass, +/turf/open/floor/wood, +/area/security/prison) +"awU" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/corn, +/turf/open/floor/wood, +/area/security/prison) +"awV" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/poppy, +/turf/open/floor/wood, +/area/security/prison) +"awW" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"awX" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"awY" = ( +/obj/effect/festive/street/streetlineem, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"awZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/security/brig) +"axa" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/security/brig) +"axb" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/security/brig) +"axc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/wood, +/area/security/brig) +"axd" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/security/brig) +"axe" = ( +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/security/brig) +"axf" = ( +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/security/brig) +"axg" = ( +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/security/brig) +"axh" = ( +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Cell 4"; + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/security/brig) +"axi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/brig) +"axj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/processing) +"axk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/processing) +"axl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/security/processing) +"axm" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"axn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"axo" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix{ + dir = 8; + node1_concentration = 0.21; + node2_concentration = 0.79; + piping_layer = 1; + pixel_x = -5; + pixel_y = -5 + }, +/obj/machinery/atmospherics/pipe/simple/yellow{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"axp" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"axq" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"axr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"axs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"axt" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel, +/area/engineering) +"axu" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering) +"axv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/engineering) +"axw" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engineering) +"axx" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel, +/area/engineering) +"axy" = ( +/obj/effect/festive/street/streetlineem, +/turf/open/floor/plasteel, +/area/engineering) +"axz" = ( +/obj/effect/festive/street/streetlineem, +/obj/vehicle/sealed/vectorcraft/truck, +/turf/open/floor/plasteel, +/area/engineering) +"axA" = ( +/obj/vehicle/sealed/vectorcraft/CE, +/obj/effect/festive/street/streetlineem, +/turf/open/floor/plasteel, +/area/engineering) +"axB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/prison) +"axC" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/security/brig) +"axD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/brig) +"axE" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 1"; + name = "Cell 1" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/brig) +"axF" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 2"; + name = "Cell 2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/brig) +"axG" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/brig) +"axH" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 4"; + name = "Cell 4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/security/brig) +"axI" = ( +/turf/closed/wall/mineral/iron, +/area/service/lawoffice) +"axJ" = ( +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/wood, +/area/service/lawoffice) +"axK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "lawyer_blast"; + name = "privacy door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/service/lawoffice) +"axL" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/processing"; + dir = 8; + name = "Labor Shuttle Dock APC"; + pixel_x = -24 + }, +/obj/structure/cable/yellow, +/turf/open/floor/wood, +/area/security/processing) +"axM" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/security/processing) +"axN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"axO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"axP" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"axQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/engineering) +"axR" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/engineering) +"axS" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering) +"axT" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering) +"axU" = ( +/obj/machinery/light/floor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engineering) +"axV" = ( +/obj/machinery/door/airlock/engineering, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering) +"axW" = ( +/obj/machinery/light/floor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering) +"axX" = ( +/obj/machinery/button/door{ + id = "enggarage"; + name = "Engineering Garage Door"; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering) +"axY" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/closed/wall/r_wall, +/area/engineering) +"axZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/stairs/stairssouth, +/area/maintenance/starboard/fore) +"aya" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/rack, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/wardrobe/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/cardboard, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"aye" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayh" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 8; + name = "8maintenance loot spawner" + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayi" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/wardrobe/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayj" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayk" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayl" = ( +/turf/open/floor/festive/alleyway, +/area/security/brig) +"aym" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/security/brig) +"ayn" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ayo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ayp" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ayq" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ayr" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ays" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4"; + name = "Cell 4 Locker" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ayt" = ( +/obj/machinery/requests_console{ + department = "Law office"; + pixel_x = -32 + }, +/obj/structure/rack, +/obj/item/storage/briefcase, +/turf/open/floor/wood, +/area/service/lawoffice) +"ayu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"ayv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"ayw" = ( +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/service/lawoffice) +"ayx" = ( +/turf/open/floor/wood, +/area/service/lawoffice) +"ayy" = ( +/obj/machinery/photocopier, +/obj/machinery/button/door{ + id = "lawyer_blast"; + name = "Privacy Shutters"; + pixel_x = 25; + pixel_y = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"ayz" = ( +/obj/machinery/gulag_teleporter, +/turf/open/floor/wood, +/area/security/processing) +"ayA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security/glass{ + name = "Prisoner Processing"; + req_access_txt = "2" + }, +/turf/open/floor/wood, +/area/security/processing) +"ayB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ayC" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engineering) +"ayD" = ( +/obj/item/clothing/head/beret/eng, +/turf/open/floor/plasteel, +/area/engineering) +"ayE" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/holofloor/ice, +/area/edina) +"ayF" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/holofloor/ice, +/area/edina) +"ayG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/holofloor/ice, +/area/edina) +"ayH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"ayI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayL" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + roundstart_template = /datum/map_template/shuttle/labour/delta; + width = 9 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"ayM" = ( +/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/maintenance/starboard/fore) +"ayN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/security/brig) +"ayO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/security/brig) +"ayP" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + prison_radio = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ayQ" = ( +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ayR" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/service/lawoffice) +"ayS" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"ayT" = ( +/obj/structure/table/wood, +/obj/item/pen/red, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/wood, +/area/service/lawoffice) +"ayU" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/stamp/law, +/turf/open/floor/wood, +/area/service/lawoffice) +"ayV" = ( +/obj/structure/filingcabinet/employment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"ayW" = ( +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/processing) +"ayX" = ( +/obj/machinery/gulag_item_reclaimer{ + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/security/processing) +"ayY" = ( +/obj/machinery/door/airlock/external{ + name = "Gulag Shuttle Airlock"; + req_access_txt = "63" + }, +/turf/open/floor/wood, +/area/security/processing) +"ayZ" = ( +/obj/effect/decal/festive/fairylights, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"aza" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input{ + dir = 4 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"azb" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"azc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"azd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aze" = ( +/obj/structure/table/wood, +/obj/item/candle, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"azf" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"azg" = ( +/obj/machinery/door/airlock/atmos/glass, +/turf/open/floor/plasteel, +/area/engineering) +"azh" = ( +/obj/structure/grille, +/obj/structure/window/plasma/reinforced/fulltile, +/turf/open/floor/plasteel, +/area/engineering) +"azi" = ( +/obj/structure/table, +/obj/item/clothing/head/beret/atmos, +/obj/machinery/door/window/westleft{ + dir = 2; + icon_state = "right" + }, +/turf/open/floor/plasteel, +/area/engineering) +"azj" = ( +/obj/structure/table, +/obj/item/clothing/head/beret/ce/white, +/obj/machinery/door/window/westleft{ + dir = 2; + icon_state = "right" + }, +/obj/effect/decal/festive/holly, +/turf/open/floor/plasteel, +/area/engineering) +"azk" = ( +/obj/machinery/door/poddoor/shutters{ + id = "enggarage" + }, +/turf/open/floor/festive/cobblestone, +/area/engineering) +"azl" = ( +/obj/structure/statue/sandstone/venus{ + dir = 8 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"azm" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"azn" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"azo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar/atrium) +"azp" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/closed/wall/mineral/iron, +/area/maintenance/starboard/fore) +"azq" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = -28 + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"azr" = ( +/obj/structure/chair/sofa, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"azs" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/carpet/red, +/area/security/brig) +"azt" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"azu" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"azv" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = -28 + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"azw" = ( +/obj/machinery/vending/coffee, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"azx" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/lawoffice) +"azy" = ( +/obj/effect/landmark/start/lawyer, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"azz" = ( +/obj/effect/landmark/start/lawyer, +/turf/open/floor/wood, +/area/service/lawoffice) +"azA" = ( +/obj/machinery/vending/wardrobe/law_wardrobe, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 26 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"azB" = ( +/obj/item/storage/box/prisoner, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/security/processing) +"azC" = ( +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"azD" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/atmospherics/miner/toxins, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"azE" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"azF" = ( +/turf/open/floor/wood, +/area/engineering) +"azG" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/wood, +/area/engineering) +"azH" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"azI" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/closed/wall/mineral/iron, +/area/security/brig) +"azJ" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"azK" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"azL" = ( +/obj/structure/table/wood, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"azM" = ( +/obj/structure/rack, +/obj/item/storage/briefcase, +/turf/open/floor/wood, +/area/service/lawoffice) +"azN" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"azO" = ( +/obj/structure/table/wood, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 1 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"azP" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/cartridge/lawyer, +/turf/open/floor/wood, +/area/service/lawoffice) +"azQ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/computer/security/telescreen/prison{ + dir = 1; + pixel_y = -27 + }, +/turf/open/floor/wood, +/area/service/lawoffice) +"azR" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/wood, +/area/service/lawoffice) +"azS" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/wood, +/area/security/processing) +"azT" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the exit."; + id = "laborexit"; + name = "exit button"; + normaldoorcontrol = 1; + pixel_x = 26; + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/security/processing) +"azU" = ( +/obj/machinery/light, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"azV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output{ + dir = 4 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"azW" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"azX" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/layer3{ + dir = 8; + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"azY" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"azZ" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aAa" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/security/brig) +"aAb" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/brig) +"aAc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security{ + id_tag = "laborexit"; + name = "Labor Shuttle"; + req_access_txt = "63" + }, +/turf/open/floor/festive/alleyway, +/area/security/processing) +"aAd" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"aAe" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aAf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aAg" = ( +/turf/open/floor/festive/sidewalk, +/area/security) +"aAh" = ( +/obj/effect/festive/street/streetlineinnernw, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAi" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAj" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAk" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAl" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAm" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/computer/mech_bay_power_console, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAn" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/festive/street/streetlineinnerne, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/security/processing) +"aAp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"aAq" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/wood, +/area/engineering) +"aAr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "secgate1"; + name = "Gate doors"; + pixel_x = -28 + }, +/turf/open/floor/festive/sidewalk, +/area/security) +"aAs" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/turf/open/floor/festive/sidewalk, +/area/security) +"aAt" = ( +/obj/effect/festive/street/streetlinewest, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAu" = ( +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAv" = ( +/obj/vehicle/sealed/vectorcraft/cyber, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAw" = ( +/obj/vehicle/sealed/vectorcraft/hos, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAx" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAy" = ( +/turf/open/floor/festive/alleyway, +/area/security/processing) +"aAz" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/engineering) +"aAA" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/door/poddoor/shutters{ + id = "secgate1" + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aAB" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aAC" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/security) +"aAD" = ( +/obj/effect/festive/street/sidewalkn, +/turf/open/floor/festive/cobblestone, +/area/security) +"aAE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aAF" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAG" = ( +/obj/effect/festive/street/streetlinenw, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"aAJ" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/power/apc{ + areastring = "/area/science/robotics/mechbay"; + dir = 4; + name = "Mech Bay APC"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAK" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/security/processing) +"aAL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/processing) +"aAM" = ( +/obj/effect/decal/festive/fairylights, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"aAN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ + dir = 4 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"aAO" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aAP" = ( +/obj/machinery/door/poddoor/shutters{ + id = "secgate1" + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aAQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aAR" = ( +/turf/open/floor/festive/cobblestone, +/area/security) +"aAS" = ( +/obj/effect/festive/street/sidewalknsm, +/turf/open/floor/festive/cobblestone, +/area/security) +"aAT" = ( +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"aAU" = ( +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"aAV" = ( +/obj/effect/festive/street/streetlineeast, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aAW" = ( +/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/firedoor, +/turf/open/floor/festive/alleyway, +/area/security/processing) +"aAX" = ( +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"aAY" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/miner/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"aAZ" = ( +/obj/effect/festive/street/streetlineeast, +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility/full/engi, +/obj/item/storage/belt/utility/full/engi, +/obj/item/storage/belt/utility/full/engi, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aBa" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom{ + pixel_x = -26 + }, +/turf/open/floor/festive/alleyway, +/area/security/processing) +"aBb" = ( +/obj/machinery/light, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"aBc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ + dir = 4 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"aBd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBe" = ( +/obj/effect/festive/street/streetlineeast, +/obj/structure/table/reinforced, +/obj/item/clothing/head/collectable/welding, +/obj/item/clothing/head/collectable/welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aBf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"aBh" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aBi" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBj" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBk" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"aBl" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/door/poddoor/shutters{ + id = "secgate1" + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aBm" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aBn" = ( +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"aBo" = ( +/obj/effect/festive/street/streetlinesouth, +/turf/open/floor/festive/cobblestone, +/area/security) +"aBp" = ( +/obj/effect/festive/street/sidewalks, +/turf/open/floor/festive/cobblestone, +/area/security) +"aBq" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/light, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aBr" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aBs" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBt" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBu" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBv" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBw" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"aBy" = ( +/obj/effect/festive/street/sidewalke, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aBz" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"aBA" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/closed/wall/mineral/iron, +/area/security) +"aBB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/security) +"aBC" = ( +/obj/machinery/recharge_station, +/obj/effect/festive/street/streetlineinnersw, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aBD" = ( +/obj/machinery/recharge_station, +/obj/effect/festive/street/streetlinesouth, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aBE" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aBF" = ( +/obj/machinery/recharge_station, +/obj/effect/festive/street/streetlineinnerse, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aBG" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"aBH" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ + dir = 4 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"aBI" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBJ" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBK" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/layer3{ + dir = 4; + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aBN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"aBO" = ( +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"aBP" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/closed/wall/mineral/iron, +/area/edina/street) +"aBQ" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/closed/wall/mineral/iron, +/area/service/bar/atrium) +"aBR" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"aBS" = ( +/obj/structure/statue/snow/snowman{ + name = "Condom" + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/secondary/command) +"aBT" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"aBU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aBV" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aBW" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security) +"aBX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/festive/sidewalk, +/area/security) +"aBY" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/science/robotics/mechbay) +"aBZ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/security/office) +"aCa" = ( +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"aCb" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/atmospherics/miner/n2o, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"aCc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aCd" = ( +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 4; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aCe" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aCf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aCg" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/grille, +/obj/effect/decal/festive/holly, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"aCh" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"aCi" = ( +/obj/effect/festive/street/streetlinenm, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aCj" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"aCk" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aCl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/primary/perimeter) +"aCm" = ( +/obj/structure/sign/departments/xenobio, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/xenobiology) +"aCn" = ( +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/xenobiology) +"aCo" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/xenobiology) +"aCp" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSRightEnd, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aCq" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSLeftEnd, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aCr" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aCs" = ( +/obj/structure/sign/departments/science, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/xenobiology) +"aCt" = ( +/obj/structure/bed, +/obj/effect/spawner/lootdrop/bedsheet, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/decal/festive/red_stockings, +/turf/open/floor/carpet/red, +/area/edina) +"aCu" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/structure/curtain{ + color = "#FF5555" + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aCv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/toilet{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aCw" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aCx" = ( +/obj/machinery/door/airlock/security/glass, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aCy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/bar/atrium) +"aCz" = ( +/obj/effect/festive/street/streetlinewest, +/turf/open/floor/festive/cobblestone, +/area/security) +"aCA" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/security) +"aCB" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/north) +"aCC" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aCD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aCE" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/neck/scarf/red, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aCF" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aCG" = ( +/obj/machinery/light, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"aCH" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research) +"aCI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"aCJ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aCK" = ( +/obj/machinery/atmospherics/components/trinary/filter, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aCL" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aCM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aCN" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"aCO" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"aCP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aCQ" = ( +/obj/effect/festive/street/sidewalkw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"aCR" = ( +/obj/effect/festive/street/sidewalke, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"aCS" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"aCT" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"aCU" = ( +/obj/effect/festive/street/streetlinenw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"aCV" = ( +/obj/machinery/light, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"aCW" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aCX" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aCY" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aCZ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/xenobiology) +"aDa" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aDb" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aDc" = ( +/obj/machinery/computer/arcade, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aDd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aDe" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aDf" = ( +/obj/effect/festive/street/streetlinene, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"aDg" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aDh" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/north) +"aDi" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/edina/crew_quarters/store/pet) +"aDj" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/edina/crew_quarters/store/pet) +"aDk" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/edina/crew_quarters/store/pet) +"aDl" = ( +/obj/machinery/vending/cola/space_up, +/turf/open/floor/wood, +/area/edina/backstreet) +"aDm" = ( +/obj/machinery/vending/cola/pwr_game, +/turf/open/floor/wood, +/area/edina/backstreet) +"aDn" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aDo" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aDp" = ( +/turf/open/floor/carpet/red, +/area/edina) +"aDq" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/commons/dorms) +"aDr" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aDs" = ( +/obj/machinery/vr_sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/edina/crew_quarters/store/pet) +"aDt" = ( +/obj/effect/festive/street/streetlineinnerne, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aDu" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"aDv" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/edina/crew_quarters/store/pet) +"aDw" = ( +/turf/open/floor/wood, +/area/edina/backstreet) +"aDx" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder, +/turf/open/floor/carpet/monochrome, +/area/commons/storage/tools) +"aDz" = ( +/obj/structure/musician/piano, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aDA" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aDB" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aDC" = ( +/obj/item/radio/intercom{ + pixel_y = 26 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aDD" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aDE" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aDF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/office) +"aDG" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aDH" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"aDI" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aDJ" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aDK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aDL" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aDM" = ( +/obj/effect/landmark/start/security_officer, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aDN" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/neck/scarf/red, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aDO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aDP" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aDQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aDR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aDS" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research) +"aDT" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aDU" = ( +/turf/open/floor/circuit/green, +/area/science/xenobiology) +"aDV" = ( +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aDW" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aDX" = ( +/turf/open/floor/carpet/red, +/area/science/xenobiology) +"aDY" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aDZ" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWERightEnd, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aEa" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aEb" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/wood, +/area/edina/crew_quarters/store/pet) +"aEc" = ( +/obj/effect/festive/street/streetlinewest, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aEd" = ( +/obj/effect/festive/street/sidewalkwem, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"aEe" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aEf" = ( +/obj/structure/chair/sofa, +/turf/open/floor/wood, +/area/edina/backstreet) +"aEg" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/wood, +/area/edina/backstreet) +"aEh" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWERight, +/turf/closed/festive/redbrick, +/area/commons/storage/tools) +"aEi" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel/checker, +/area/commons/storage/tools) +"aEj" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/structure/table/wood/fancy/monochrome, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel/checker, +/area/edina) +"aEk" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel/checker, +/area/edina) +"aEl" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/service/bar/atrium) +"aEm" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aEn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aEo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aEp" = ( +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aEq" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aEr" = ( +/obj/effect/festive/street/sidewalknsm, +/turf/open/floor/festive/cobblestone, +/area/edina/street) +"aEs" = ( +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aEt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aEu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aEv" = ( +/obj/effect/landmark/start/security_officer, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aEw" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/neck/scarf/red, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aEx" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aEy" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aEz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research) +"aEA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"aEB" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aEC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"aED" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/primary/princess) +"aEE" = ( +/obj/structure/table/wood, +/obj/structure/window/spawner/east, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"aEF" = ( +/obj/structure/window/spawner, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"aEG" = ( +/obj/structure/streetdecor/lampfestive, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/primary/princess) +"aEH" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aEI" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWEMiddle, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aEJ" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"aEK" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/crew_quarters/store/plushies) +"aEL" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/plushies) +"aEM" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/checker, +/area/edina/crew_quarters/store/plushies) +"aEN" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/structure/table/wood/fancy/monochrome, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/checker, +/area/edina/crew_quarters/store/plushies) +"aEO" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"aEP" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/checker, +/area/edina/crew_quarters/store/plushies) +"aEQ" = ( +/turf/open/floor/carpet/black, +/area/commons/dorms) +"aER" = ( +/obj/structure/dresser{ + pixel_y = 15 + }, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"aES" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWERight, +/turf/closed/festive/redbrick, +/area/edina/crew_quarters/store/plushies) +"aET" = ( +/turf/closed/wall/mineral/silver, +/area/edina) +"aEU" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/service/bar/atrium) +"aEV" = ( +/turf/open/floor/festive/stairs/stairswest, +/area/service/bar/atrium) +"aEW" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = -5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"aEX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aEY" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aEZ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aFa" = ( +/obj/structure/streetdecor/lampfestive, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"aFb" = ( +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aFc" = ( +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"aFd" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aFe" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aFf" = ( +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aFg" = ( +/obj/structure/chair/comfy, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aFh" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aFi" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aFj" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aFk" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno6"; + name = "Creature Cell #6" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFl" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno6"; + name = "Creature Cell #6" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno6"; + name = "Creature Cell #6" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFn" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno5"; + name = "Creature Cell #5" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFo" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno5"; + name = "Creature Cell #5" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno5"; + name = "Creature Cell #5" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aFr" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aFs" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aFt" = ( +/obj/effect/festive/street/streetlinewest, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aFu" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell #4" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFv" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell #4" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell #4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFx" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell #3" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFy" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell #3" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell #3" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFA" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell #2" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFB" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell #2" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFC" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aFD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell #2" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFE" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell #1" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFF" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell #1" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell #1" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFH" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aFI" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aFJ" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWELeftEnd, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aFK" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aFL" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "enggarage"; + name = "Engineering Garage Door"; + pixel_x = 28 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aFM" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/edina/crew_quarters/store/pet) +"aFN" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/edina/crew_quarters/store/pet) +"aFO" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/edina/backstreet) +"aFP" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/wood, +/area/edina/backstreet) +"aFQ" = ( +/turf/open/floor/plasteel/checker, +/area/commons/storage/tools) +"aFR" = ( +/turf/open/floor/plasteel/checker, +/area/edina) +"aFS" = ( +/obj/machinery/door/airlock/wood/glass, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"aFT" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/north) +"aFU" = ( +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/crew_quarters/store/plushies) +"aFV" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWELeft, +/turf/closed/festive/redbrick, +/area/edina/crew_quarters/store/plushies) +"aFW" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/service/bar/atrium) +"aFX" = ( +/obj/machinery/manned_turret/ultimate{ + anchored = 1; + name = "Anti-Greyshit Cannon"; + projectile_type = /obj/item/projectile/beam/disabler/slug + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aFY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aFZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/stairs/stairswest, +/area/service/bar/atrium) +"aGa" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aGb" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aGc" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/item/reagent_containers/food/snacks/burrito, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aGd" = ( +/obj/item/reagent_containers/food/snacks/dulcedebatataslice, +/obj/structure/table/wood/fancy/royalblue, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aGe" = ( +/obj/item/reagent_containers/food/snacks/salad/validsalad, +/obj/structure/table/wood/fancy/royalblue, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aGf" = ( +/obj/item/reagent_containers/food/snacks/carneburrito, +/obj/structure/table/wood/fancy/royalblue, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aGg" = ( +/obj/item/reagent_containers/food/snacks/chawanmushi, +/obj/structure/table/wood/fancy/royalblue, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aGh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/edina/street/primary/perimeter) +"aGi" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"aGj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"aGk" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/primary/perimeter) +"aGl" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aGm" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"aGn" = ( +/obj/structure/fence/door, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"aGo" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/item/reagent_containers/food/snacks/cannedpeaches, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aGp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aGq" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aGr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aGs" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"aGt" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/layer1{ + dir = 8; + on = 1 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"aGu" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"aGv" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aGw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aGx" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aGy" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aGz" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aGA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aGB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aGC" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/science/xenobiology) +"aGD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aGE" = ( +/obj/effect/festive/street/streetlinewest, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aGF" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aGG" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aGH" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door{ + id = "xeno6"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aGI" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/window/brigdoor{ + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aGJ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aGK" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door{ + id = "xeno5"; + name = "Containment Control"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aGL" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BIOHAZARD CELL" + }, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/xenobiology) +"aGM" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "xeno4"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aGN" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door{ + id = "xeno3"; + name = "Containment Control"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aGO" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door{ + id = "xeno2"; + name = "Containment Control"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aGP" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door{ + id = "xeno1"; + name = "Containment Control"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aGQ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aGR" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aGS" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"aGT" = ( +/turf/open/floor/grass/fakebasalt, +/area/edina) +"aGU" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aGV" = ( +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aGW" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"aGX" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aGY" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aGZ" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/festive/street/sidewalkw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aHa" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aHb" = ( +/obj/effect/festive/street/sidewalkwem, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aHc" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aHd" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/sidewalke, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aHe" = ( +/obj/effect/festive/street/sidewalkn, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aHf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aHg" = ( +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_x = -32; + pixel_y = 36 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32; + pixel_y = 28 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aHh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aHi" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aHj" = ( +/obj/effect/festive/street/streetlinenw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aHk" = ( +/obj/effect/festive/street/sidewalkw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aHl" = ( +/obj/effect/festive/street/sidewalke, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aHm" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/edina) +"aHn" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/wood, +/area/edina) +"aHo" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/service/bar/atrium) +"aHp" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/item/reagent_containers/food/snacks/meatballspaghetti, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aHq" = ( +/obj/item/reagent_containers/food/snacks/hotdog, +/obj/structure/table/wood/fancy/royalblue, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aHr" = ( +/obj/item/reagent_containers/food/snacks/pie/grapetart, +/obj/structure/table/wood/fancy/royalblue, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aHs" = ( +/obj/item/reagent_containers/food/snacks/burger/superbite, +/obj/structure/table/wood/fancy/royalblue, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aHt" = ( +/obj/item/reagent_containers/food/snacks/cakeslice/slimecake, +/obj/structure/table/wood/fancy/royalblue, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aHu" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/item/reagent_containers/food/snacks/hotcrossbun, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aHv" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/security/office) +"aHw" = ( +/obj/machinery/vending/security, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aHx" = ( +/obj/effect/decal/remains/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/circuit/green, +/area/science/xenobiology) +"aHy" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/xenobiology) +"aHz" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"aHA" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + dir = 4; + network = list("xeno") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aHB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aHC" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -5; + pixel_y = 27 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aHD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aHE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -5; + pixel_y = 27 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aHF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"aHG" = ( +/obj/effect/festive/street/streetlinene, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aHH" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/mixing/chamber) +"aHI" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aHJ" = ( +/obj/machinery/vending/boozeomat{ + set_obj_flags = "EMAGGED" + }, +/turf/open/floor/wood, +/area/edina) +"aHK" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/wood, +/area/edina) +"aHL" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/book/manual/wiki/barman_recipes, +/obj/item/book/granter/action/drink_fling, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/rag, +/turf/open/floor/wood, +/area/edina) +"aHM" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/service/bar/atrium) +"aHN" = ( +/obj/machinery/door/window/southleft{ + acted_explosions = "63"; + dir = 1; + name = "Bar"; + req_access_txt = "50" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aHO" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aHP" = ( +/obj/machinery/jukebox, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aHQ" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/service/bar/atrium) +"aHR" = ( +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/robotics/mechbay) +"aHS" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aHT" = ( +/obj/machinery/camera{ + c_tag = "Brig Equipment Room"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/west, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aHU" = ( +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aHV" = ( +/obj/structure/sign/departments/science, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/robotics/mechbay) +"aHW" = ( +/obj/effect/festive/street/streetlinenw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aHX" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aHY" = ( +/obj/effect/festive/street/sidewalkn, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aHZ" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security) +"aIa" = ( +/obj/structure/closet/bombcloset/security, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aIb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"aIc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/layer3{ + dir = 8; + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aId" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aIe" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aIf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + on = 1; + target_pressure = 4500 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aIg" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"aIh" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/machinery/button/door{ + id = "xenosecure"; + name = "Containment Control"; + pixel_y = -3; + req_access_txt = "55" + }, +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_y = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIi" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIj" = ( +/obj/structure/sign/warning/biohazard{ + name = "Xeno Biohazard"; + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIk" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/wood, +/area/edina) +"aIl" = ( +/obj/machinery/power/apc/auto_name/south, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIm" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIn" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aIo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIp" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIq" = ( +/obj/item/slime_extract/grey, +/obj/item/slime_extract/grey, +/obj/item/slime_extract/grey, +/obj/item/slime_extract/grey, +/obj/item/slime_extract/grey, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIr" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIt" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aIu" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aIv" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "xenolobby"; + name = "Xenobiology Shutter" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aIw" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aIx" = ( +/obj/structure/closet/crate/bin, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/trash/candy, +/obj/item/toy/talking/owl, +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aIy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aIz" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aIA" = ( +/turf/open/floor/plasteel/freezer, +/area/edina) +"aIB" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/wood, +/area/edina/crew_quarters/store/pet) +"aIC" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/turf/open/floor/wood, +/area/edina/backstreet) +"aID" = ( +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/vending/dinnerware, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aIE" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aIF" = ( +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aIG" = ( +/obj/structure/chair/comfy, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aIH" = ( +/obj/machinery/vending/security, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aII" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aIJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aIK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aIL" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology - Secure Cell"; + dir = 4; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aIM" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Secure Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aIN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Secure Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIO" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aIP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIQ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIR" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aIT" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIU" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"aIV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIW" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aIX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIY" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/neck/scarf/purple, +/obj/item/clothing/head/beret/sci, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aIZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/xenobiology) +"aJa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/xenobiology) +"aJb" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Xenobiology Kill Room"; + req_access_txt = "47" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aJc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aJd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/xenobiology) +"aJe" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/disposal/bin, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aJf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aJg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aJh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aJi" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aJj" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aJk" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aJl" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "xenolobby"; + name = "Xenobiology Shutter" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aJm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/red, +/area/science/xenobiology) +"aJn" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aJo" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWEMiddle, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aJp" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/wood, +/area/edina/backstreet) +"aJq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aJr" = ( +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aJs" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aJt" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/snacks/meatballspaghetti, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aJu" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/snacks/notasandwich, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aJv" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/snacks/pastatomato, +/obj/machinery/light/floor, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aJw" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/snacks/kebab/tofu, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aJx" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/snacks/honkdae, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aJy" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/snacks/enchiladas, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aJz" = ( +/obj/machinery/door/airlock/security/glass, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aJA" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aJB" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"aJC" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aJD" = ( +/obj/structure/sign/warning/biohazard{ + name = "Xeno Biohazard"; + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aJE" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aJF" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aJG" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/head/beret/sci, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aJH" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"aJI" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"aJJ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"aJK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aJL" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aJM" = ( +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aJN" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/machinery/reagentgrinder, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aJO" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aJP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aJQ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aJR" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "xenolobby"; + name = "Xenobiology Privacy Shutters"; + pixel_x = 26; + pixel_y = 7; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aJS" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/science/xenobiology) +"aJT" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aJU" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSRightEnd, +/turf/open/floor/plasteel/checker, +/area/commons/storage/tools) +"aJV" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSMiddle, +/turf/open/floor/plasteel/checker, +/area/edina) +"aJW" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSLeftEnd, +/turf/open/floor/plasteel/checker, +/area/edina) +"aJX" = ( +/turf/closed/festive/redbrick/redbrickns, +/area/edina) +"aJY" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aJZ" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aKa" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/barman_recipes, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aKb" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aKc" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/snacks/melonfruitbowl, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aKd" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/snacks/khachapuri, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aKe" = ( +/turf/open/floor/plasteel, +/area/science/circuit) +"aKf" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/snacks/grilledcheese, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aKg" = ( +/turf/open/floor/plasteel, +/area/science/research) +"aKh" = ( +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aKi" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/snacks/jelliedtoast/cherry, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aKj" = ( +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aKk" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/snacks/honeybun, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aKl" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/snacks/eggplantparm, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aKm" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"aKn" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aKo" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSRightEnd, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "xenolobby"; + name = "Xenobiology Shutter" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aKp" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSMiddle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "xenolobby"; + name = "Xenobiology Shutter" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aKq" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSLeftEnd, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "xenolobby"; + name = "Xenobiology Shutter" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aKr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + external_pressure_bound = 120; + name = "killroom vent" + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"aKs" = ( +/obj/machinery/light, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"aKt" = ( +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"aKu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1; + external_pressure_bound = 140; + name = "killroom vent" + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"aKv" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aKw" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aKx" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/storage/box/syringes{ + pixel_y = 5 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/storage/box/monkeycubes, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aKy" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aKz" = ( +/obj/machinery/processor/slime, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aKA" = ( +/obj/machinery/smartfridge/extract/preloaded, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aKB" = ( +/obj/structure/fluff/lightpost/light, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"aKC" = ( +/obj/machinery/deepfryer, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aKD" = ( +/obj/structure/table/wood, +/obj/item/instrument/piano_synth, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aKE" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"aKF" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aKG" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/science/xenobiology) +"aKH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aKI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aKJ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/wardrobe/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aKK" = ( +/obj/machinery/chem_dispenser/drinks, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aKL" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aKM" = ( +/obj/structure/chair/comfy, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aKN" = ( +/turf/closed/festive/whitebrick, +/area/science/misc_lab) +"aKO" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/closed/festive/whitebrick, +/area/science/misc_lab) +"aKP" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/xenobiology) +"aKQ" = ( +/obj/structure/fluff/lightpost/light, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research) +"aKR" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research{ + name = "Science Street" + }) +"aKS" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/science/research{ + name = "Science Street" + }) +"aKT" = ( +/turf/open/floor/festive/alleyway, +/area/science/research{ + name = "Science Street" + }) +"aKU" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/festive/street/streetlineem, +/turf/open/floor/festive/alleyway, +/area/science/research{ + name = "Science Street" + }) +"aKV" = ( +/obj/structure/fluff/lightpost/light, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/crew_quarters/store/plushies) +"aKW" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aKX" = ( +/obj/machinery/chem_dispenser/drinks/beer, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aKY" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aKZ" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/snacks/khinkali, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aLa" = ( +/obj/item/reagent_containers/food/snacks/candiedapple, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aLb" = ( +/obj/item/reagent_containers/food/snacks/burger/baconburger, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aLc" = ( +/obj/item/reagent_containers/food/snacks/benedict, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aLd" = ( +/obj/item/reagent_containers/food/snacks/cakeslice/chocolate, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aLe" = ( +/obj/item/reagent_containers/food/snacks/chowmein, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aLf" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aLg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aLh" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/neck/scarf/red, +/turf/open/floor/plasteel/dark, +/area/security/office) +"aLi" = ( +/obj/structure/table, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aLj" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aLk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aLl" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aLm" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aLn" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aLo" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aLp" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aLq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aLr" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aLs" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aLt" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aLu" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/fence/door/opened{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aLv" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/science/research{ + name = "Science Street" + }) +"aLw" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/festive/street/streetlineem, +/turf/open/floor/festive/alleyway, +/area/science/research{ + name = "Science Street" + }) +"aLx" = ( +/turf/closed/festive/redbrick/redbrickns, +/area/edina/crew_quarters/store/plushies) +"aLy" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSRightEnd, +/turf/open/floor/plasteel/checker, +/area/edina/crew_quarters/store/plushies) +"aLz" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSMiddle, +/turf/open/floor/plasteel/checker, +/area/edina/crew_quarters/store/plushies) +"aLA" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSLeftEnd, +/turf/open/floor/plasteel/checker, +/area/edina/crew_quarters/store/plushies) +"aLB" = ( +/turf/closed/festive/redbrick/redbrickcornerse, +/area/edina/crew_quarters/store/plushies) +"aLC" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"aLD" = ( +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"aLE" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/structure/sign/poster/official/the_owl{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/security/prison) +"aLF" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/rack, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aLG" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aLH" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/snacks/fuegoburrito, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aLI" = ( +/obj/item/reagent_containers/food/snacks/copypasta, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aLJ" = ( +/obj/item/reagent_containers/food/snacks/bearsteak, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aLK" = ( +/obj/item/reagent_containers/food/snacks/boiledspaghetti, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aLL" = ( +/obj/item/reagent_containers/food/snacks/cherrycupcake, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aLM" = ( +/obj/item/reagent_containers/food/snacks/customizable/pizza, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aLN" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/security/office) +"aLO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick, +/area/science/misc_lab) +"aLP" = ( +/obj/structure/table, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aLQ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aLR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aLS" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/misc_lab"; + dir = 4; + name = "Testing Lab APC"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aLT" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/edina) +"aLU" = ( +/turf/closed/festive/whitebrick, +/area/science/explab) +"aLV" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/closed/festive/whitebrick, +/area/science/explab) +"aLW" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aLX" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aLY" = ( +/turf/closed/festive/redbrick, +/area/security/checkpoint/science) +"aLZ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/closed/festive/redbrick, +/area/security/checkpoint/science) +"aMa" = ( +/obj/structure/fluff/lightpost/light, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research{ + name = "Science Street" + }) +"aMb" = ( +/turf/closed/festive/whitebrick, +/area/science/research{ + name = "Science Street" + }) +"aMc" = ( +/obj/structure/reagent_dispensers/beerkeg{ + reagent_id = /datum/reagent/consumable/ethanol/beer/light + }, +/turf/open/floor/wood, +/area/edina) +"aMd" = ( +/obj/machinery/vending/cigarette/beach, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aMe" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/vending/snack/teal, +/turf/open/floor/plasteel, +/area/edina/crew_quarters/store/pet) +"aMf" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/obj/machinery/power/apc/auto_name/west, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aMg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aMh" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/service/bar/atrium) +"aMi" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aMj" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aMk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/security) +"aMl" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aMm" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aMn" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aMo" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/research) +"aMp" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aMq" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aMr" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aMs" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aMt" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aMu" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aMv" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aMw" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aMx" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aMy" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/explab) +"aMz" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"aMA" = ( +/obj/machinery/camera{ + c_tag = "Science - Experimentation Lab"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"aMB" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold, +/turf/open/floor/engine, +/area/science/explab) +"aMC" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"aMD" = ( +/obj/structure/closet/secure_closet/security/science, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aME" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aMF" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aMG" = ( +/turf/closed/festive/whitebrick, +/area/science/lab) +"aMH" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel, +/area/science/lab) +"aMI" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/turf/open/floor/plasteel, +/area/science/lab) +"aMJ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/turf/open/floor/plasteel, +/area/science/lab) +"aMK" = ( +/turf/closed/festive/whitebrick, +/area/science/research/lobby) +"aML" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/edina/crew_quarters/store/pet) +"aMM" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/vending/cola/pwr_game, +/turf/open/floor/plasteel, +/area/edina/crew_quarters/store/pet) +"aMN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/commons/storage/tools) +"aMO" = ( +/obj/machinery/processor, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aMP" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aMQ" = ( +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/structure/closet/secure_closet/freezer{ + storage_capacity = 120 + }, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aMR" = ( +/obj/machinery/computer/arcade{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aMS" = ( +/obj/machinery/computer/arcade{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aMT" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aMU" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aMV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/festive/sidewalk, +/area/security) +"aMW" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/festive/sidewalk, +/area/security) +"aMX" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aMY" = ( +/turf/open/floor/engine, +/area/science/research) +"aMZ" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/obj/machinery/camera{ + name = "Test Chamber Camera"; + network = list("test") + }, +/turf/open/floor/engine, +/area/science/research) +"aNa" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aNb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aNc" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aNd" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aNe" = ( +/turf/closed/festive/whitebrick, +/area/science/research) +"aNf" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/closed/festive/whitebrick, +/area/science/research) +"aNg" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Science Maintenance"; + req_access_txt = "47" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/science/research) +"aNh" = ( +/turf/closed/festive/whitebrick, +/area/science/nanite) +"aNi" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aNj" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/engine, +/area/science/explab) +"aNk" = ( +/turf/open/floor/engine, +/area/science/explab) +"aNl" = ( +/obj/machinery/rnd/experimentor, +/turf/open/floor/engine, +/area/science/explab) +"aNm" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine, +/area/science/explab) +"aNn" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aNo" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWE, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aNp" = ( +/obj/machinery/light_switch{ + pixel_x = -38; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aNq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aNr" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aNs" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWERightEnd, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aNt" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aNu" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aNv" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aNw" = ( +/obj/machinery/computer/rdconsole/core, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"aNx" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"aNy" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aNz" = ( +/obj/structure/table, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aNA" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/science/lab) +"aNB" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/research/lobby) +"aNC" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/research/lobby) +"aND" = ( +/obj/machinery/computer/arcade, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/research/lobby) +"aNE" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/beer/light, +/turf/open/floor/wood, +/area/edina) +"aNF" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/wood, +/area/edina) +"aNG" = ( +/obj/effect/festive/street/sidewalkw, +/turf/open/floor/festive/cobblestone, +/area/security) +"aNH" = ( +/obj/effect/festive/street/sidewalkwem, +/turf/open/floor/festive/cobblestone, +/area/security) +"aNI" = ( +/obj/effect/festive/street/sidewalke, +/turf/open/floor/festive/cobblestone, +/area/security) +"aNJ" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/security/office) +"aNK" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aNL" = ( +/obj/item/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/science/research) +"aNM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/research) +"aNN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aNO" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aNP" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"aNQ" = ( +/obj/machinery/door/airlock{ + name = "Borg Charger" + }, +/turf/open/floor/plasteel, +/area/science/research) +"aNR" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/research) +"aNS" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold, +/turf/open/floor/plasteel, +/area/science/research) +"aNT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/structure/bedsheetbin/towel, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"aNU" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/science/nanite) +"aNV" = ( +/obj/structure/table, +/obj/item/disk/nanite_program/monitoring, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aNW" = ( +/obj/machinery/nanite_programmer, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aNX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aNY" = ( +/obj/machinery/nanite_chamber, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aNZ" = ( +/obj/structure/frame/computer, +/obj/item/circuitboard/computer/nanite_chamber_control, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aOa" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aOb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aOc" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aOd" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aOe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Post - Science"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aOf" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aOg" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aOh" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWEMiddle, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aOi" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/research) +"aOj" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research{ + name = "Science Street" + }) +"aOk" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/clothing/glasses/welding, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aOl" = ( +/turf/open/floor/plasteel/white, +/area/science/lab) +"aOm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"aOn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"aOo" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aOp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aOq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/festive/wooden/wooden1, +/area/science/lab) +"aOr" = ( +/turf/open/floor/carpet/green, +/area/science/research/lobby) +"aOs" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aOt" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"aOu" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/festive/wooden/wooden1, +/area/science/research/lobby) +"aOv" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/turf/open/floor/plasteel, +/area/science/research/lobby) +"aOw" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/tequila, +/turf/open/floor/wood, +/area/edina) +"aOx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/stairs/stairssouth, +/area/service/bar/atrium) +"aOy" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aOz" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/firecloset, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aOA" = ( +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aOB" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aOC" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 8; + name = "8maintenance loot spawner" + }, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aOD" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aOE" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aOF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/stairs/stairssouth, +/area/security/office) +"aOG" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aOH" = ( +/obj/machinery/sparker{ + id = "testigniter"; + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/science/research) +"aOI" = ( +/obj/item/beacon, +/turf/open/floor/engine, +/area/science/research) +"aOJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/research) +"aOK" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/turf/open/floor/engine, +/area/science/research) +"aOL" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"aOM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"aON" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aOO" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Testing Lab"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aOP" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/research) +"aOQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel, +/area/science/research) +"aOR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/science/research) +"aOS" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/nanite_scanner, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aOT" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aOU" = ( +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aOV" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aOW" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/closed/festive/whitebrick, +/area/science/nanite) +"aOX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/engine, +/area/science/explab) +"aOY" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/science/explab) +"aOZ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/science/explab) +"aPa" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/science/explab) +"aPb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/closed/festive/whitebrick, +/area/science/explab) +"aPc" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aPd" = ( +/obj/machinery/computer/mecha{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aPe" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWELeftEnd, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aPf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/machinery/button/door{ + id = "secgate1"; + name = "Gate doors"; + pixel_x = 28 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"aPg" = ( +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab"; + req_one_access_txt = "7;29" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aPh" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aPi" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aPj" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"aPk" = ( +/obj/machinery/rnd/production/protolathe/department/science, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"aPl" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aPm" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/festive/wooden/wooden1, +/area/science/lab) +"aPn" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/festive/wooden/wooden1, +/area/science/research/lobby) +"aPo" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWEMiddle, +/turf/open/floor/plasteel, +/area/science/research/lobby) +"aPp" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/service/bar/atrium) +"aPq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aPr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/stairs/stairswest, +/area/service/bar/atrium) +"aPs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aPt" = ( +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aPu" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/service/bar/atrium) +"aPv" = ( +/obj/effect/festive/street/streetlinene, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aPw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/security) +"aPx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "secgate2"; + name = "Gate doors"; + pixel_y = -22 + }, +/turf/open/floor/festive/sidewalk, +/area/security) +"aPy" = ( +/obj/effect/festive/street/streetlinewest, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aPz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aPA" = ( +/obj/effect/festive/street/streetlineeast, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aPB" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/security/office) +"aPC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/stairs/stairseast, +/area/security/office) +"aPD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/security/office) +"aPE" = ( +/obj/item/radio/intercom{ + pixel_y = 26 + }, +/turf/open/floor/wood, +/area/security/office) +"aPF" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/office) +"aPG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/engine, +/area/science/research) +"aPH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/engine, +/area/science/research) +"aPI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aPJ" = ( +/turf/closed/festive/whitebrick, +/area/science/storage) +"aPK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"aPL" = ( +/obj/machinery/door/airlock{ + name = "Toilet Unit" + }, +/turf/open/floor/plasteel, +/area/science/research) +"aPM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/science/research) +"aPN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/science/research) +"aPO" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aPP" = ( +/obj/structure/frame/computer{ + dir = 8 + }, +/obj/item/circuitboard/computer/nanite_cloud_controller, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aPQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "telelab"; + name = "Testing Lab Blast Doors"; + pixel_x = -26; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aPR" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel/white/corner, +/area/science/explab) +"aPS" = ( +/obj/machinery/computer/rdconsole/experiment, +/turf/open/floor/plasteel/white/side, +/area/science/explab) +"aPT" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/book/manual/wiki/experimentor, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/science/explab) +"aPU" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/explab) +"aPV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aPW" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aPX" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Science"; + dir = 8; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aPY" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aPZ" = ( +/obj/effect/festive/street/sidewalkn, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aQa" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/festive/wooden/wooden1, +/area/science/research/lobby) +"aQb" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/turf/open/floor/plasteel, +/area/science/research/lobby) +"aQc" = ( +/obj/machinery/processor, +/turf/open/floor/wood, +/area/edina) +"aQd" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aQe" = ( +/obj/machinery/manned_turret/ultimate{ + anchored = 1; + name = "Anti-Greyshit Cannon"; + projectile_type = /obj/item/projectile/beam/disabler/slug + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aQf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aQg" = ( +/obj/machinery/door/airlock/security/glass, +/turf/open/floor/plasteel, +/area/security) +"aQh" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/door/poddoor/shutters{ + id = "secgate2" + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aQi" = ( +/obj/machinery/door/poddoor/shutters{ + id = "secgate2" + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aQj" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/door/poddoor/shutters{ + id = "secgate2" + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aQk" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/office) +"aQl" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aQm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/research) +"aQn" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aQo" = ( +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aQp" = ( +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aQq" = ( +/obj/item/radio/intercom{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aQr" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/science/misc_lab) +"aQs" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aQt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aQu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aQv" = ( +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aQw" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"aQx" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aQy" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aQz" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aQA" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aQB" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = -30; + receive_ore_updates = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aQC" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -5; + pixel_y = 27 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aQD" = ( +/turf/open/floor/plasteel/white, +/area/science/explab) +"aQE" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aQF" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/explab"; + dir = 1; + name = "Experimentation Lab APC"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aQG" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aQH" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aQI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aQJ" = ( +/obj/machinery/door_timer{ + id = "scicell"; + name = "Science Cell"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/science/research"; + dir = 8; + name = "Security Post - Science APC"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/machinery/button/door{ + desc = "A remote control switch."; + id = "scidoor"; + name = "Science Cell Control"; + normaldoorcontrol = 1; + pixel_x = -36; + pixel_y = -7 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aQK" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aQL" = ( +/obj/structure/table/glass, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aQM" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aQN" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aQO" = ( +/obj/machinery/button/door{ + id = "rndlab1"; + name = "Research and Development Privacy Shutters"; + pixel_x = 26; + pixel_y = 7; + req_access_txt = "30" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"aQP" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/research/lobby) +"aQQ" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold, +/turf/open/floor/festive/wooden/wooden1, +/area/science/research/lobby) +"aQR" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/turf/closed/festive/whitebrick, +/area/science/research/lobby) +"aQS" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"aQT" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"aQU" = ( +/turf/closed/festive/greybrick, +/area/edina/backstreet) +"aQV" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plasteel/elevatorshaft, +/area/edina/backstreet) +"aQW" = ( +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/dark, +/area/edina/backstreet) +"aQX" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/service/bar/atrium) +"aQY" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/service/bar/atrium) +"aQZ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/service/bar/atrium) +"aRa" = ( +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/primary/perimeter) +"aRb" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/office) +"aRc" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/office) +"aRd" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/office) +"aRe" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRf" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRg" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRh" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRi" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "testlab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = 2; + req_access_txt = "55" + }, +/obj/machinery/button/ignition{ + id = "testigniter"; + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRj" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/pen, +/obj/item/taperecorder, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRk" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRl" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/crowbar, +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Monitor"; + network = list("test"); + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRm" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRn" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRo" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRp" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aRq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aRr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aRs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/storage) +"aRt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"aRu" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/neck/scarf/purple, +/obj/item/clothing/neck/scarf/christmas, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aRv" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aRw" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel, +/area/science/nanite) +"aRx" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel, +/area/science/nanite) +"aRy" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/closed/festive/whitebrick, +/area/science/nanite) +"aRz" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aRA" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aRB" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aRC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aRD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aRE" = ( +/obj/structure/closet/secure_closet/brig{ + id = "scicell"; + name = "Science Cell Locker" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aRF" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/turf/open/floor/plasteel, +/area/science/lab) +"aRG" = ( +/obj/structure/sign/departments/science, +/turf/closed/festive/whitebrick, +/area/science/lab) +"aRH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/red, +/area/science/xenobiology) +"aRI" = ( +/obj/structure/sign/departments/science, +/turf/closed/festive/whitebrick, +/area/science/research/lobby) +"aRJ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"aRK" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRL" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRM" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRN" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRO" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRP" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Testing Lab"; + req_access_txt = "47" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aRQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/storage) +"aRR" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/storage) +"aRS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/storage) +"aRT" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aRU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/turf/open/floor/plasteel, +/area/science/research) +"aRV" = ( +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"aRW" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/closed/festive/whitebrick, +/area/science/research) +"aRX" = ( +/obj/machinery/vending/wardrobe/science_wardrobe, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aRY" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Nanite Lab"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/white, +/area/science/nanite) +"aRZ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWE, +/turf/open/floor/plasteel, +/area/science/explab) +"aSa" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aSb" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aSc" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/radio/off, +/obj/machinery/firealarm{ + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aSd" = ( +/obj/structure/table, +/obj/item/pen/fountain, +/obj/item/hand_labeler, +/obj/item/stack/packageWrap, +/obj/machinery/camera{ + c_tag = "Science - Research Director's Quarters"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aSe" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aSf" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aSg" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aSh" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aSi" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aSj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + id_tag = "scidoor"; + name = "Security Post - Science"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aSk" = ( +/obj/structure/sign/warning/biohazard{ + name = "Xeno Biohazard"; + pixel_x = -32 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aSl" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/mineral/plasma, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aSm" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aSn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aSo" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aSp" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aSq" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aSr" = ( +/obj/effect/festive/street/streetlinewest, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"aSs" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Toxins Storage"; + req_access_txt = "24" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/storage) +"aSt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/storage) +"aSu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"aSv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aSw" = ( +/obj/effect/festive/street/streetlinenw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aSx" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"aSy" = ( +/obj/machinery/door/airlock/titanium{ + name = "Service Office"; + req_one_access_txt = "25;26;28;35" + }, +/turf/open/floor/plasteel/dark, +/area/edina/backstreet) +"aSz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"aSA" = ( +/obj/structure/sign/warning/biohazard{ + name = "Xeno Biohazard"; + pixel_y = -32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aSB" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aSC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aSD" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/wood, +/area/science/research) +"aSE" = ( +/obj/structure/table/wood, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/obj/item/storage/box/donkpockets, +/turf/open/floor/wood, +/area/science/research) +"aSF" = ( +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/wood, +/area/science/research) +"aSG" = ( +/turf/open/floor/wood, +/area/science/research) +"aSH" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/wood, +/area/science/research) +"aSI" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/closed/festive/redbrick, +/area/security/checkpoint/science) +"aSJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aSK" = ( +/obj/machinery/door/window/brigdoor{ + id = "scicell"; + name = "Medical Cell"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aSL" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"aSM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"aSN" = ( +/obj/structure/sign/departments/science, +/turf/closed/festive/redbrick, +/area/security/checkpoint/science) +"aSO" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aSP" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/turf/open/floor/engine, +/area/science/misc_lab) +"aSQ" = ( +/turf/open/floor/engine, +/area/science/misc_lab) +"aSR" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"aSS" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"aST" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"aSU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aSV" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aSW" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aSX" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aSY" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Science - Toxins Secure Storage"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/storage) +"aSZ" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"aTa" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"aTc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aTd" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"aTe" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + areastring = "/area/science/storage"; + dir = 4; + name = "Toxins Storage APC"; + pixel_x = 26 + }, +/obj/structure/cable/white, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/storage) +"aTf" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/science/research) +"aTg" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"aTh" = ( +/turf/open/floor/carpet/red, +/area/service/bar) +"aTi" = ( +/obj/structure/chair/stool, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/wood, +/area/science/research) +"aTj" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aTk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/xenobiology) +"aTl" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aTm" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aTn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aTo" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aTp" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aTq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aTr" = ( +/obj/structure/fence, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aTs" = ( +/obj/effect/festive/street/streetlinesw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aTt" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"aTu" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aTv" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aTw" = ( +/obj/effect/festive/street/sidewalknsm, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aTx" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aTy" = ( +/obj/effect/festive/street/sidewalkn, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aTz" = ( +/turf/closed/festive/greybrick, +/area/commons/dorms) +"aTA" = ( +/obj/structure/table, +/obj/item/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"aTB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"aTC" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aTD" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped, +/turf/open/floor/engine, +/area/science/misc_lab) +"aTE" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/engine, +/area/science/misc_lab) +"aTF" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/ears/earmuffs, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aTG" = ( +/obj/structure/table, +/obj/item/electropack, +/obj/item/healthanalyzer, +/obj/item/assembly/signaler, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aTH" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/cell/high/plus, +/obj/item/multitool, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aTI" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aTJ" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aTK" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/storage) +"aTL" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"aTM" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"aTN" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/storage) +"aTO" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/science/research) +"aTP" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, +/obj/machinery/camera{ + c_tag = "Science - Break Room"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/wood, +/area/science/research) +"aTQ" = ( +/turf/closed/festive/whitebrick, +/area/science/server) +"aTR" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aTS" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/green, +/area/science/research/lobby) +"aTT" = ( +/obj/structure/fence/door/opened{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aTU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aTV" = ( +/obj/effect/festive/street/sidewalknsm, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aTW" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"aTX" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"aTY" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/science/misc_lab) +"aTZ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"aUa" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/storage) +"aUb" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"aUc" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"aUd" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/storage) +"aUe" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/science/research) +"aUf" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/research) +"aUg" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/item/clipboard, +/obj/item/folder, +/obj/item/clothing/head/beret/sci, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/wood, +/area/science/research) +"aUh" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"aUi" = ( +/obj/machinery/rnd/server, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"aUj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"aUk" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/server) +"aUl" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/science/research/lobby) +"aUm" = ( +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aUn" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/science/server) +"aUo" = ( +/turf/closed/festive/whitebrick, +/area/science/robotics) +"aUp" = ( +/obj/structure/sign/departments/science, +/turf/closed/festive/whitebrick/whitebrickcornerne, +/area/science/robotics) +"aUq" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/wood, +/area/edina) +"aUr" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aUs" = ( +/obj/structure/fluff/lightpost/light, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"aUt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"aUu" = ( +/turf/closed/festive/redbrick, +/area/edina/backstreet) +"aUv" = ( +/obj/structure/window/fulltile, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"aUw" = ( +/obj/structure/window/fulltile, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/plushies) +"aUx" = ( +/obj/effect/festive/street/streetlineeast, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"aUy" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/festive/street/streetliftedtile2, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aUz" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aUA" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aUB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aUC" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"aUD" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/engine, +/area/science/misc_lab) +"aUE" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"aUF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aUG" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"aUH" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/wood, +/area/science/research) +"aUI" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/wood, +/area/science/research) +"aUJ" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/vending/cola/random, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/wood, +/area/science/research) +"aUK" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/wood, +/area/science/research) +"aUL" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/wood, +/area/science/research) +"aUM" = ( +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research) +"aUN" = ( +/obj/machinery/airalarm/server{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"aUO" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"aUP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Server Room"; + req_access_txt = "30" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"aUQ" = ( +/obj/machinery/atmospherics/pipe/manifold{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"aUR" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"aUS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"aUT" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"aUU" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"aUV" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"aUW" = ( +/obj/machinery/computer/arcade{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"aUX" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"aUY" = ( +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aUZ" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aVa" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aVb" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aVc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aVd" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aVe" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aVf" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aVg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"aVh" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/server) +"aVi" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"aVj" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"aVk" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen/fountain, +/turf/open/floor/plasteel/dark, +/area/science/server) +"aVl" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/carpet/red, +/area/science/robotics) +"aVm" = ( +/turf/open/floor/carpet/red, +/area/science/robotics) +"aVn" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeft, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"aVo" = ( +/obj/effect/festive/street/streetlinesouth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aVp" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"aVq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"aVr" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"aVs" = ( +/turf/closed/festive/whitebrick, +/area/science/mixing/chamber) +"aVt" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"aVu" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"aVv" = ( +/turf/closed/festive/whitebrick, +/area/science/mixing) +"aVw" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/closed/festive/whitebrick, +/area/science/mixing) +"aVx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"aVy" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/light/small, +/turf/open/floor/carpet/red, +/area/science/robotics) +"aVz" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/carpet/red, +/area/science/robotics) +"aVA" = ( +/obj/effect/decal/festive/christmas_reef, +/obj/machinery/door/airlock/wood/glass, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/plushies) +"aVB" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina) +"aVC" = ( +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aVD" = ( +/obj/machinery/door/airlock/sandstone{ + name = "Bar Access" + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/wood, +/area/edina) +"aVE" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = null + }, +/turf/open/floor/wood, +/area/edina) +"aVF" = ( +/obj/structure/fluff/lightpost/light, +/turf/open/floor/festive/alleyway, +/area/edina) +"aVG" = ( +/obj/machinery/door/poddoor/incinerator_toxmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"aVH" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"aVI" = ( +/obj/machinery/sparker/toxmix{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxins_mixing_output{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"aVJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/science/mixing/chamber) +"aVK" = ( +/obj/machinery/airlock_sensor/incinerator_toxmix{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"aVL" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ + pixel_x = -24 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"aVM" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "mix to port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"aVN" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/mixing) +"aVO" = ( +/turf/closed/festive/whitebrick, +/area/command/heads_quarters/rd) +"aVP" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"aVQ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"aVR" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"aVS" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"aVT" = ( +/obj/machinery/door/airlock/research/glass, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"aVU" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/festive/mistletoe, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel, +/area/science/robotics) +"aVV" = ( +/turf/closed/wall/mineral/iron, +/area/service/chapel/office) +"aVW" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/service/chapel/office) +"aVX" = ( +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"aVY" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/air_sensor/atmos/toxins_mixing_tank, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"aVZ" = ( +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"aWa" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"aWb" = ( +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"aWc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"aWd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/toy/plush/catgirl/fermis, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"aWe" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab East"; + dir = 8; + network = list("ss13","rd"); + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/mixing) +"aWf" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"aWg" = ( +/obj/machinery/computer/card/minor/rd{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aWh" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aWi" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "rdxeno"; + name = "Xenobiology Containment Control"; + pixel_x = -7; + pixel_y = 7; + req_access_txt = "30" + }, +/obj/machinery/button/door{ + id = "rdtoxins"; + name = "Toxins Containment Control"; + pixel_x = -7; + pixel_y = -4; + req_access_txt = "30" + }, +/obj/machinery/button/door{ + id = "rdrnd"; + name = "Research and Development Containment Control"; + pixel_x = 7; + pixel_y = 7; + req_access_txt = "30" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aWj" = ( +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aWk" = ( +/obj/effect/festive/street/streetlineem, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"aWl" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/edina) +"aWm" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWE, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"aWn" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aWo" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"aWp" = ( +/turf/open/floor/plasteel/white, +/area/science/robotics) +"aWq" = ( +/obj/machinery/vending/cola/red, +/obj/machinery/light/small, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"aWr" = ( +/obj/machinery/vending/snack/green, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"aWs" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aWt" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aWu" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"aWv" = ( +/turf/closed/wall/mineral/iron, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"aWw" = ( +/obj/structure/curtain, +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"aWx" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aWy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aWz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/office) +"aWA" = ( +/turf/closed/festive/whitebrick, +/area/command/heads_quarters/cmo) +"aWB" = ( +/obj/structure/chair/comfy/brown, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/office) +"aWC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/office) +"aWD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aWE" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aWF" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/office) +"aWG" = ( +/obj/structure/chair/wood/wings, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/office) +"aWH" = ( +/turf/closed/wall/mineral/iron, +/area/service/chapel/asteroid{ + name = "Chapel Dining Room" + }) +"aWI" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/service/chapel/asteroid{ + name = "Chapel Dining Room" + }) +"aWJ" = ( +/obj/structure/fluff/lightpost/light, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/clothes) +"aWK" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/toilet{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/edina/crew_quarters/store/clothes) +"aWL" = ( +/obj/structure/closet/crate/wooden, +/obj/item/stack/sheet/mineral/wood/fifty, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"aWM" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/toilet{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aWN" = ( +/obj/machinery/sparker/toxmix{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxins_mixing_input{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"aWO" = ( +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"aWP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/button/door/incinerator_vent_toxmix{ + pixel_x = -25; + pixel_y = 5 + }, +/obj/machinery/button/ignition/incinerator/toxmix{ + pixel_x = -25; + pixel_y = -5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"aWQ" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "port to mix" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"aWR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/mixing) +"aWS" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWEMiddle, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"aWT" = ( +/obj/machinery/computer/mecha{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aWU" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/toy/plush/catgirl/fermis, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aWV" = ( +/obj/machinery/computer/aifixer{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aWW" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aWX" = ( +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aWY" = ( +/obj/machinery/camera{ + c_tag = "Science - Research Director's Office"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aWZ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNS, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"aXa" = ( +/turf/closed/festive/whitebrick, +/area/science/circuit) +"aXb" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel, +/area/science/circuit) +"aXc" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plasteel, +/area/science/circuit) +"aXd" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel, +/area/science/circuit) +"aXe" = ( +/obj/effect/festive/street/streetlinesouth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aXf" = ( +/turf/closed/festive/whitebrick, +/area/science/robotics/lab) +"aXg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aXh" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/toy/plush/aiplush, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aXi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aXj" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/closed/festive/whitebrick, +/area/science/robotics/lab) +"aXk" = ( +/obj/machinery/door/poddoor/shutters{ + id = "mechbay"; + name = "Mech Bay Shutters" + }, +/obj/effect/turf_decal/caution, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"aXl" = ( +/obj/machinery/door/poddoor/shutters{ + id = "mechbay"; + name = "Mech Bay Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"aXv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/storage/tools) +"aXw" = ( +/obj/structure/noticeboard{ + name = "Tool Shoppe" + }, +/obj/item/screwdriver{ + anchored = 1; + pixel_y = 8 + }, +/turf/closed/festive/creambrick{ + color = "#ffbb4d" + }, +/area/commons/storage/tools) +"aXz" = ( +/turf/closed/festive/creambrick{ + color = "#ffbb4d" + }, +/area/commons/storage/tools) +"aXB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"aXC" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aXD" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRight, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aXE" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aXF" = ( +/obj/structure/table, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 8 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"aXG" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"aXH" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/structure/closet/crate, +/obj/item/nullrod, +/obj/item/nullrod, +/obj/item/book/granter/spell/smoke/lesser{ + pixel_y = 2 + }, +/obj/item/book/granter/spell/smoke/lesser{ + pixel_y = 2 + }, +/obj/item/paper/fluff/festive/note_for_chap, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"aXI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"aXJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"aXK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aXL" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aXM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aXN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aXO" = ( +/obj/structure/table/wood/fancy/red, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/storage/book/bible{ + pixel_y = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/office) +"aXP" = ( +/obj/effect/decal/festive/fairylights, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/plushies) +"aXQ" = ( +/obj/structure/closet/crate/wooden, +/obj/item/stack/sheet/mineral/wood/fifty, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/plushies) +"aXR" = ( +/obj/structure/chair/comfy/black, +/obj/effect/decal/festive/large_green_stocking, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/plushies) +"aXS" = ( +/turf/closed/festive/bluebrick, +/area/edina) +"aXT" = ( +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aXU" = ( +/obj/machinery/jukebox/disco/indestructible, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aXV" = ( +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"aXW" = ( +/obj/structure/table/wood/fancy/red, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/camera/spooky, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/office) +"aXX" = ( +/obj/structure/table/wood/fancy/red, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_y = 8 + }, +/obj/item/storage/crayons{ + pixel_y = 2 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/office) +"aXY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aXZ" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/service/chapel/office"; + dir = 8; + name = "Chapel Office APC"; + pixel_x = 26 + }, +/obj/structure/filingcabinet, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aYa" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plating, +/area/service/chapel/office) +"aYb" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/asteroid{ + name = "Chapel Dining Room" + }) +"aYc" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"aYd" = ( +/turf/open/floor/plasteel/white, +/area/science/mixing) +"aYe" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"aYf" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"aYg" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aYh" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aYi" = ( +/obj/effect/festive/street/sidewalks, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"aYj" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stamp/rd, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aYk" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aYl" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aYm" = ( +/obj/structure/displaycase/labcage, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aYn" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"aYo" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/analyzer, +/obj/item/integrated_electronics/debugger, +/obj/item/integrated_electronics/wirer, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"aYp" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"aYq" = ( +/obj/machinery/camera{ + c_tag = "Science - Experimentation Lab"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/requests_console{ + department = "Circuitry Lab"; + name = "Circuitry Lab RC"; + pixel_y = 32; + receive_ore_updates = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"aYr" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"aYs" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"aYt" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"aYu" = ( +/obj/machinery/vending/assist, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"aYv" = ( +/obj/machinery/button/door{ + id = "roboticsprivacy"; + name = "Robotics Privacy Control"; + pixel_x = -26; + req_access_txt = "29" + }, +/obj/machinery/aug_manipulator, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"aYw" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"aYx" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/bluespace, +/obj/item/stock_parts/cell/bluespace, +/obj/item/stock_parts/cell/bluespace, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"aYy" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "robotics1" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aYz" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/item/clothing/head/welding, +/obj/item/clothing/glasses/welding, +/obj/item/multitool, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aYA" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/belt/utility, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aYB" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aYC" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aYD" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aYE" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"aYF" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"aYG" = ( +/obj/machinery/button/door{ + id = "mechbay"; + name = "Mech Bay Shutters Control"; + pixel_y = 26; + req_access_txt = "29" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aYH" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"aYI" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"aYV" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aYW" = ( +/obj/structure/sign/barsign, +/turf/closed/wall/mineral/silver, +/area/edina) +"aYX" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSRightEnd, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/backstreet) +"aYY" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSMiddle, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"aYZ" = ( +/turf/closed/festive/greybrick/greybrickns, +/area/edina) +"aZa" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/clothes) +"aZb" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/freezer, +/area/edina/crew_quarters/store/clothes) +"aZg" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"aZh" = ( +/turf/closed/mineral/snowmountain, +/area/commons/storage/tools) +"aZi" = ( +/turf/closed/festive/whitebrick, +/area/service/hydroponics) +"aZj" = ( +/obj/structure/table, +/obj/item/watertank, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aZk" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aZl" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aZm" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aZn" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aZo" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aZp" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/research) +"aZq" = ( +/obj/structure/sign/poster/official/space_cops{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/security/office) +"aZr" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aZs" = ( +/obj/machinery/door/airlock/freezer{ + name = "Freezer"; + req_one_access_txt = "25;26;28;35" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"aZt" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"aZu" = ( +/turf/closed/wall/ice, +/area/edina) +"aZv" = ( +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"aZw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"aZx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aZy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aZz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aZA" = ( +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aZB" = ( +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"aZC" = ( +/obj/machinery/light/small, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aZD" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aZE" = ( +/obj/machinery/vending/wardrobe/chap_wardrobe, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"aZF" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/main) +"aZG" = ( +/obj/structure/chair/wood/wings, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/asteroid{ + name = "Chapel Dining Room" + }) +"aZH" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aZI" = ( +/turf/open/floor/plasteel/white, +/area/medical/virology) +"aZJ" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"aZK" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"aZL" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"aZM" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab West"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"aZN" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"aZO" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/item/storage/firstaid/toxin, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/unlocked{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"aZP" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"aZQ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"aZR" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"aZS" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director's RC"; + pixel_x = -32; + receive_ore_updates = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aZT" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aZU" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"aZV" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/storage) +"aZW" = ( +/obj/structure/table/reinforced, +/obj/item/paicard, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aZX" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/turf/open/floor/plasteel, +/area/science/circuit) +"aZY" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/beret/sci, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"aZZ" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"baa" = ( +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bab" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bac" = ( +/obj/structure/table/reinforced, +/obj/item/circular_saw, +/obj/item/scalpel, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bad" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bae" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"baf" = ( +/obj/structure/table/reinforced, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bag" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bah" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"bai" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/turf/open/floor/plasteel/freezer, +/area/edina/crew_quarters/store/plushies) +"baj" = ( +/obj/structure/table/wood/fancy/monochrome, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/plushies) +"bak" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Hotel" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bal" = ( +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bam" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"ban" = ( +/obj/effect/turf_decal/bot_red, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bao" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "robotics1" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bap" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "robotics1" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"baq" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"bar" = ( +/obj/effect/landmark/start/cyborg, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bas" = ( +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bat" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/bluespace, +/obj/item/stock_parts/cell/bluespace, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"baE" = ( +/obj/structure/table/wood, +/obj/item/clothing/glasses/prism_glasses, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/dark, +/area/edina/crew_quarters/store/pet) +"baF" = ( +/obj/structure/table/wood, +/obj/item/slapper, +/turf/open/floor/plasteel/dark, +/area/edina/crew_quarters/store/pet) +"baG" = ( +/obj/structure/table/wood, +/obj/item/coin/iron{ + icon_state = "coin_bananium_heads"; + name = "arcade coin"; + pixel_x = -6 + }, +/turf/open/floor/plasteel/dark, +/area/edina/crew_quarters/store/pet) +"baH" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/fluff/lightpost/light, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/pet) +"baL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"baS" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/gps, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"baT" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"baU" = ( +/turf/closed/festive/whitebrick/whitebrickns, +/area/service/hydroponics) +"baV" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/mob/living/simple_animal/hostile/lizard{ + name = "Wags-His-Tail"; + real_name = "Wags-His-Tail" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"baW" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"baX" = ( +/obj/machinery/computer/prisoner/management, +/obj/structure/sign/poster/official/duelshotgun{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/security/warden) +"baY" = ( +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"baZ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bba" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/sign/poster/official/nt_storm{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/security/office) +"bbb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft, +/obj/machinery/door/window/southright, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bbc" = ( +/turf/closed/festive/redbrick, +/area/medical/medbay/lobby) +"bbd" = ( +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bbe" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bbf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bbg" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/landmark/start/botanist, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bbh" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bbi" = ( +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"bbj" = ( +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"bbk" = ( +/obj/effect/turf_decal/caution, +/turf/open/floor/plasteel/freezer, +/area/edina) +"bbl" = ( +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"bbm" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/edina/backstreet) +"bbn" = ( +/obj/structure/cable/yellow, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/morgue"; + name = "Chapel Morgue APC"; + pixel_y = -26 + }, +/obj/item/extinguisher, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"bbo" = ( +/obj/structure/bodycontainer/crematorium{ + dir = 1 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/medical/morgue{ + name = "Chapel Morgue" + }) +"bbp" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"bbq" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible/hotelwood, +/area/service/chapel/office) +"bbr" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/main) +"bbs" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/asteroid{ + name = "Chapel Dining Room" + }) +"bbt" = ( +/obj/structure/table/wood/fancy/green, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/asteroid{ + name = "Chapel Dining Room" + }) +"bbu" = ( +/obj/structure/table/wood/fancy/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/asteroid{ + name = "Chapel Dining Room" + }) +"bbv" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/festive/street/streetliftedtile2, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bbw" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWE, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbx" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bby" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/turf/closed/wall/mineral/wood, +/area/command/heads_quarters/rd/private) +"bbz" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ + dir = 4 + }, +/turf/closed/wall/mineral/wood, +/area/command/heads_quarters/rd/private) +"bbA" = ( +/turf/closed/wall/mineral/wood, +/area/command/heads_quarters/rd/private) +"bbB" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/storage) +"bbC" = ( +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/item/circuitboard/aicore, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"bbD" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/turf/open/floor/plasteel, +/area/science/circuit) +"bbE" = ( +/obj/structure/table/reinforced, +/obj/item/multitool, +/obj/item/screwdriver, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bbF" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_circuit_printer, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bbG" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bbH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"bbI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"bbJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/circuit) +"bbK" = ( +/obj/structure/table/reinforced, +/obj/item/retractor, +/obj/item/hemostat, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bbL" = ( +/obj/structure/table/reinforced, +/obj/item/cautery, +/obj/item/surgical_drapes, +/obj/item/clothing/gloves/color/latex, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bbM" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bbN" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bbO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access_txt = "30" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bbP" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"bbQ" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/crowbar/red, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bbR" = ( +/turf/closed/festive/whitebrick, +/area/medical/surgery) +"bbY" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/edina/crew_quarters/store/pet) +"bcb" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window, +/obj/structure/sign/poster/official/cohiba_robusto_ad{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/floor/grass, +/area/edina/crew_quarters/store/pet) +"bcc" = ( +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/turf/open/floor/carpet/monochrome, +/area/commons/storage/tools) +"bcd" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/carpet/monochrome, +/area/commons/storage/tools) +"bce" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/turf/open/floor/carpet/monochrome, +/area/commons/storage/tools) +"bcf" = ( +/obj/structure/closet/secure_closet/bar, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/cups, +/obj/item/gun/ballistic/revolver/doublebarrel, +/turf/open/floor/carpet/monochrome, +/area/commons/storage/tools) +"bci" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bcj" = ( +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bck" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bcl" = ( +/obj/item/wrench, +/obj/item/wirecutters, +/obj/item/hand_labeler, +/obj/item/hand_labeler_refill, +/obj/item/hand_labeler_refill, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/wrapping_paper, +/obj/structure/closet/crate/hydroponics, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bcm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/secondary/command) +"bcn" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"bco" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bcp" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bcq" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bcr" = ( +/obj/effect/festive/street/sidewalks, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bcs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bct" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bcu" = ( +/turf/closed/festive/whitebrick{ + color = "#ff9b8a" + }, +/area/edina) +"bcv" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Pet Store" + }, +/turf/open/floor/carpet/royalblue, +/area/edina) +"bcw" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bcx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"bcy" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"bcz" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Pet Store" + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/carpet/royalblue, +/area/edina) +"bcA" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/carpet/royalblue, +/area/edina/crew_quarters/store/clothes) +"bcB" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/clothes) +"bcC" = ( +/obj/structure/fireplace{ + dir = 8; + pixel_x = -24; + pixel_y = 26 + }, +/obj/structure/chair/comfy/black, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bcD" = ( +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bcE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bcG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bcH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bcI" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bcJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bcK" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/service/chapel/asteroid"; + dir = 8; + name = "Chapel Dining Room APC"; + pixel_x = -26 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/asteroid{ + name = "Chapel Dining Room" + }) +"bcL" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/asteroid{ + name = "Chapel Dining Room" + }) +"bcM" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/asteroid{ + name = "Chapel Dining Room" + }) +"bcN" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bcO" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "7" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bcP" = ( +/obj/structure/closet/secure_closet/RD, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/obj/item/clothing/suit/hooded/wintercoat/rd, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/ears/earmuffs, +/obj/item/key/RD, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/wood, +/area/command/heads_quarters/rd/private) +"bcQ" = ( +/obj/machinery/camera{ + c_tag = "Science - Port"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd/private) +"bcR" = ( +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd/private) +"bcS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bcT" = ( +/obj/structure/dresser, +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/turf/open/floor/holofloor/wood, +/area/command/heads_quarters/rd/private) +"bcU" = ( +/turf/closed/festive/whitebrick, +/area/command/heads_quarters/rd/private) +"bcV" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/closed/festive/whitebrick, +/area/command/heads_quarters/rd) +"bcW" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + dir = 4; + name = "Research Monitor"; + network = list("rd"); + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bcX" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/analyzer, +/obj/item/integrated_electronics/debugger, +/obj/item/integrated_electronics/wirer, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bcY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"bcZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/circuit) +"bda" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bdb" = ( +/obj/machinery/camera{ + c_tag = "Server Room"; + network = list("ss13","rd"); + pixel_x = 22 + }, +/obj/machinery/power/apc{ + areastring = "/area/science/server"; + dir = 1; + name = "Server Room APC"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bdc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bdd" = ( +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bde" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "robotics2" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bdf" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/item/clothing/head/welding, +/obj/item/clothing/glasses/welding, +/obj/item/multitool, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bdg" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bdh" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bdi" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"bdj" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bdk" = ( +/obj/effect/landmark/start/roboticist, +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bdl" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bdq" = ( +/turf/closed/festive/whitebrick, +/area/medical/exam_room) +"bds" = ( +/obj/structure/table/wood, +/obj/item/sord, +/turf/open/floor/plasteel/dark, +/area/edina/crew_quarters/store/pet) +"bdt" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/edina/crew_quarters/store/pet) +"bdu" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/pet) +"bdv" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet/monochrome, +/area/commons/storage/tools) +"bdw" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bdx" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bdy" = ( +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bdz" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/commons/storage/tools) +"bdA" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bdD" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/storage/tools) +"bdE" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bdF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/secondary/command) +"bdG" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"bdH" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = 20 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/north) +"bdI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"bdJ" = ( +/obj/effect/festive/street/streetlinewest, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"bdK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/north) +"bdL" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bdM" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bdN" = ( +/obj/structure/window/reinforced, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bdO" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/research) +"bdP" = ( +/obj/structure/fireplace{ + dir = 8; + pixel_x = -24; + pixel_y = 26 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bdQ" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bdR" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bdS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bdT" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16; + pixel_y = 16 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bdU" = ( +/obj/effect/festive/street/sidewalkw, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"bdV" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bdW" = ( +/obj/structure/table/wood/fancy/green, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bdX" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/service/chapel/dock"; + dir = 8; + name = "Chapel Hall APC"; + pixel_y = 24 + }, +/turf/open/indestructible{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bdY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/indestructible{ + dir = 4; + icon_state = "chapel" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bdZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/indestructible{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bea" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible{ + dir = 4; + icon_state = "chapel" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"beb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bec" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bed" = ( +/turf/open/indestructible{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bee" = ( +/turf/open/indestructible{ + dir = 4; + icon_state = "chapel" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bef" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"beg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/asteroid{ + name = "Chapel Dining Room" + }) +"beh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/asteroid{ + name = "Chapel Dining Room" + }) +"bei" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bej" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bek" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bel" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bem" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"ben" = ( +/obj/item/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/assembly/prox_sensor{ + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"beo" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bep" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/analyzer, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"beq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/wood, +/area/command/heads_quarters/rd/private) +"ber" = ( +/obj/effect/landmark/start/research_director, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd/private) +"bes" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/holofloor/wood, +/area/command/heads_quarters/rd/private) +"bet" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"beu" = ( +/obj/machinery/button/door{ + id = "rdgarage"; + name = "Director's Garage Door"; + pixel_x = -7; + pixel_y = 26; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"bev" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bew" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"bex" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bey" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"bez" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"beA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"beB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"beC" = ( +/obj/effect/festive/street/sidewalke, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"beD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/north) +"beE" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/castle) +"beF" = ( +/obj/structure/fence/corner{ + dir = 10 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/primary/progress) +"beG" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"beH" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags, +/obj/item/pen/fountain, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"beI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Break Room"; + req_access_txt = "47" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/science/research) +"beJ" = ( +/obj/machinery/conveyor{ + dir = 8; + name = "robotics2" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"beK" = ( +/obj/machinery/conveyor{ + dir = 8; + name = "robotics2" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"beL" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"beM" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/robotics/mechbay) +"beR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/edina/crew_quarters/store/pet) +"beT" = ( +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"beU" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/edina/crew_quarters/store/pet) +"beV" = ( +/turf/closed/festive/whitebrick, +/area/edina/crew_quarters/store/pet) +"beW" = ( +/turf/open/floor/wood, +/area/edina/crew_quarters/store/pet) +"beX" = ( +/turf/open/floor/carpet/monochrome, +/area/commons/storage/tools) +"beY" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bfa" = ( +/turf/closed/festive/redbrick, +/area/commons/storage/tools) +"bfb" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Tool Shoppe" + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bfc" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bfd" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bfe" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"bff" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bfg" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/security) +"bfh" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/security) +"bfi" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"bfj" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bfk" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/sidewalke, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bfl" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bfm" = ( +/turf/closed/festive/whitebrick, +/area/medical/medbay/lobby) +"bfn" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bfo" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bfp" = ( +/obj/structure/table/wood/fancy/green, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/main) +"bfq" = ( +/turf/open/indestructible{ + dir = 8; + icon_state = "chapel" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bfr" = ( +/turf/open/indestructible{ + icon_state = "chapel" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bfs" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bft" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/turf/open/indestructible{ + dir = 8; + icon_state = "chapel" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bfu" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bfv" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/carpet/royalblue, +/area/service/cafeteria) +"bfw" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/castle) +"bfx" = ( +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bfy" = ( +/turf/closed/wall/mineral/iron, +/area/service/chapel/main) +"bfz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/public/glass, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bfA" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/service/chapel/main) +"bfB" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bfC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bfD" = ( +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/neck/scarf/purple, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/head/beret/sci, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bfE" = ( +/obj/machinery/vending/wardrobe/science_wardrobe, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bfF" = ( +/obj/item/assembly/signaler{ + pixel_y = 8 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bfG" = ( +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = -30; + receive_ore_updates = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bfH" = ( +/obj/item/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/assembly/timer, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bfI" = ( +/obj/structure/tank_dispenser, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bfJ" = ( +/obj/machinery/suit_storage_unit/rd, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd/private) +"bfL" = ( +/obj/machinery/button/door{ + id = "idquarters"; + name = "Privacy Control"; + pixel_x = -26; + pixel_y = -26; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd/private) +"bfM" = ( +/obj/machinery/modular_computer/console/preset/research{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd/private) +"bfN" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd/private) +"bfO" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/holofloor/wood, +/area/command/heads_quarters/rd/private) +"bfP" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/command/heads_quarters/rd/private) +"bfQ" = ( +/obj/vehicle/sealed/vectorcraft/RD, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"bfR" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"bfS" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research) +"bfT" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bfU" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/integrated_circuit_printer, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bfV" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bfW" = ( +/obj/machinery/light, +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bfX" = ( +/obj/structure/target_stake, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bfY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"bfZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/circuit) +"bga" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"bgb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"bgc" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bgd" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bge" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bgf" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bgg" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bgh" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bgi" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bgj" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bgk" = ( +/obj/structure/table, +/obj/item/storage/firstaid{ + empty = 1; + name = "first-aid kit (empty)" + }, +/obj/item/storage/firstaid{ + empty = 1; + name = "first-aid kit (empty)" + }, +/obj/item/storage/firstaid{ + empty = 1; + name = "first-aid kit (empty)" + }, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/clothing/head/beret/robo, +/obj/item/clothing/head/beret/robo, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bgl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bgm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bgn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bgo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bgp" = ( +/obj/effect/festive/street/streetlinewest, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/castle) +"bgq" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 15 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bgr" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bgs" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bgt" = ( +/obj/item/key, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/vehicle/sealed/vectorcraft/truck{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bgy" = ( +/obj/machinery/vr_sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/plasteel, +/area/edina/crew_quarters/store/pet) +"bgz" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/carpet/monochrome, +/area/commons/storage/tools) +"bgA" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/book/granter/action/drink_fling, +/obj/item/stack/spacecash/c100, +/turf/open/floor/carpet/monochrome, +/area/commons/storage/tools) +"bgB" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bgC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bgD" = ( +/obj/machinery/door/airlock/atmos{ + name = "Toxins Storage"; + req_access_txt = "24" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bgE" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bgF" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bgG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bgH" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bgI" = ( +/turf/closed/wall/mineral/wood, +/area/edina) +"bgJ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bgK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bgL" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bgM" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/turf/open/indestructible{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bgN" = ( +/obj/structure/table/wood/fancy/red, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bgO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bgP" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/castle) +"bgQ" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/castle) +"bgR" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/castle) +"bgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bgT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bgU" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bgV" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/secondary/castle) +"bgW" = ( +/obj/effect/festive/street/streetlinewest, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/castle) +"bgX" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bgY" = ( +/turf/open/floor/festive/cobblestone, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bgZ" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bha" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bhb" = ( +/obj/structure/table/wood/fancy/green, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bhc" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/table/wood/fancy/green, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bhd" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access"; + req_access_txt = "7" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bhe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "idquarters"; + name = "Director's Quarters Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd/private) +"bhf" = ( +/obj/machinery/door/poddoor/shutters{ + id = "rdgarage"; + name = "Director's Garage" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"bhg" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/turf/closed/festive/whitebrick, +/area/science/circuit) +"bhh" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/research) +"bhi" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 5 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/research) +"bhj" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/turf/closed/festive/whitebrick, +/area/science/robotics/lab) +"bhk" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bhl" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bhm" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"bhn" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ + dir = 1 + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"bho" = ( +/obj/machinery/button/door{ + id = "RL01"; + name = "Alley Door Control"; + pixel_y = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhp" = ( +/obj/effect/turf_decal/arrows, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bhq" = ( +/obj/item/key, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/vehicle/sealed/vectorcraft/truck{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bht" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = -5 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/castle) +"bhu" = ( +/obj/machinery/vr_sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/edina/crew_quarters/store/pet) +"bhx" = ( +/obj/machinery/computer/arcade/battle{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/edina/crew_quarters/store/pet) +"bhy" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/castle) +"bhz" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/castle) +"bhA" = ( +/obj/effect/festive/street/streetlinewest, +/obj/structure/disposalpipe/segment, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/castle) +"bhB" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/castle) +"bhC" = ( +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/castle) +"bhD" = ( +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/castle) +"bhG" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/festive/whitebrick, +/area/commons/storage/tools) +"bhI" = ( +/obj/machinery/door/airlock/titanium{ + name = "Service Office"; + req_one_access_txt = "25;26;28;35" + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/tools) +"bhK" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/commons/storage/tools) +"bhL" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWELeft, +/turf/closed/festive/redbrick, +/area/commons/storage/tools) +"bhM" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bhN" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/castle) +"bhO" = ( +/turf/closed/festive/greypanel/greypanelcornernw, +/area/commons/fitness/recreation) +"bhP" = ( +/turf/closed/festive/greypanel/greypanelns, +/area/commons/fitness/recreation) +"bhQ" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/storage/fancy/candle_box{ + pixel_y = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bhR" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/flashlight/lantern{ + pixel_y = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bhS" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/flashlight/lantern{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bhT" = ( +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bhU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bhV" = ( +/obj/structure/sign/departments/holy, +/turf/closed/wall/mineral/iron, +/area/service/chapel/main) +"bhW" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/research) +"bhX" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/research) +"bhY" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/research) +"bhZ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/research) +"bia" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 10 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/research) +"bib" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"bic" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/robotics/mechbay) +"bid" = ( +/obj/machinery/door/poddoor/shutters{ + id = "RL01"; + name = "Robotics Bay Alley Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bie" = ( +/obj/machinery/door/poddoor/shutters{ + id = "RL01"; + name = "Robotics Bay Alley Access" + }, +/obj/effect/turf_decal/caution, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bij" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/research) +"bik" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/research) +"bil" = ( +/turf/closed/festive/greypanel/greypanelcornerne, +/area/commons/fitness/recreation) +"bim" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/research) +"bio" = ( +/turf/closed/mineral/snowmountain, +/area/edina/crew_quarters/store/pet) +"bip" = ( +/turf/closed/festive/greybrick, +/area/edina/crew_quarters/store/pet) +"biq" = ( +/obj/machinery/vr_sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/edina/crew_quarters/store/pet) +"bir" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/edina/crew_quarters/store/pet) +"bis" = ( +/turf/open/floor/plasteel/dark, +/area/edina/crew_quarters/store/pet) +"bit" = ( +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/edina/crew_quarters/store/pet) +"biu" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/edina/crew_quarters/store/pet) +"biv" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plasteel/elevatorshaft, +/area/edina/crew_quarters/store/pet) +"biw" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/pet) +"bix" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/commons/storage/tools) +"biA" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/commons/storage/tools) +"biB" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16; + pixel_y = 10 + }, +/turf/open/floor/festive/alleyway, +/area/commons/storage/tools) +"biC" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"biD" = ( +/turf/closed/festive/redbrick/redbrickcornersw, +/area/commons/storage/tools) +"biE" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/research) +"biF" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/door/window/westleft, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"biG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"biH" = ( +/turf/closed/festive/greypanel/greypanelwe, +/area/commons/fitness/recreation) +"biI" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/nerdshirt, +/obj/item/clothing/glasses/prism_glasses, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"biJ" = ( +/obj/structure/table/wood, +/obj/item/slapper, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"biK" = ( +/obj/structure/table/wood, +/obj/item/clothing/shoes/kindleKicks, +/obj/structure/window/spawner/east, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"biL" = ( +/obj/machinery/vending/cola/pwr_game, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"biM" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"biN" = ( +/obj/structure/table/glass, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"biO" = ( +/turf/closed/indestructible/fakeglass, +/area/edina) +"biP" = ( +/obj/machinery/light/floor, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"biQ" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"biR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"biS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"biT" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/structure/window/spawner/east, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"biU" = ( +/obj/effect/festive/street/sidewalkw, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"biV" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"biW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"biX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"biY" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/main) +"biZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bja" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bjb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/chapel/main) +"bjc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/chapel/main) +"bjd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bje" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"bjf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bjg" = ( +/turf/closed/festive/whitebrick, +/area/commons/storage/tools) +"bjh" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/commons/storage/tools) +"bjj" = ( +/turf/open/floor/festive/alleyway, +/area/commons/storage/tools) +"bjk" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/structure/window/spawner/west, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"bjl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"bjm" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"bjn" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bjo" = ( +/obj/effect/festive/street/sidewalke, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bjp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"bjq" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"bjr" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"bjs" = ( +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"bjt" = ( +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"bju" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"bjv" = ( +/obj/structure/table/glass, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"bjw" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/structure/window/spawner/east, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"bjx" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/structure/window/spawner/west, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"bjy" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"bjz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/carpet/royalblue, +/area/service/cafeteria) +"bjA" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bjB" = ( +/obj/effect/landmark/start/chaplain, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bjC" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/storage/book/bible{ + pixel_y = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bjD" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bjE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/floor, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bjF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bjG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bjH" = ( +/obj/structure/mineral_door/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/main) +"bjI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bjJ" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bjK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/floor, +/turf/open/floor/carpet/green, +/area/service/chapel/main) +"bjL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/green, +/area/service/chapel/main) +"bjM" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/xmastree, +/turf/open/floor/carpet/green, +/area/service/chapel/main) +"bjN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/festive/sidewalk, +/area/security) +"bjO" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bjP" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bjQ" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bjR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"bjS" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"bjT" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bjU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessprogress) +"bjV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bjW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bjX" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"bjY" = ( +/turf/closed/festive/greybrick, +/area/commons/fitness/recreation) +"bjZ" = ( +/turf/closed/festive/whitebrick{ + color = "#c1ff91" + }, +/area/medical/virology) +"bka" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bkb" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"bkc" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessservitor) +"bkd" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessservitor) +"bke" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessservitor) +"bkf" = ( +/obj/structure/table/wood, +/obj/item/sord, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"bkg" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/arcade, +/area/commons/fitness/recreation) +"bkh" = ( +/obj/machinery/vr_sleeper, +/obj/structure/window/spawner/west, +/turf/open/floor/plasteel/vaporwave, +/area/commons/fitness/recreation) +"bki" = ( +/obj/machinery/vr_sleeper, +/turf/open/floor/plasteel/vaporwave, +/area/commons/fitness/recreation) +"bkj" = ( +/obj/machinery/vr_sleeper, +/obj/structure/window/spawner/east, +/turf/open/floor/plasteel/vaporwave, +/area/commons/fitness/recreation) +"bkk" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plasteel/elevatorshaft, +/area/commons/fitness/recreation) +"bkl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bkm" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"bkn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"bko" = ( +/turf/open/floor/plasteel/vaporwave, +/area/commons/fitness/recreation) +"bkp" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"bkq" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bkr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bks" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bkt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bku" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bkv" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bkw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bkx" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/main) +"bky" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bkz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bkA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/chapel/main) +"bkB" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"bkC" = ( +/obj/machinery/camera{ + c_tag = "Holodeck" + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bkD" = ( +/obj/machinery/vr_sleeper{ + dir = 1 + }, +/obj/structure/window/spawner/west, +/turf/open/floor/plasteel/vaporwave, +/area/commons/fitness/recreation) +"bkE" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"bkF" = ( +/turf/closed/festive/whitebrick{ + color = "#5496ff" + }, +/area/medical/genetics) +"bkG" = ( +/turf/closed/festive/whitebrick/whitebrickns{ + color = "#5496ff" + }, +/area/medical/genetics) +"bkH" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bkI" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bkJ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bkK" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bkL" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bkM" = ( +/obj/structure/grille, +/obj/effect/spawner/structure/window, +/turf/open/floor/grass, +/area/medical/genetics) +"bkN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/grass, +/area/medical/virology) +"bkO" = ( +/obj/structure/table/glass, +/obj/item/pen/red, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bkP" = ( +/obj/item/bedsheet/medical, +/obj/structure/bed, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bkQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bkR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/donkpockets, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bkS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bkT" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Virology Lab"; + name = "Virology RC"; + pixel_y = 32; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bkU" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bkV" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Virology APC"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bkW" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 24 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bkX" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"bkY" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bkZ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bla" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"blb" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/doorButtons/access_button{ + dir = 1; + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 24; + pixel_y = -8; + req_access_txt = "39" + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"blc" = ( +/obj/structure/sink, +/turf/closed/festive/whitebrick{ + color = "#c1ff91" + }, +/area/medical/virology) +"bld" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/doorButtons/access_button{ + dir = 1; + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = -8; + req_access_txt = "39" + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/landmark/start/virologist, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"ble" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"blf" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"blg" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"blh" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bli" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/cmo) +"blj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + id = "CMOgarage"; + name = "CMO's Garage" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"blk" = ( +/obj/machinery/vr_sleeper{ + dir = 1 + }, +/turf/open/floor/plasteel/vaporwave, +/area/commons/fitness/recreation) +"bll" = ( +/obj/machinery/vr_sleeper{ + dir = 1 + }, +/obj/structure/window/spawner/east, +/turf/open/floor/plasteel/vaporwave, +/area/commons/fitness/recreation) +"blm" = ( +/obj/structure/window/spawner/north, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"bln" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/commons/fitness/recreation) +"blo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness/recreation) +"blp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness/recreation) +"blq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness/recreation) +"blr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/commons/fitness/recreation) +"bls" = ( +/obj/machinery/vending/snack/teal, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"blt" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"blu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"blv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/recreation) +"blw" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/computer/arcade/orion_trail{ + dir = 1 + }, +/obj/structure/sign/poster/official/nanomichi_ad{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"blx" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/computer/arcade/battle{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bly" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"blz" = ( +/obj/structure/table/wood/fancy/red, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"blA" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/flashlight/lantern{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"blB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"blC" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"blD" = ( +/turf/closed/festive/whitebrick/whitebrickwe{ + color = "#5496ff" + }, +/area/medical/genetics) +"blE" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen/fountain, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"blF" = ( +/obj/machinery/computer/scan_consolenew, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"blG" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"blH" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"blI" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/genetics"; + dir = 1; + name = "Genetics APC"; + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/item/clothing/suit/hooded/wintercoat/genetics, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"blJ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"blK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"blL" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/sparsegrass, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"blM" = ( +/obj/structure/flora/grass/jungle, +/obj/item/reagent_containers/food/snacks/grown/banana, +/turf/open/floor/grass, +/area/medical/genetics) +"blN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"blO" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/junglebush, +/obj/structure/flora/junglebush/large, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"blP" = ( +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/medical/virology) +"blQ" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/grass, +/area/medical/virology) +"blR" = ( +/obj/structure/flora/grass/jungle, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"blS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"blT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"blU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"blV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"blW" = ( +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"blX" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"blY" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"blZ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bma" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bmb" = ( +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_interior"; + name = "Virology Interior Airlock"; + req_access_txt = "39" + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bmc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 16; + pixel_y = -22; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bmd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bme" = ( +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_exterior"; + name = "Virology Exterior Airlock"; + req_access_txt = "39" + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bmf" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bmg" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/landmark/start/virologist, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bmh" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bmi" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bmj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"bmk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "CMOgarage"; + name = "CMO's Garage Door"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"bml" = ( +/obj/structure/closet/crate/wooden, +/obj/item/stack/sheet/mineral/wood/fifty, +/turf/open/floor/festive/wooden/wooden2, +/area/command/heads_quarters/cmo) +"bmm" = ( +/obj/item/radio/intercom{ + pixel_y = 26 + }, +/obj/structure/closet/secure_closet/CMO, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/head/beret/cmo/blue, +/obj/item/clothing/suit/hooded/wintercoat/cmo, +/obj/item/key/CMO, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/festive/wooden/wooden2, +/area/command/heads_quarters/cmo) +"bmn" = ( +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/cmo) +"bmo" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/cmo) +"bmp" = ( +/obj/item/flashlight/lamp/green, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/tea/catnip, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/cmo) +"bmq" = ( +/turf/closed/wall/mineral/wood, +/area/command/heads_quarters/cmo) +"bmu" = ( +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/edina) +"bmv" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/service/abandoned_gambling_den/secondary{ + name = "Arcade" + }) +"bmw" = ( +/turf/closed/festive/creambrick, +/area/edina/crew_quarters/store/clothes) +"bmx" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/computer/arcade/battle{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bmy" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/computer/arcade/orion_trail{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/pwr_game{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bmz" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/recreation) +"bmA" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Clothes and coats" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bmB" = ( +/turf/closed/festive/greybrick/greybrickte, +/area/commons/fitness/recreation) +"bmC" = ( +/obj/machinery/door/airlock/wood, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bmD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/elevatorshaft, +/area/commons/fitness/recreation) +"bmE" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Clothes and coats" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bmF" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bmG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bmH" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/perimeter) +"bmI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bmJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bmK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bmL" = ( +/obj/machinery/light/small, +/obj/machinery/power/apc{ + areastring = "/area/service/chapel/main"; + dir = 8; + name = "Chapel APC"; + pixel_y = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bmM" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bmN" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"bmO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"bmP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bmQ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bmR" = ( +/obj/structure/table, +/obj/item/storage/box/disks, +/obj/item/flashlight/pen, +/obj/item/flashlight/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bmS" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bmT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bmU" = ( +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bmV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bmW" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ppflowers, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/machinery/camera{ + c_tag = "Genetics Monkey Pen Fore"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"bmX" = ( +/obj/structure/sink/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 6 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"bmY" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"bmZ" = ( +/obj/structure/flora/junglebush/c, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"bna" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/medical/virology) +"bnb" = ( +/obj/item/reagent_containers/food/snacks/grown/banana, +/turf/open/floor/grass, +/area/medical/virology) +"bnc" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bnd" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bne" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bnf" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/festive/whitebrick{ + color = "#c1ff91" + }, +/area/medical/virology) +"bng" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bnh" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/table/wood, +/obj/item/clothing/head/beret/viro, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bni" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bnj" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"bnk" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bnl" = ( +/obj/effect/turf_decal/tile/green, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bnm" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bnn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bno" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bnp" = ( +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bnq" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bnr" = ( +/obj/vehicle/sealed/vectorcraft/CMO{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"bns" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"bnt" = ( +/turf/open/floor/festive/wooden/wooden2, +/area/command/heads_quarters/cmo) +"bnu" = ( +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/cmo) +"bnv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"bnw" = ( +/turf/closed/festive/greybrick/greybrickcornernw, +/area/service/abandoned_gambling_den/secondary{ + name = "Arcade" + }) +"bnB" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSLeftEnd, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bnC" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/backstreet) +"bnD" = ( +/obj/structure/chair/sofa/corner{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bnE" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bnF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bnG" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bnH" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bnI" = ( +/obj/structure/window/reinforced{ + name = "Exam Room 4"; + pixel_y = -4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bnJ" = ( +/turf/closed/festive/whitebrick, +/area/medical/cryo) +"bnK" = ( +/obj/structure/window/reinforced{ + name = "Exam Room 4"; + pixel_y = -4 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bnL" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/edina) +"bnM" = ( +/obj/structure/mirror{ + pixel_y = 30 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/edina/crew_quarters/store/clothes) +"bnN" = ( +/obj/structure/fireplace, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bnO" = ( +/obj/structure/closet/crate/wooden, +/obj/item/stack/sheet/mineral/wood/fifty, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bnP" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bnQ" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bnR" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bnS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/clothes) +"bnT" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/random, +/obj/item/clothing/under/color/random, +/obj/item/clothing/under/color/random, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bnU" = ( +/obj/structure/window/fulltile, +/obj/effect/decal/festive/holly, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bnV" = ( +/obj/effect/festive/street/streetlinenw, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bnW" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bnX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bnY" = ( +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/miningdock) +"bnZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/public/glass, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main) +"boa" = ( +/obj/effect/festive/street/sidewalkw, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bob" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"boc" = ( +/obj/effect/festive/street/sidewalkwem, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bod" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWEMiddle, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"boe" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bof" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bog" = ( +/obj/machinery/door/window/eastleft{ + name = "Monkey Pen"; + req_one_access_txt = "9" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"boh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"boi" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/grass/jungle/b, +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/medical/genetics) +"boj" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/grass, +/area/medical/genetics) +"bok" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"bol" = ( +/obj/effect/festive/street/sidewalkn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bom" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Tool Shoppe" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bon" = ( +/obj/effect/festive/street/sidewalke, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"boo" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/storage/primary"; + dir = 8; + name = "Primary Tool Storage APC"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bop" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"boq" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/progcastaux) +"bor" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bos" = ( +/obj/structure/flora/grass/jungle/b, +/obj/machinery/camera{ + c_tag = "Genetics Monkey Pen Aft"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/item/reagent_containers/food/snacks/grown/banana, +/turf/open/floor/grass, +/area/medical/virology) +"bot" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/mob/living/carbon/monkey, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"bou" = ( +/obj/structure/sink/puddle, +/turf/open/floor/grass, +/area/medical/virology) +"bov" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastleft{ + name = "Monkey Pen"; + req_one_access_txt = "9" + }, +/obj/structure/flora/grass/jungle, +/turf/open/floor/grass, +/area/medical/virology) +"bow" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"box" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"boy" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"boz" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"boA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"boB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"boC" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"boD" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/closed/festive/whitebrick{ + color = "#c1ff91" + }, +/area/medical/virology) +"boE" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"boF" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"boG" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"boH" = ( +/obj/structure/fireplace{ + dir = 4; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/command/heads_quarters/cmo) +"boI" = ( +/obj/structure/bed/dogbed/runtime, +/obj/item/toy/plush/random, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/cmo) +"boM" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"boN" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"boO" = ( +/turf/open/floor/carpet/royalblue, +/area/edina) +"boQ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/carpet/royalblue, +/area/edina) +"boR" = ( +/turf/open/floor/festive/wooden/wooden2, +/area/edina/crew_quarters/store/clothes) +"boS" = ( +/obj/structure/curtain{ + color = "#FF5555" + }, +/turf/open/floor/festive/wooden/wooden2, +/area/edina/crew_quarters/store/clothes) +"boT" = ( +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"boV" = ( +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/qm) +"boW" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"boX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"boY" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/storage/toolbox/emergency, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"boZ" = ( +/obj/machinery/firealarm{ + pixel_y = 30 + }, +/obj/structure/ore_box, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bpa" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -5; + pixel_y = 27 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bpb" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bpc" = ( +/obj/structure/closet/crate, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/item/radio/intercom{ + desc = "Talk smack through this."; + pixel_y = 28; + syndie = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bpd" = ( +/obj/machinery/power/apc{ + areastring = "/area/cargo/miningoffice"; + dir = 1; + name = "Mining APC"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_y = 38 + }, +/obj/structure/closet/wardrobe/miner, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bpe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bpf" = ( +/obj/structure/musician/piano{ + icon_state = "piano" + }, +/obj/machinery/light/small, +/turf/open/indestructible{ + icon_state = "chapel" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bpg" = ( +/obj/machinery/door/airlock/wood, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bph" = ( +/turf/closed/wall/mineral/iron, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bpi" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bpj" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bpk" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/structure/chair/wood/wings, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bpl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bpm" = ( +/obj/machinery/door/airlock/wood, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bpn" = ( +/obj/machinery/computer/holodeck{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bpo" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/monkeycubes, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bpp" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bpq" = ( +/obj/machinery/vending/wardrobe/gene_wardrobe, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bpr" = ( +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bps" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bpt" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"bpu" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"bpv" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/grass, +/area/medical/genetics) +"bpw" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"bpx" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"bpy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/grass, +/area/medical/virology) +"bpz" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/virology) +"bpA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastleft{ + name = "Monkey Pen"; + req_one_access_txt = "9" + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/virology) +"bpB" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bpC" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bpD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bpE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bpF" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bpG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bpH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bpI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bpJ" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bpK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick{ + color = "#c1ff91" + }, +/area/medical/virology) +"bpL" = ( +/obj/structure/closet/cabinet{ + pixel_y = 15 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/medical/virology) +"bpM" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/medical/virology) +"bpN" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bpO" = ( +/obj/structure/fluff/lightpost/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bpP" = ( +/turf/open/floor/plasteel, +/area/medical/chemistry) +"bpQ" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bpR" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bpS" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bpT" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/fluff/lightpost/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bpU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bpV" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bpW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/cmo) +"bpX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/cmo) +"bpY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"bpZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/mineral/wood, +/area/command/heads_quarters/cmo) +"bqa" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/holofloor/wood, +/area/command/heads_quarters/cmo) +"bqb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/edina) +"bqf" = ( +/obj/structure/fireplace{ + dir = 8; + pixel_x = -24; + pixel_y = 26 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bqg" = ( +/obj/structure/fireplace{ + dir = 4; + pixel_x = -7; + pixel_y = 26 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bqh" = ( +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bqi" = ( +/obj/structure/table/glass, +/obj/item/clothing/neck/petcollar/choker, +/obj/item/clothing/neck/petcollar/choker, +/obj/item/clothing/neck/petcollar/choker, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"bqj" = ( +/turf/closed/festive/whitebrick{ + color = "#ff9b8a" + }, +/area/edina/crew_quarters/store/clothes) +"bqk" = ( +/obj/structure/table/glass, +/obj/item/clothing/neck/cloak/polychromic/polyce, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"bql" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bqm" = ( +/obj/structure/noticeboard{ + name = "Clothes and coats" + }, +/obj/item/clothing/suit/hooded/wintercoat/cosmic{ + anchored = 1; + name = "Clothes and Coats" + }, +/turf/closed/festive/creambrick, +/area/edina/crew_quarters/store/clothes) +"bqn" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bqo" = ( +/obj/machinery/door/airlock/wood, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bqp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bqq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"bqt" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"bqu" = ( +/turf/open/floor/plasteel/checker, +/area/edina/crew_quarters/store/plushies) +"bqv" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"bqw" = ( +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bqx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bqy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bqz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/computer/shuttle/mining{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bqA" = ( +/turf/closed/wall/mineral/iron, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bqB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bqC" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bqD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/dock{ + name = "Chapel Hall" + }) +"bqE" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bqF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 5 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bqG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/wood, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bqH" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bqI" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bqJ" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bqK" = ( +/obj/structure/table, +/obj/item/paper/fluff/holodeck/disclaimer, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bqL" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bqM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bqN" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Genetics"; + name = "Genetics Requests Console"; + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bqO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/closed/festive/whitebrick{ + color = "#5496ff" + }, +/area/medical/genetics) +"bqP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/festive/whitebrick{ + color = "#5496ff" + }, +/area/medical/genetics) +"bqQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bqR" = ( +/turf/closed/festive/whitebrick, +/area/medical/storage) +"bqS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bqT" = ( +/obj/structure/grille, +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"bqU" = ( +/obj/structure/grille, +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/grass, +/area/medical/genetics) +"bqV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/virology) +"bqW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/grass, +/area/medical/virology) +"bqX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/festive/whitebrick{ + color = "#c1ff91" + }, +/area/medical/virology) +"bqY" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bqZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bra" = ( +/obj/structure/chair/office/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"brb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"brc" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"brd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bre" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/green, +/area/medical/virology) +"brf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/green, +/area/medical/virology) +"brg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/green, +/area/medical/virology) +"brh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick{ + color = "#c1ff91" + }, +/area/medical/virology) +"bri" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"brj" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"brk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick/whitebrickcornernw, +/area/medical/medbay/lobby) +"brl" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"brm" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"brn" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bro" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick, +/area/medical/medbay/lobby) +"brp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick, +/area/medical/medbay/lobby) +"brq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/festive/whitebrick, +/area/medical/medbay/lobby) +"brr" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick, +/area/medical/medbay/lobby) +"brs" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"brt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/noticeboard/cmo, +/turf/closed/festive/bluebrick, +/area/command/heads_quarters/cmo) +"bru" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/storage/secure/briefcase, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/west, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"brv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"brw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/fireplace{ + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"brx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"bry" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer's RC"; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"brz" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/cartridge/medical{ + pixel_x = -3 + }, +/obj/item/cartridge/medical{ + pixel_x = 3 + }, +/obj/item/cartridge/chemistry{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"brA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/bed/dogbed/runtime, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"brB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/wall/mineral/wood, +/area/command/heads_quarters/cmo) +"brC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick, +/area/edina) +"brH" = ( +/turf/closed/festive/greybrick, +/area/service/abandoned_gambling_den/secondary{ + name = "Arcade" + }) +"brI" = ( +/obj/machinery/door/airlock/silver/glass, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"brJ" = ( +/turf/open/floor/plasteel/checker, +/area/commons/dorms) +"brK" = ( +/obj/effect/festive/trainrails/north{ + icon_state = "trainrails_west" + }, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"brL" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"brM" = ( +/obj/effect/festive/trainrails/north{ + icon_state = "trainrails_east" + }, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"brN" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/checker, +/area/commons/dorms) +"brO" = ( +/obj/structure/mirror{ + pixel_y = 30 + }, +/obj/item/clothing/suit/ran, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/edina/crew_quarters/store/clothes) +"brP" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -36 + }, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"brR" = ( +/obj/structure/table/glass, +/obj/item/clothing/neck/scarf/purple, +/obj/item/clothing/neck/scarf/purple, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"brS" = ( +/turf/closed/festive/redbrick, +/area/edina/crew_quarters/store/clothes) +"brT" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Clothes and coats" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"brU" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"brV" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"brW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"brX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"brY" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"brZ" = ( +/obj/effect/festive/street/sidewalks, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"bsa" = ( +/turf/closed/festive/greypanel/greypanelcornersw, +/area/commons/fitness/recreation) +"bsb" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"bsc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bsd" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bse" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"bsf" = ( +/turf/closed/festive/redbrick, +/area/edina/crew_quarters/store/plushies) +"bsg" = ( +/obj/machinery/camera{ + c_tag = "Mining Office"; + dir = 8 + }, +/obj/machinery/mineral/equipment_vendor, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bsh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bsi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bsj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/miningdock) +"bsk" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/shoes/combat/coldres, +/obj/item/nullrod, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/chaplain/nun, +/obj/item/clothing/suit/chaplain/holidaypriest, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bsl" = ( +/obj/structure/dresser, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bsm" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/item/storage/firstaid, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bsn" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bso" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/primary/progress) +"bsp" = ( +/obj/machinery/light/small, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"bsq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bsr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bss" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 12 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bst" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/supply{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bsu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bsv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bsw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bsx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + max_integrity = 5000; + name = "hardened window"; + obj_integrity = 5000 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bsy" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bsz" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bsA" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bsB" = ( +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bsC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/festive/whitebrick{ + color = "#c1ff91" + }, +/area/medical/virology) +"bsD" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -32 + }, +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"bsE" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/medical/virology) +"bsF" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/item/book/manual/wiki/infections, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bsG" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/computer/pandemic, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bsH" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bsI" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bsJ" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/flashlight/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bsK" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/machinery/button/door{ + id = "detectivewindows"; + name = "Privacy Shutters"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bsL" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/closet/secure_closet/medical1, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bsM" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/closet/l3closet/virology, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bsN" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bsO" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick{ + color = "#c1ff91" + }, +/area/medical/virology) +"bsP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/medical/virology) +"bsQ" = ( +/obj/structure/table/wood, +/obj/item/toy/plush/dr_scanny, +/obj/item/flashlight/lamp/green, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/medical/virology) +"bsR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick{ + color = "#c1ff91" + }, +/area/medical/virology) +"bsS" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bsT" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bsU" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bsV" = ( +/obj/machinery/vending/coffee, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bsW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/decal/festive/green_stockings, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bsX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Break Room"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/flora/tree/pine/xmas, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bsY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bsZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/table/wood, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/ingredients/wildcard, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bta" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/vending/snack/random, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"btb" = ( +/obj/machinery/disposal/bin, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Port Fore"; + dir = 8; + network = list("minisat") + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"btc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/medical/medbay/lobby) +"btd" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bte" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/bluebrick/bluebrickwe, +/area/command/heads_quarters/cmo) +"btf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"btg" = ( +/turf/open/floor/plating/dirt, +/area/edina) +"bth" = ( +/obj/structure/streetdecor/lampfestive, +/turf/open/floor/festive/sidewalk, +/area/edina) +"bti" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/flashlight/pen, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"btj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"btk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"btl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"btm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"btn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/toy/cattoy, +/obj/machinery/computer/security/telescreen/cmo{ + dir = 8; + pixel_x = 30 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"bto" = ( +/turf/closed/festive/bluebrick, +/area/command/heads_quarters/cmo) +"btt" = ( +/obj/structure/closet/cabinet{ + pixel_y = 15 + }, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"btu" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_y = 8 + }, +/turf/open/floor/plasteel/checker, +/area/commons/dorms) +"btv" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"btw" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/checker, +/area/commons/dorms) +"btx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"bty" = ( +/mob/living/simple_animal/pet/penguin/baby, +/turf/open/floor/holofloor/ice, +/area/edina/crew_quarters/store/clothes) +"btz" = ( +/obj/structure/table/glass, +/obj/item/clothing/neck/scarf/pink, +/obj/item/clothing/neck/scarf/pink, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"btA" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"btB" = ( +/obj/structure/table/wood, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"btC" = ( +/obj/structure/chair/stool, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"btD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"btE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/sign/departments/botany{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"btF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"btG" = ( +/obj/effect/festive/street/streetlinene, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"btJ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"btK" = ( +/obj/structure/closet/secure_closet/miner, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"btL" = ( +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"btM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"btN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"btO" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/miningdock) +"btP" = ( +/turf/open/floor/plating, +/area/cargo/miningdock) +"btQ" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/miningdock) +"btR" = ( +/obj/structure/curtain, +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"btS" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"btT" = ( +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"btU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"btV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"btW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"btX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"btY" = ( +/obj/structure/chair/sofa/right, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/chaplain, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"btZ" = ( +/obj/structure/chair/sofa, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bua" = ( +/obj/structure/chair/sofa/left, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bub" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/service/chapel/main/monastery"; + dir = 1; + name = "Chaplain's Quarters APC"; + pixel_y = 24 + }, +/obj/structure/table/wood, +/obj/item/book/granter/spell/smoke/lesser{ + pixel_y = 2 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"buc" = ( +/obj/structure/bookcase/random/religion, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bud" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/item/soap/deluxe, +/turf/open/indestructible/hoteltile, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bue" = ( +/obj/structure/table/wood, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/service/chapel/asteroid/monastery"; + dir = 8; + name = "Chapel Kitchen APC"; + pixel_x = -26 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"buf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bug" = ( +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"buh" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Circuitry Lab"; + req_access_txt = "47" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"bui" = ( +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"buj" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"buk" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/item/storage/pill_bottle/mutadone, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bul" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bum" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bun" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"buo" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "geneticsdesk"; + name = "Genetics Desk Shutters" + }, +/obj/machinery/door/window/westright{ + dir = 4; + name = "Genetics Desk"; + req_access_txt = "9" + }, +/obj/machinery/door/window/westright{ + name = "Genetics Desk" + }, +/obj/item/folder/white, +/obj/item/pen/fountain, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bup" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"buq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bur" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bus" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"but" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"buu" = ( +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"buv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"buw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bux" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"buy" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"buz" = ( +/turf/closed/festive/whitebrick/whitebrickwe, +/area/medical/medbay/lobby) +"buA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + max_integrity = 5000; + name = "hardened window"; + obj_integrity = 5000 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"buB" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"buC" = ( +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"buD" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"buE" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"buF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"buG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"buH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/bluebrick, +/area/command/heads_quarters/cmo) +"buI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/edina) +"buL" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"buM" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/plasteel/checker, +/area/commons/dorms) +"buN" = ( +/obj/machinery/power/apc/auto_name/west, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"buO" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"buP" = ( +/obj/structure/festive/trainplatform/edge_north, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"buQ" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = -5 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"buR" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/item/clothing/gloves/mittens/random, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"buS" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"buT" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"buU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/clothes) +"buV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"buW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"buX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"buY" = ( +/obj/effect/landmark/start/cook, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"buZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bva" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"bvb" = ( +/obj/structure/closet/secure_closet/miner, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bvc" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bvd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bve" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bvf" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/storage/book/bible{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/radio{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvi" = ( +/obj/machinery/door/airlock/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvk" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvl" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvp" = ( +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvq" = ( +/obj/machinery/door/airlock/wood, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvr" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/indestructible/hoteltile, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bvs" = ( +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bvt" = ( +/obj/structure/table/wood, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bvu" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bvv" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + pixel_y = 8 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/service/chapel/asteroid/monastery{ + name = "Chapel Kitchen" + }) +"bvw" = ( +/obj/structure/table, +/obj/item/pen/fountain, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bvx" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bvy" = ( +/obj/machinery/dna_scannernew, +/obj/machinery/camera{ + c_tag = "Genetics"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bvz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bvA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + max_integrity = 5000; + name = "hardened window"; + obj_integrity = 5000 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bvB" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bvC" = ( +/obj/structure/fluff/lightpost/light, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bvD" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/fluff/lightpost/light, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bvE" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bvF" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bvG" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/decal/festive/fairylights, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bvH" = ( +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bvI" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bvJ" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bvK" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/folder/white, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bvL" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/clothing/head/beret/med, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bvM" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bvN" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bvO" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bvP" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"bvQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"bvR" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"bvS" = ( +/obj/structure/chair/wood/wings{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"bvT" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/item/clipboard, +/obj/item/toy/figure/cmo, +/obj/item/stamp/cmo, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"bvU" = ( +/turf/open/floor/festive/trainplatform, +/area/edina) +"bvV" = ( +/obj/effect/festive/street/streetlinewest, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bvW" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"bvX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"bvY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/computer/card/minor/cmo{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"bwb" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/edina/crew_quarters/store/clothes) +"bwc" = ( +/obj/machinery/door/airlock/silver/glass, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel/checker, +/area/commons/dorms) +"bwd" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5; + pixel_x = -4 + }, +/obj/item/storage/box/donkpockets, +/obj/item/reagent_containers/rag/towel, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bwe" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bwf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"bwg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"bwh" = ( +/obj/structure/rack, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bwi" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bwj" = ( +/obj/machinery/door/airlock/wood/glass, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/plushies) +"bwk" = ( +/turf/open/floor/festive/cobblestone, +/area/cargo/qm) +"bwl" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"bwn" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"bwo" = ( +/obj/structure/closet/secure_closet/miner, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bwp" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/requests_console{ + department = "Mining"; + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bwq" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/gauze, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bwr" = ( +/obj/structure/rack, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bws" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/computer/security/mining{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bwt" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bwu" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_y = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bwv" = ( +/turf/open/floor/carpet/green, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bww" = ( +/obj/machinery/light/small, +/turf/open/floor/carpet/green, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bwx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bwy" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/indestructible/hoteltile, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bwz" = ( +/obj/machinery/door/airlock/titanium{ + name = "Kitchen"; + req_one_access_txt = "25;26;28;35" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bwA" = ( +/turf/closed/festive/whitebrick/whitebrickcornersw{ + color = "#5496ff" + }, +/area/medical/genetics) +"bwB" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeft, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bwC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bwD" = ( +/turf/closed/wall/mineral/wood, +/area/medical/surgery) +"bwE" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/carpet/green, +/area/medical/surgery) +"bwF" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bwG" = ( +/obj/structure/sign/poster/official/help_others{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bwH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bwI" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bwJ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bwK" = ( +/obj/effect/festive/street/sidewalkn, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bwL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "cmoshutter"; + name = "CMO Office Shutters"; + pixel_x = 7; + pixel_y = -26; + req_access_txt = "40" + }, +/obj/machinery/light_switch{ + pixel_x = -7; + pixel_y = -26 + }, +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"bwM" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"bwN" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"bwO" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/machinery/computer/med_data/laptop{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"bwP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table/wood/fancy/royalblue, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/folder/white, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"bwT" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/royalblue, +/area/edina/crew_quarters/store/clothes) +"bwU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/royalblue, +/area/edina/crew_quarters/store/clothes) +"bwV" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"bwW" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/curtain, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"bwY" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/machinery/light, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bwZ" = ( +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/clothes) +"bxa" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bxb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bxc" = ( +/obj/machinery/door/airlock/freezer{ + name = "Freezer"; + req_one_access_txt = "25;26;28;35" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bxd" = ( +/obj/effect/festive/street/streetlinenw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bxf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"bxg" = ( +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"bxh" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/plushies) +"bxi" = ( +/obj/structure/closet/crate/wooden, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/effect/decal/festive/large_red_stocking, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/plushies) +"bxj" = ( +/turf/closed/festive/bluebrick, +/area/edina/crew_quarters/store/plushies) +"bxk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bxl" = ( +/obj/structure/fence, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bxm" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bxn" = ( +/obj/structure/chair/wood/normal, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/green, +/area/medical/surgery) +"bxo" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/green, +/area/medical/surgery) +"bxp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/green, +/area/medical/surgery) +"bxq" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bxr" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bxs" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"bxt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bxu" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/green, +/area/medical/surgery) +"bxv" = ( +/obj/machinery/door/airlock/medical{ + name = "Observation" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet/green, +/area/medical/surgery) +"bxw" = ( +/turf/closed/festive/whitebrick/whitebrickns, +/area/medical/exam_room) +"bxx" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/exam_room) +"bxy" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/exam_room) +"bxz" = ( +/turf/closed/festive/whitebrick/whitebrickcornerne, +/area/medical/exam_room) +"bxA" = ( +/turf/closed/festive/whitebrick/whitebrickcornernw, +/area/medical/medbay/lobby) +"bxB" = ( +/obj/effect/decal/festive/fairylights, +/turf/closed/festive/whitebrick, +/area/medical/medbay/lobby) +"bxC" = ( +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bxD" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bxE" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_y = -27 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_y = -27 + }, +/obj/structure/extinguisher_cabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/festive/whitebrick, +/area/medical/medbay/lobby) +"bxF" = ( +/turf/closed/festive/whitebrick/whitebrickns, +/area/medical/medbay/lobby) +"bxG" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bxH" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bxI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"bxJ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bxK" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/festive/whitebrick/whitebrickcornerse, +/area/medical/medbay/lobby) +"bxL" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bxM" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/fence/door/opened, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bxN" = ( +/turf/closed/festive/bluebrick/bluebrickcornersw, +/area/command/heads_quarters/cmo) +"bxO" = ( +/obj/structure/festive/trainplatform/edge_east, +/turf/open/floor/plating/dirt, +/area/edina) +"bxP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"bxQ" = ( +/obj/structure/sign/directions/medical{ + dir = 8 + }, +/turf/closed/festive/bluebrick/bluebrickcornerse, +/area/command/heads_quarters/cmo) +"bxR" = ( +/obj/structure/sign/departments/medbay, +/turf/closed/festive/whitebrick, +/area/edina) +"bxS" = ( +/obj/structure/window/reinforced{ + name = "Exam Room 4"; + pixel_y = -4 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bxT" = ( +/turf/closed/mineral/snowmountain, +/area/edina/crew_quarters/store/plushies) +"bxU" = ( +/obj/structure/window/reinforced{ + name = "Exam Room 4"; + pixel_y = -4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"bxV" = ( +/turf/open/floor/holofloor/ice, +/area/edina/crew_quarters/store/clothes) +"bxW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Tool Shoppe" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bxX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bxY" = ( +/obj/machinery/door/poddoor/shutters{ + id = "QMgarage"; + name = "QM's Garage" + }, +/turf/open/floor/festive/cobblestone, +/area/cargo/qm) +"bxZ" = ( +/obj/effect/festive/street/streetlinenw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bya" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"byb" = ( +/obj/effect/festive/street/streetlinene, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"byc" = ( +/obj/effect/festive/street/sidewalkn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"byd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bye" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"byf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet) +"byg" = ( +/obj/structure/fence, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"byh" = ( +/obj/structure/flora/tree/pine/xmas, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"byi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"byj" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"byk" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet/green, +/area/medical/surgery) +"byl" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/green, +/area/medical/surgery) +"bym" = ( +/turf/open/floor/carpet/green, +/area/medical/surgery) +"byn" = ( +/obj/machinery/sleeper, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/white/side, +/area/medical/exam_room) +"byo" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/progcastaux) +"byp" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"byq" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"byr" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bys" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"byt" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/progress) +"byu" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/progress) +"byv" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"byw" = ( +/obj/structure/dresser{ + pixel_y = 12 + }, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_y = 30 + }, +/turf/open/floor/carpet/red, +/area/edina/crew_quarters/store/clothes) +"byx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/pen/fountain, +/turf/open/floor/plasteel/white/side, +/area/medical/exam_room) +"byy" = ( +/obj/machinery/sleeper, +/turf/open/floor/plasteel/white/side, +/area/medical/exam_room) +"byz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Medbay - Aft Port"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/item/clipboard, +/obj/item/healthanalyzer, +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel/white/side, +/area/medical/exam_room) +"byA" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"byB" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"byC" = ( +/obj/structure/fence/door/opened, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"byD" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"byE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"byF" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"byG" = ( +/obj/structure/chair/wood/normal, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel/white/side, +/area/medical/exam_room) +"byH" = ( +/obj/machinery/vending/medical, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel/white/side, +/area/medical/exam_room) +"byI" = ( +/obj/structure/sign/departments/examroom, +/turf/closed/festive/whitebrick, +/area/medical/exam_room) +"byJ" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"byK" = ( +/obj/structure/bed, +/obj/effect/spawner/lootdrop/bedsheet, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/carpet/red, +/area/edina) +"byL" = ( +/obj/structure/table/wood/fancy/monochrome, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"byM" = ( +/obj/machinery/computer/med_data, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"byN" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"byO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"byP" = ( +/obj/machinery/vending/coffee, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/lobby) +"byQ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"byR" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"byS" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"byT" = ( +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/warehouse) +"byU" = ( +/turf/closed/festive/greybrick, +/area/service/electronic_marketing_den) +"byV" = ( +/turf/closed/festive/whitebrick/whitebrickcornernw{ + color = "#5496ff" + }, +/area/medical/genetics/cloning) +"byW" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"byX" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"byY" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeft, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"byZ" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Cloning"; + req_one_access_txt = "5;9" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bza" = ( +/turf/closed/festive/whitebrick{ + color = "#5496ff" + }, +/area/medical/genetics/cloning) +"bzb" = ( +/turf/closed/festive/whitebrick/whitebrickcornernw, +/area/medical/surgery) +"bzc" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plating, +/area/medical/surgery) +"bzd" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plating, +/area/medical/surgery) +"bze" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plating, +/area/medical/surgery) +"bzf" = ( +/turf/closed/festive/whitebrick/whitebrickns, +/area/medical/surgery) +"bzg" = ( +/obj/machinery/button/privacy{ + pixel_x = -25; + tar_name = "Exam Room 1" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bzh" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bzi" = ( +/obj/machinery/button/privacy{ + pixel_x = -25; + tar_name = "Exam Room 2" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bzj" = ( +/obj/machinery/iv_drip, +/obj/structure/bed/roller, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bzk" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bzl" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWEMiddle, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bzm" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bzn" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/britcup, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bzo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bzp" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/lobby) +"bzq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/progress) +"bzr" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/progress) +"bzs" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/primary/progress) +"bzt" = ( +/obj/structure/statue/snow/snowman, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/primary/progress) +"bzu" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bzv" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "secgate2"; + name = "Gate doors"; + pixel_y = 22 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bzw" = ( +/obj/effect/festive/street/streetlinewest, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bzx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bzy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bzz" = ( +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bzA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bzB" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bzC" = ( +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bzD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bzE" = ( +/obj/structure/closet/cardboard, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Cargo Warehouse" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bzF" = ( +/obj/item/cigbutt/cigarbutt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bzG" = ( +/turf/open/indestructible, +/area/cargo/warehouse) +"bzH" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/power/apc{ + areastring = "/area/cargo/warehouse"; + dir = 4; + name = "Cargo Warehouse APC"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bzI" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"bzJ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -33 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bzK" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bzL" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bzM" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bzN" = ( +/obj/machinery/computer/operating, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"bzO" = ( +/obj/structure/table, +/obj/item/hemostat, +/obj/item/surgicaldrill, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel/white/side, +/area/medical/surgery) +"bzP" = ( +/obj/structure/table, +/obj/item/cautery{ + pixel_x = 4 + }, +/obj/item/razor{ + pixel_y = 5 + }, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel/white/side, +/area/medical/surgery) +"bzQ" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/item/circular_saw, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel, +/area/medical/surgery) +"bzR" = ( +/obj/structure/closet, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bzS" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bzT" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bzU" = ( +/obj/machinery/vending/wallmed, +/turf/closed/festive/whitebrick, +/area/medical/exam_room) +"bzV" = ( +/obj/machinery/iv_drip, +/obj/structure/bed/roller, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bzW" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeft, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bzX" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/festive/holly, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bzY" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bzZ" = ( +/obj/machinery/door/airlock/command{ + name = "Research Director's Quarters"; + req_access_txt = "30" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/holofloor/wood, +/area/command/heads_quarters/rd/private) +"bAa" = ( +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bAb" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bAc" = ( +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bAd" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"bAe" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bAf" = ( +/obj/structure/closet/crate/freezer, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bAg" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bAh" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bAi" = ( +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bAj" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bAk" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"bAl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bAm" = ( +/obj/machinery/door/airlock/wood, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"bAn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"bAo" = ( +/obj/machinery/power/apc/auto_name/east, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"bAp" = ( +/obj/machinery/power/apc/auto_name/west, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bAq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bAr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bAs" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bAt" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/festive/whitebrick, +/area/medical/surgery) +"bAu" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/surgery) +"bAv" = ( +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bAw" = ( +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bAx" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/table, +/obj/item/surgical_drapes, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/item/book/manual/wiki/surgery, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/surgery) +"bAy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bAz" = ( +/obj/machinery/door/airlock/medical{ + name = "Surgery"; + req_access_txt = "45" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bAA" = ( +/obj/effect/festive/street/streetlinenm{ + pixel_y = 3 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#bae3ff" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bAB" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Surgery Theatre"; + req_access_txt = "45" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bAC" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 1; + icon_state = "right"; + name = "Exam Room 1"; + pixel_y = 4; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bAD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + name = "Exam Room 1"; + pixel_y = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bAE" = ( +/obj/structure/festive/trainplatform/edge_north, +/obj/structure/festive/trainplatform/edge_south, +/turf/open/floor/festive/stairs/stairswest, +/area/edina) +"bAF" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bAG" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 28 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bAH" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 1; + icon_state = "right"; + name = "Exam Room 2"; + pixel_y = 4; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bAI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + name = "Exam Room 2"; + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bAJ" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bAK" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bAL" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bAM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bAN" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bAO" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 3 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#bae3ff" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bAP" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bAQ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bAR" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/lobby) +"bAS" = ( +/obj/structure/sign/departments/medbay, +/turf/closed/festive/whitebrick, +/area/medical/medbay/lobby) +"bAT" = ( +/obj/effect/festive/street/streetlinesw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bAU" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bAV" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bAW" = ( +/obj/effect/festive/street/sidewalknsm, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bAX" = ( +/obj/machinery/door/poddoor/shutters{ + id = "cargocars"; + name = "Cargo Loading dock" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/festive/cobblestone, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bAY" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bAZ" = ( +/obj/effect/turf_decal/delivery, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bBa" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bBb" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bBc" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bBd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bBe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bBf" = ( +/obj/machinery/clonepod, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel, +/area/medical/genetics/cloning) +"bBg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bBh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bBi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bBj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + max_integrity = 5000; + name = "hardened window"; + obj_integrity = 5000 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bBk" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bBl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bBm" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/medical/surgery) +"bBn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bBo" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bBp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bBq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bBr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bBs" = ( +/obj/machinery/door/airlock/medical{ + name = "Surgery"; + req_access_txt = "45" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bBt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#bae3ff" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bBu" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Surgery Theatre"; + req_access_txt = "45" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bBv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bBw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bBx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bBy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bBz" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bBA" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#bae3ff" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bBB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick/whitebrickwe, +/area/medical/medbay/lobby) +"bBC" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Desk"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bBD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Captain's Office - Emergency Escape"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bBE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bBF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/decal/festive/mistletoe, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bBG" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bBH" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/festive/street/streetliftedtile2, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bBI" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bBJ" = ( +/obj/effect/festive/street/sidewalks, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bBK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"bBL" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/vehicle/sealed/vectorcraft/truck{ + dir = 8 + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bBM" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bBN" = ( +/obj/item/flashlight, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bBO" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bBP" = ( +/turf/closed/festive/whitebrick, +/area/hallway/secondary/service) +"bBQ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "civgarage" + }, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"bBR" = ( +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"bBS" = ( +/obj/vehicle/sealed/vectorcraft/cyber, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"bBT" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"bBU" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bBV" = ( +/obj/vehicle/sealed/vectorcraft, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"bBW" = ( +/obj/machinery/computer/cloning{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/medical/genetics/cloning) +"bBX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bBY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bBZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bCa" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Cloning"; + req_one_access_txt = "5;9" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bCb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 3 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#bae3ff" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bCc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 3 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#bae3ff" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bCd" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bCe" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bCf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bCg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bCh" = ( +/obj/machinery/door/window/eastleft{ + icon_state = "right"; + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/surgery) +"bCi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bCj" = ( +/obj/machinery/vending/wallmed, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick, +/area/medical/surgery) +"bCk" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 2 + }, +/obj/effect/festive/street/streetlineem{ + pixel_x = 3 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bCl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/white_alleyway{ + color = "#bae3ff" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bCm" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Surgery Theatre"; + req_access_txt = "45" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bCn" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 2; + icon_state = "right"; + name = "Exam Room 3"; + pixel_y = -4; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bCo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/window/reinforced{ + name = "Exam Room 3"; + pixel_y = -4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bCp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay Surgery"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bCq" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 2; + icon_state = "right"; + name = "Exam Room 4"; + pixel_y = -4; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bCr" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/window/reinforced{ + name = "Exam Room 4"; + pixel_y = -4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bCs" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bCt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bCu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bCv" = ( +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bCw" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bCx" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bCy" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/white_alleyway{ + color = "#bae3ff" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bCz" = ( +/obj/structure/extinguisher_cabinet, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick, +/area/medical/medbay/lobby) +"bCA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bCB" = ( +/obj/vehicle/ridden/wheelchair, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = 30 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bCC" = ( +/obj/vehicle/ridden/wheelchair, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bCD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bCE" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bCF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bCG" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bCH" = ( +/obj/effect/festive/street/streetlinesouth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bCI" = ( +/obj/effect/festive/street/sidewalks, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bCJ" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessprogress) +"bCK" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bCL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bCM" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bCN" = ( +/obj/effect/turf_decal/caution{ + dir = 8; + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor/festive/cobblestone, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bCO" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bCP" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bCQ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bCR" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bCS" = ( +/obj/vehicle/sealed/vectorcraft/truck{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"bCT" = ( +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"bCU" = ( +/obj/machinery/dna_scannernew, +/obj/machinery/camera{ + c_tag = "Genetics Cloning"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/machinery/airalarm/unlocked{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics/cloning) +"bCV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bCW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bCX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bCY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bCZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + max_integrity = 5000; + name = "hardened window"; + obj_integrity = 5000 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bDa" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 2 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bDb" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 2 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bDc" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"bDd" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"bDe" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Medbay Surgery"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/surgery"; + name = "Surgery APC"; + pixel_y = -26 + }, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"bDf" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"bDg" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/obj/structure/closet/crate/freezer/blood, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/medical/surgery) +"bDh" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"bDi" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/item/bedsheet/medical, +/obj/item/bedsheet/medical, +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bDj" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bDk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 2 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bDl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/medical/exam_room) +"bDm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bDn" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bDo" = ( +/obj/structure/closet/crate/wooden, +/obj/item/stack/sheet/mineral/wood/fifty, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bDp" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bDq" = ( +/obj/structure/extinguisher_cabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/medical/exam_room) +"bDr" = ( +/obj/machinery/iv_drip, +/obj/structure/bed/roller, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bDs" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bDt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bDu" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERight, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bDv" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#bae3ff" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bDw" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bDx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#bae3ff" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bDy" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bDz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bDA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bDB" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bDC" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bDD" = ( +/obj/structure/sign/departments/medbay, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/medical/medbay/lobby) +"bDE" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/arrows/white, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bDF" = ( +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/storage) +"bDG" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bDH" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bDI" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessprogress) +"bDJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessprogress) +"bDK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessprogress) +"bDL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessprogress) +"bDM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/machinery/requests_console{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bDN" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bDO" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bDP" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bDQ" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/commons/dorms) +"bDR" = ( +/obj/machinery/door/poddoor/shutters{ + id = "civgarage" + }, +/obj/machinery/door/poddoor/shutters{ + id = "civgarage" + }, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"bDS" = ( +/obj/machinery/button/door{ + id = "civgarage"; + name = "Engineering Garage Door"; + pixel_x = 28 + }, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"bDT" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/medical_cloning{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Brig Infirmary"; + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bDU" = ( +/obj/structure/table, +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/pen/fountain, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bDV" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bDW" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bDX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/festive/whitebrick{ + color = "#5496ff" + }, +/area/medical/genetics/cloning) +"bDY" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plasteel, +/area/medical/surgery) +"bDZ" = ( +/obj/machinery/button/privacy{ + pixel_x = -25; + tar_name = "Exam Room 3" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bEa" = ( +/obj/machinery/button/privacy{ + pixel_x = -25; + tar_name = "Exam Room 4" + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bEb" = ( +/obj/machinery/iv_drip, +/obj/structure/bed/roller, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/medbay/central"; + dir = 8; + name = "Medbay APC"; + pixel_x = -26 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bEc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bEd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bEe" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"bEf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#bae3ff" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bEg" = ( +/turf/open/floor/festive/white_alleyway{ + color = "#bae3ff" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bEh" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bEi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bEj" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bEk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bEl" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/lobby) +"bEm" = ( +/obj/effect/festive/street/sidewalkw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bEn" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bEo" = ( +/obj/machinery/button/door{ + id = "cargocars"; + name = "Garage door button" + }, +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bEp" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Loading Garage"; + req_one_access_txt = "31;48" + }, +/obj/machinery/door/firedoor, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bEq" = ( +/obj/structure/fence, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/supply) +"bEr" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bEs" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/indestructible, +/area/cargo/warehouse) +"bEt" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bEu" = ( +/obj/vehicle/sealed/vectorcraft/ambulance{ + dir = 1 + }, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"bEv" = ( +/obj/vehicle/sealed/vectorcraft/auto{ + dir = 1 + }, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"bEw" = ( +/obj/vehicle/sealed/vectorcraft/ambulance{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"bEx" = ( +/obj/vehicle/sealed/vectorcraft/truck{ + dir = 8 + }, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"bEy" = ( +/turf/closed/festive/whitebrick/whitebrickns{ + color = "#5496ff" + }, +/area/medical/genetics/cloning) +"bEz" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bEA" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Cloning"; + req_one_access_txt = "5;9" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"bEB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/festive/whitebrick{ + color = "#5496ff" + }, +/area/medical/genetics/cloning) +"bEC" = ( +/obj/machinery/sleeper{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/exam_room) +"bED" = ( +/obj/machinery/light, +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/pen/fountain, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/exam_room) +"bEE" = ( +/obj/machinery/bloodbankgen, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/exam_room) +"bEF" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/exam_room) +"bEG" = ( +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/exam_room) +"bEH" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 2 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bEI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 2 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bEJ" = ( +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bEK" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bEL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bEM" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bEN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bEO" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bEP" = ( +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bEQ" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/power/apc{ + areastring = "/area/medical/medbay/central"; + dir = 8; + name = "Medbay Reception APC"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/lobby) +"bER" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bES" = ( +/obj/effect/festive/street/sidewalke, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"bET" = ( +/obj/machinery/conveyor_switch{ + id = "cargocars" + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bEU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bEV" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bEW" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bEX" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bEY" = ( +/turf/closed/festive/greybrick, +/area/edina) +"bEZ" = ( +/turf/closed/festive/whitebrick/whitebrickcornerse, +/area/medical/exam_room) +"bFa" = ( +/turf/closed/festive/redbrick/redbrickte, +/area/medical/medbay/lobby) +"bFb" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSRightEnd, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bFc" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSLeftEnd, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bFd" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/festive/christmas_reef, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bFe" = ( +/obj/effect/festive/street/streetlinenw, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bFf" = ( +/obj/effect/festive/street/streetlinene, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bFg" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bFh" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bFi" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowdoornsend1, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bFj" = ( +/turf/closed/festive/redbrick/redbricktn, +/area/medical/medbay/lobby) +"bFk" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/festive/redbrick/redbrickcornerne, +/area/medical/medbay/lobby) +"bFl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessprogress) +"bFm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/evac{ + pixel_x = 32; + pixel_y = -40 + }, +/obj/structure/sign/directions/supply{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/sign/directions/medical{ + pixel_x = 32; + pixel_y = -24 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessprogress) +"bFn" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bFo" = ( +/obj/effect/festive/street/streetlineem, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bFp" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/sign/departments/botany{ + pixel_y = -32 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bFq" = ( +/obj/structure/fence, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/primary/progress) +"bFr" = ( +/obj/machinery/door/airlock{ + id_tag = "pubtoilet1"; + name = "Unisex Toilet" + }, +/turf/open/floor/mineral/titanium/blue, +/area/service/cafeteria/lunchroom) +"bFs" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bFt" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bFu" = ( +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bFv" = ( +/obj/structure/fluff/lightpost/light, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bFw" = ( +/turf/closed/festive/whitebrick/whitebrickns, +/area/medical/cryo) +"bFx" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bFy" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bFz" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bFA" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/festive/whitebrick/whitebrickns, +/area/medical/cryo) +"bFB" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bFC" = ( +/obj/structure/closet/secure_closet/brig{ + id = "medcell"; + name = "Medical Cell Locker" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bFD" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWERightEnd, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bFE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd/private) +"bFF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bFG" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/obj/machinery/camera{ + c_tag = "Holodeck" + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bFH" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bFI" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bFJ" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain{ + color = "#FF5555" + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bFK" = ( +/obj/structure/sign/departments/chemistry, +/turf/closed/wall/mineral/wood, +/area/medical/chemistry) +"bFL" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Pharmacy" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet/orange, +/area/medical/chemistry) +"bFM" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain{ + color = "#FF5555" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bFN" = ( +/turf/closed/festive/greybrick/greybrickcornernw, +/area/service/bar/atrium) +"bFO" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSRightEnd, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bFP" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSMiddle, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bFQ" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSLeftEnd, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bFR" = ( +/turf/closed/festive/greybrick/greybrickns, +/area/service/bar/atrium) +"bFS" = ( +/turf/closed/festive/greybrick, +/area/service/bar/atrium) +"bFT" = ( +/turf/closed/festive/greybrick/greybrickts, +/area/service/bar/atrium) +"bFU" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSRightEnd, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bFV" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSLeftEnd, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bFW" = ( +/turf/closed/festive/greybrick/greybrickns, +/area/service/cafeteria/lunchroom) +"bFX" = ( +/obj/item/reagent_containers/food/urinalcake, +/obj/structure/urinal{ + pixel_y = 25 + }, +/obj/machinery/light/small, +/turf/open/floor/mineral/titanium/blue, +/area/service/cafeteria/lunchroom) +"bFY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bFZ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bGa" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bGb" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"bGc" = ( +/turf/closed/festive/greybrick/greybrickts, +/area/commons/dorms) +"bGd" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSRightEnd, +/turf/open/floor/wood, +/area/commons/dorms) +"bGe" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSLeftEnd, +/turf/open/floor/wood, +/area/commons/dorms) +"bGf" = ( +/turf/closed/festive/greybrick/greybrickcornerne, +/area/commons/dorms) +"bGg" = ( +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/progress) +"bGh" = ( +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bGi" = ( +/obj/structure/table/reinforced, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bGj" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bGk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bGl" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bGm" = ( +/obj/machinery/conveyor{ + id = "garbage" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bGn" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bGo" = ( +/obj/machinery/button/door{ + id = "rdgarage"; + name = "Director's Garage Door"; + pixel_x = -7; + pixel_y = 26; + req_access_txt = "30" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bGp" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bGq" = ( +/obj/structure/festive/trainplatform/edge_west, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"bGr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/command/nuke_storage) +"bGs" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/command/nuke_storage) +"bGt" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/ai_monitored/command/nuke_storage) +"bGu" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/festive/street/streetlineem, +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/progress) +"bGv" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bGw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/closed/festive/redbrick, +/area/security/checkpoint/science) +"bGx" = ( +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/medical/morgue) +"bGy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/medical/morgue) +"bGz" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bGA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/medical/morgue) +"bGB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + max_integrity = 5000; + name = "hardened window"; + obj_integrity = 5000 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bGC" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bGD" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bGE" = ( +/obj/structure/festive/greybrick/windowWERightEnd, +/turf/open/floor/festive/trainplatform, +/area/edina) +"bGF" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/festive/trainplatform, +/area/edina) +"bGG" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/wrench/medical, +/obj/item/crowbar, +/obj/item/screwdriver, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bGH" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bGI" = ( +/obj/structure/table/glass, +/obj/machinery/camera{ + c_tag = "Medbay Cryogenics"; + network = list("ss13","medbay") + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Research Division Access" + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bGJ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bGK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bGL" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd/private) +"bGM" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "47" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bGN" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/vehicle/sealed/vectorcraft/auto, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bGO" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bGP" = ( +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bGQ" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bGR" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bGT" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWEMiddle, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bGU" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bGV" = ( +/obj/effect/decal/festive/fairylights, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bGW" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bGX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bGY" = ( +/turf/open/floor/carpet/orange, +/area/medical/chemistry) +"bGZ" = ( +/obj/structure/flora/tree/pine/xmas, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + name = "requests board"; + pixel_x = 32 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bHa" = ( +/obj/effect/decal/festive/holly, +/turf/closed/wall/mineral/wood, +/area/medical/chemistry) +"bHb" = ( +/obj/machinery/smartfridge/chemistry, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bHc" = ( +/obj/structure/closet/crate/wooden, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/item/toy/plush/catgirl/fermis, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bHd" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWERightEnd, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bHe" = ( +/obj/structure/chair/sofa/corner{ + dir = 4 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bHf" = ( +/obj/structure/chair/sofa, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bHg" = ( +/obj/structure/chair/sofa/corner, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bHh" = ( +/obj/structure/fireplace, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bHi" = ( +/obj/machinery/computer/arcade/battle{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bHj" = ( +/obj/structure/chair/sofa/corner{ + dir = 4 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"bHk" = ( +/obj/structure/chair/sofa, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"bHl" = ( +/obj/structure/chair/sofa/corner, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"bHm" = ( +/turf/open/floor/carpet/green, +/area/service/cafeteria/lunchroom) +"bHn" = ( +/obj/structure/fireplace, +/turf/open/floor/carpet/green, +/area/service/cafeteria/lunchroom) +"bHo" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/service/cafeteria/lunchroom) +"bHp" = ( +/obj/machinery/door/airlock{ + id_tag = "pubtoilet2"; + name = "Unisex Toilet" + }, +/turf/open/floor/mineral/titanium/blue, +/area/service/cafeteria/lunchroom) +"bHq" = ( +/obj/machinery/door/airlock{ + id_tag = "pubtoilet3"; + name = "Unisex Toilet" + }, +/turf/open/floor/mineral/titanium/blue, +/area/service/cafeteria/lunchroom) +"bHr" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bHs" = ( +/obj/structure/fence/door/opened, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bHt" = ( +/obj/machinery/vending/kink, +/turf/open/floor/wood, +/area/edina) +"bHu" = ( +/obj/machinery/vending/medical, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/edina) +"bHv" = ( +/obj/machinery/vending/kink, +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood, +/area/edina) +"bHw" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/wood, +/area/edina) +"bHx" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bHy" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/carpet/monochrome, +/area/hallway/secondary/service) +"bHz" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/turf/open/floor/carpet/monochrome, +/area/hallway/secondary/service) +"bHA" = ( +/obj/structure/closet/secure_closet/bar, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/cups, +/obj/item/gun/ballistic/revolver/doublebarrel, +/turf/open/floor/carpet/monochrome, +/area/hallway/secondary/service) +"bHB" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"bHC" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/mineral/titanium/blue, +/area/commons/dorms) +"bHD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/decal/festive/fairylights{ + pixel_y = 32 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bHE" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/decal/festive/fairylights{ + pixel_y = 32 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bHF" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/sign/poster/official/foam_force_ad{ + pixel_y = 32 + }, +/obj/effect/decal/festive/mistletoe, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bHG" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bHH" = ( +/obj/effect/turf_decal/caution/stand_clear{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bHI" = ( +/obj/machinery/autolathe{ + name = "public autolathe" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/decal/festive/christmas_reef{ + pixel_y = 24 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bHJ" = ( +/obj/machinery/computer/cargo/request, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/cargo{ + pixel_y = 32 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bHK" = ( +/obj/structure/table/wood/fancy/green, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bHL" = ( +/obj/machinery/computer/cargo, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/noticeboard/qm{ + pixel_y = 32 + }, +/obj/effect/decal/festive/red_stockings, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bHM" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bHN" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/fence{ + dir = 4 + }, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bHO" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/machinery/power/apc/auto_name{ + pixel_x = 30 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/festive/fairylights, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bHP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bHQ" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bHR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bHS" = ( +/obj/structure/chair/stool, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bHT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + req_one_access_txt = "48,50" + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bHU" = ( +/obj/structure/chair/sofa/corner{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bHV" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bHW" = ( +/obj/structure/table, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white/corner, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bHX" = ( +/obj/item/storage/box, +/obj/structure/table, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/hand_labeler, +/obj/machinery/power/apc{ + areastring = "/area/cargo/sorting"; + dir = 4; + name = "Delivery Office APC"; + pixel_y = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bHY" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bHZ" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bIa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bIb" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bIc" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bId" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 4; + height = 15; + id = "emergency_home"; + name = "PubbyStation emergency evac bay"; + width = 20 + }, +/obj/structure/festive/trainplatform/edge_west, +/turf/open/floor/plating/dirt, +/area/edina) +"bIe" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/festive/trainplatform/necorner, +/turf/open/floor/plating/dirt, +/area/edina) +"bIf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/fence, +/turf/open/floor/plating/dirt, +/area/edina) +"bIg" = ( +/obj/effect/festive/street/sidewalkwem, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bIh" = ( +/obj/structure/sign/departments/chemistry, +/turf/closed/festive/whitebrick{ + color = "#ffe6a8" + }, +/area/medical/chemistry) +"bIi" = ( +/turf/closed/festive/whitebrick{ + color = "#ffe6a8" + }, +/area/medical/chemistry) +"bIj" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bIk" = ( +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bIl" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bIm" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bIn" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Morgue APC"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bIo" = ( +/obj/machinery/door/airlock/medical{ + name = "Cyrostasis" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bIp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bIq" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bIr" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bIs" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWEMiddle, +/turf/closed/festive/redbrick, +/area/edina) +"bIt" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bIu" = ( +/obj/machinery/door/airlock/medical{ + name = "Cyrostasis" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bIv" = ( +/turf/closed/festive/whitebrick/whitebrickns, +/area/medical/storage) +"bIw" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "loungeshutters"; + name = "privacy shutters" + }, +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bIx" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "loungeshutters"; + name = "privacy shutters" + }, +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bIy" = ( +/turf/closed/festive/whitebrick/whitebrickcornerne, +/area/medical/storage) +"bIz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/airlock/medical{ + name = "Recovery Room" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bIA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bIB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bIC" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bID" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bIE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bIF" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bIG" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bIH" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bII" = ( +/obj/structure/closet/secure_closet/security/med, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bIJ" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"bIK" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWELeftEnd, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bIL" = ( +/obj/structure/table/wood, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5" + }, +/obj/machinery/door/window/eastright{ + name = "Chemistry Desk" + }, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bIM" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bIN" = ( +/obj/machinery/button/door{ + id = "chemistry_shutters"; + name = "chemistry shutters control"; + pixel_x = 24; + pixel_y = 24; + req_access_txt = "5; 33" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bIO" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWEMiddle, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bIP" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bIQ" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bIR" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bIS" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"bIT" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"bIU" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"bIV" = ( +/obj/structure/chair/comfy/lime{ + color = "#51ad6a"; + dir = 4; + name = "cozy chair" + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria/lunchroom) +"bIW" = ( +/obj/structure/table/wood/fancy/green, +/turf/open/floor/carpet/green, +/area/service/cafeteria/lunchroom) +"bIX" = ( +/obj/structure/chair/comfy/lime{ + color = "#51ad6a"; + dir = 8; + name = "cozy chair" + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria/lunchroom) +"bIY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bIZ" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood, +/area/edina) +"bJa" = ( +/obj/structure/table/reinforced, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/backstreet) +"bJb" = ( +/obj/structure/table/reinforced, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bJc" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/rag/towel, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bJd" = ( +/obj/machinery/keycard_auth{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/computer/card/minor/qm, +/turf/open/floor/festive/wooden/wooden2, +/area/cargo/qm) +"bJe" = ( +/turf/open/floor/carpet/monochrome, +/area/hallway/secondary/service) +"bJf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"bJg" = ( +/obj/structure/curtain, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/commons/dorms) +"bJh" = ( +/turf/closed/festive/greybrick/greybricktw, +/area/commons/dorms) +"bJi" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/festive/christmas_reef, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bJj" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/festive/street/streetlineem, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bJk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bJl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bJm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bJn" = ( +/obj/effect/turf_decal/bot, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bJo" = ( +/obj/effect/turf_decal/delivery, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bJp" = ( +/obj/structure/table/wood/fancy/green, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bJq" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bJr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bJs" = ( +/obj/effect/festive/street/sidewalkn, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bJt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/wood{ + name = "Chaplain's Quarters"; + req_access_txt = "27" + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bJu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/wood{ + name = "Chaplain's Quarters"; + req_access_txt = "27" + }, +/turf/open/indestructible/hotelwood, +/area/service/chapel/main/monastery{ + name = "Chaplain's Quarters" + }) +"bJv" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"bJw" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bJx" = ( +/obj/structure/sign/departments/botany{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bJy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/mining/glass{ + name = "Reclaiming center" + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bJz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bJA" = ( +/obj/effect/festive/street/sidewalkw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bJB" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bJC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bJD" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bJE" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bJF" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bJG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/chem_wardrobe, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bJH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bJI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 26 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bJJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = 30 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bJK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/glass/beaker/large, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -5; + pixel_y = 27 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bJL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/chem_master, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bJM" = ( +/obj/structure/bodycontainer/morgue, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bJN" = ( +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bJO" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bJP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bJQ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bJR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bJS" = ( +/obj/machinery/door/airlock/medical{ + name = "Cyrostasis" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bJT" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bJU" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bJV" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bJW" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bJX" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bJY" = ( +/obj/machinery/door/airlock/medical{ + name = "Cyrostasis" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bJZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bKa" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/structure/curtain, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/storage) +"bKb" = ( +/obj/structure/closet/cabinet{ + pixel_y = 15 + }, +/turf/open/floor/carpet/purple, +/area/medical/storage) +"bKc" = ( +/obj/structure/bed, +/obj/item/toy/plush/random, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/carpet/purple, +/area/medical/storage) +"bKd" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "loungeshutters"; + name = "privacy shutters" + }, +/turf/open/floor/carpet/purple, +/area/medical/storage) +"bKe" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bKf" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/delta; + width = 7 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"bKg" = ( +/obj/structure/festive/greybrick/windowWELeftEnd, +/turf/open/floor/festive/trainplatform, +/area/edina) +"bKh" = ( +/obj/machinery/light/small, +/turf/open/floor/festive/trainplatform, +/area/edina) +"bKi" = ( +/obj/machinery/rnd/production/techfab/department/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bKj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bKk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bKl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bKm" = ( +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bKn" = ( +/turf/closed/festive/redbrick/redbrickcornerse, +/area/medical/medbay/lobby) +"bKo" = ( +/obj/structure/table/wood, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5" + }, +/obj/machinery/door/window/eastright{ + name = "Chemistry Desk" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/machinery/cell_charger, +/obj/item/toy/plush/catgirl/fermis, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bKp" = ( +/obj/structure/fireplace{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bKq" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWELeftEnd, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bKr" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bKs" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bKt" = ( +/obj/machinery/vending/dinnerware{ + desc = "A vending machine stocked full of condiments to put on food."; + name = "\improper Condiments Dispenser"; + products = list(/obj/item/storage/bag/tray = 10, /obj/item/kitchen/fork = 6, /obj/item/kitchen/knife = 6, /obj/item/reagent_containers/food/drinks/drinkingglass = 20, /obj/item/clothing/suit/apron/chef = 2, /obj/item/storage/box/cups = 10, /obj/item/reagent_containers/food/condiment/pack/ketchup = 20, /obj/item/reagent_containers/food/condiment/pack/mustard = 20, /obj/item/reagent_containers/food/condiment/pack/hotsauce = 20, /obj/item/reagent_containers/food/condiment/pack/astrotame = 20, /obj/item/reagent_containers/food/condiment/saltshaker = 20, /obj/item/reagent_containers/food/condiment/peppermill = 20, /obj/item/reagent_containers/glass/bowl = 30) + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bKu" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"bKv" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/patron{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"bKw" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/service/bar/atrium) +"bKx" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria/lunchroom) +"bKy" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bKz" = ( +/obj/structure/table/wood/fancy/black, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bKA" = ( +/obj/machinery/door/airlock/titanium{ + name = "Service Office"; + req_one_access_txt = "25;26;28;35" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"bKB" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder, +/turf/open/floor/carpet/monochrome, +/area/hallway/secondary/service) +"bKC" = ( +/obj/structure/fireplace, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"bKD" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + pixel_y = 15 + }, +/obj/item/coin/iron, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"bKE" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bKF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/structure/window/reinforced/indestructable, +/obj/structure/sign/poster/official/foam_force_ad, +/turf/open/floor/plating, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bKG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bKH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bKI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bKJ" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bKK" = ( +/obj/effect/landmark/start/quartermaster, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bKL" = ( +/obj/structure/table/wood/fancy/green, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bKM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/wood/fancy/green, +/obj/item/stamp, +/obj/item/stamp/denied{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bKN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bKO" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/disposal/bin, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bKP" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plating, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bKQ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bKR" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light{ + light_color = "#e8eaff" + }, +/turf/open/floor/plating, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bKS" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bKT" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bKU" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bKV" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bKW" = ( +/obj/structure/fluff/lightpost/light, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"bKX" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"bKY" = ( +/obj/effect/festive/trainrails/north, +/obj/structure/fence, +/turf/open/floor/plating/dirt, +/area/edina) +"bKZ" = ( +/obj/effect/festive/street/sidewalke, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bLa" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/fence, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bLb" = ( +/obj/effect/festive/street/streetlineem, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/progress) +"bLc" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bLd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/medical/chemistry) +"bLe" = ( +/obj/machinery/smartfridge/chemistry, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bLf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bLg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bLh" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bLi" = ( +/turf/closed/festive/whitebrick{ + color = "#ffe6a8" + }, +/area/commons/fitness) +"bLj" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bLk" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bLl" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen/fountain, +/obj/machinery/camera{ + c_tag = "Morgue"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bLm" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bLn" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bLo" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bLp" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bLq" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bLr" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/machinery/light/small, +/obj/machinery/power/apc{ + name = "Cyrogenics APC"; + pixel_y = -28 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bLs" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Outer Window" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/storage) +"bLt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/carpet/purple, +/area/medical/storage) +"bLu" = ( +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"bLv" = ( +/obj/machinery/button/door{ + id = "idquarters"; + name = "Privacy Control"; + pixel_x = -26; + pixel_y = -26; + req_access_txt = "30" + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/medical/storage) +"bLw" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room A"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/medical/storage) +"bLx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bLy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/medical/storage) +"bLz" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/toxin{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bLA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bLB" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bLC" = ( +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bLD" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bLE" = ( +/turf/closed/festive/whitebrick{ + color = "#ffe6a8" + }, +/area/medical/storage) +"bLF" = ( +/obj/machinery/smartfridge/chemistry, +/turf/closed/wall/mineral/wood, +/area/medical/chemistry) +"bLG" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bLH" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain{ + color = "#FF5555" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/effect/decal/festive/holly, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bLI" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bLJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28; + pixel_y = 5 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bLK" = ( +/obj/machinery/door/airlock/wood/glass, +/obj/effect/decal/festive/mistletoe, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"bLL" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bLM" = ( +/turf/open/floor/festive/stairs/stairseast, +/area/service/bar/atrium) +"bLN" = ( +/obj/structure/bed/dogbed{ + name = "cat bed" + }, +/mob/living/simple_animal/pet/dog/corgi/puppy, +/turf/open/floor/grass, +/area/edina) +"bLO" = ( +/obj/item/stack/sheet/bone, +/turf/open/floor/grass, +/area/edina) +"bLP" = ( +/mob/living/simple_animal/pet/dog/corgi/Lisa, +/turf/open/floor/grass, +/area/edina) +"bLQ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/festive/trainplatform/edge_west, +/turf/open/floor/plating/dirt, +/area/edina) +"bLR" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/book/granter/action/drink_fling, +/obj/item/stack/spacecash/c100, +/turf/open/floor/carpet/monochrome, +/area/hallway/secondary/service) +"bLS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bLT" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"bLU" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"bLV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bLW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bLX" = ( +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bLY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bLZ" = ( +/obj/structure/table/wood/fancy/green, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bMa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bMb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/sign/warning/enginesafety{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bMc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/festive/greybrick, +/area/service/janitor) +"bMd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bMe" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bMf" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bMg" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bMh" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"bMi" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bMj" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bMk" = ( +/obj/machinery/door/airlock/abandoned{ + name = "Filthy Powergame Shack" + }, +/turf/open/floor/plating/dirt, +/area/edina) +"bMl" = ( +/obj/effect/festive/trainrails/south, +/obj/structure/fence, +/turf/open/floor/plating/dirt, +/area/edina) +"bMm" = ( +/obj/structure/closet/cardboard, +/obj/structure/reagent_dispensers/keg/milk, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bMn" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bMo" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Chemical Factory Reception" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bMq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/medical/chemistry) +"bMr" = ( +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5" + }, +/obj/machinery/door/window/eastright{ + name = "Chemistry Desk" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/medical/chemistry) +"bMs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bMt" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/clothing/suit/hooded/wintercoat/chemistry, +/obj/item/clothing/head/beret/chem, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bMu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bMv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bMw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bMx" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bMy" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/fancy/candle_box, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bMz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/closed/festive/whitebrick/whitebrickns, +/area/medical/cryo) +"bMA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/festive/whitebrick, +/area/medical/storage) +"bMB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/medical/storage) +"bMC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Port Fore"; + dir = 8; + network = list("minisat") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bMD" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bME" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bMF" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bMG" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat/medical, +/obj/item/clothing/head/beret/med, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bMH" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bMI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 26 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bMJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bMK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/window/southleft{ + dir = 8; + icon_state = "right"; + name = "Medbay Delivery"; + req_access_txt = "28" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + dir = 4; + freq = 1400; + location = "Medbay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/medical/storage) +"bML" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"bMM" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bMN" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bMO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bMP" = ( +/obj/machinery/chem_heater, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bMQ" = ( +/obj/machinery/computer/security/mining{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/cargo/qm) +"bMR" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/fence, +/turf/open/floor/plating/dirt, +/area/edina) +"bMS" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/storage/box/beakers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bMT" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bMU" = ( +/obj/machinery/chem_heater, +/obj/structure/disposalpipe/junction/yjunction, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bMV" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bMW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bMX" = ( +/obj/machinery/light_switch{ + dir = 9; + pixel_x = 24; + pixel_y = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bMY" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bMZ" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 5 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"bNa" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bNb" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bNc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet/royalblue, +/area/edina) +"bNd" = ( +/turf/closed/wall/mineral/wood, +/area/medical/chemistry) +"bNe" = ( +/obj/structure/table/glass, +/obj/item/toy/fluff/tennis_poly/blue, +/obj/item/toy/fluff/tennis_poly/purple, +/turf/open/floor/carpet/royalblue, +/area/edina) +"bNf" = ( +/obj/structure/table/glass, +/obj/item/toy/cattoy, +/turf/open/floor/carpet/royalblue, +/area/edina) +"bNg" = ( +/obj/structure/table, +/obj/item/paper/fluff/festive/note_for_qm, +/turf/open/floor/festive/wooden/wooden2, +/area/cargo/qm) +"bNh" = ( +/turf/closed/festive/greybrick/greybrickcornerse, +/area/commons/dorms) +"bNi" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bNj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bNk" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bNl" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bNm" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = -32 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bNn" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1; + pixel_y = -8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bNo" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/vending/donksofttoyvendor, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bNp" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/vending/toyliberationstation, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bNq" = ( +/obj/structure/table/wood/fancy/green, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bNr" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/missing_gloves{ + pixel_y = -32 + }, +/obj/machinery/photocopier, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bNs" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/autolathe, +/obj/structure/sign/poster/official/cohiba_robusto_ad{ + pixel_x = 32 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bNt" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bNu" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/med) +"bNv" = ( +/obj/structure/sign/poster/contraband/kudzu{ + pixel_x = 32 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bNw" = ( +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/med) +"bNx" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bNy" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/machinery/door/firedoor, +/turf/open/indestructible, +/area/cargo/storage) +"bNz" = ( +/obj/structure/fence/end, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"bNA" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"bNB" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Chemical Factory Reception" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bNC" = ( +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bND" = ( +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5" + }, +/obj/machinery/door/window/eastright{ + name = "Chemistry Desk" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/medical/chemistry) +"bNE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bNF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + name = "requests board"; + pixel_x = 32 + }, +/obj/item/book/manual/wiki/cit/chemistry, +/obj/item/book/manual/wiki/cit/chem_recipies, +/obj/item/clothing/glasses/science{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bNG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bNH" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bNI" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bNJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/medical/morgue) +"bNK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bNL" = ( +/obj/machinery/door/airlock/medical{ + name = "Ambulance Bay" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bNM" = ( +/obj/structure/bed/roller, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "weewoo"; + name = "Ambulance Garage button"; + pixel_y = 28; + req_access_txt = "5" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bNN" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/vehicle/sealed/vectorcraft/ambulance, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bNO" = ( +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/structure/bed/roller, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bNP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bNQ" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/structure/curtain, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/storage) +"bNR" = ( +/obj/structure/closet/cabinet{ + pixel_y = 15 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/cyan, +/area/medical/storage) +"bNS" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "patientB"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/toy/plush/random, +/obj/effect/spawner/lootdrop/bedsheet, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/carpet/cyan, +/area/medical/storage) +"bNT" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "loungeshutters"; + name = "privacy shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/cyan, +/area/medical/storage) +"bNU" = ( +/obj/machinery/vending/wallmed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/medical/storage) +"bNV" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bNW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bNX" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"bNY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bNZ" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat/medical, +/obj/item/clothing/head/beret/med, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bOa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bOb" = ( +/obj/machinery/airalarm, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/medical/storage) +"bOc" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Apothecary"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bOd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bOe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bOf" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bOg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bOh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bOi" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/item/storage/box/pillbottles, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/radio/headset/headset_med, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 8 + }, +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -5 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -5 + }, +/obj/item/storage/box/syringes, +/obj/item/storage/box/medsprays, +/obj/item/clothing/suit/hooded/wintercoat/chemistry, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/head/beret/chem, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bOj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bOk" = ( +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bOl" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bOm" = ( +/obj/machinery/chem_master, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bOn" = ( +/obj/machinery/chem_master, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bOo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bOp" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bOq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/mineral/wood, +/area/medical/chemistry) +"bOr" = ( +/turf/closed/festive/greybrick/greybrickte, +/area/service/bar/atrium) +"bOs" = ( +/obj/structure/filingcabinet, +/turf/open/floor/festive/wooden/wooden2, +/area/cargo/qm) +"bOt" = ( +/turf/closed/festive/greybrick/greybrickts, +/area/service/bar) +"bOu" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSRightEnd, +/turf/open/floor/wood, +/area/service/bar) +"bOv" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSMiddle, +/turf/open/floor/wood, +/area/service/bar) +"bOw" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSLeftEnd, +/turf/open/floor/wood, +/area/service/bar) +"bOx" = ( +/turf/closed/festive/greybrick, +/area/service/cafeteria/lunchroom) +"bOy" = ( +/turf/open/floor/plasteel/dark, +/area/service/cafeteria/lunchroom) +"bOz" = ( +/obj/structure/table/glass, +/obj/item/toy/fluff/tennis_poly/yellow, +/obj/item/toy/fluff/tennis_poly/red, +/turf/open/floor/carpet/royalblue, +/area/edina) +"bOA" = ( +/obj/structure/table/glass, +/obj/item/toy/fluff/tennis_poly, +/turf/open/floor/carpet/royalblue, +/area/edina) +"bOB" = ( +/obj/structure/table/glass, +/obj/item/toy/plush/random, +/turf/open/floor/carpet/royalblue, +/area/edina/crew_quarters/store/clothes) +"bOC" = ( +/obj/machinery/newscaster, +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/qm) +"bOD" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"bOE" = ( +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bOF" = ( +/obj/structure/fence/door/opened{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/plushies) +"bOG" = ( +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/plasticflaps/opaque, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bOH" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Delivery Office"; + req_access_txt = 0; + req_one_access_txt = "48;50" + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bOI" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bOJ" = ( +/turf/open/floor/carpet/royalblue, +/area/edina/crew_quarters/store/clothes) +"bOK" = ( +/obj/structure/sign/logo, +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"bOL" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/item/clothing/suit/hooded/wintercoat/cargo, +/obj/item/clothing/shoes/winterboots, +/obj/item/stamp/qm, +/obj/item/radio, +/obj/item/clothing/neck/scarf/orange, +/turf/open/floor/carpet/orange, +/area/cargo/qm) +"bOM" = ( +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/sorting) +"bON" = ( +/obj/structure/flora/grass/green, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/med) +"bOO" = ( +/obj/structure/closet/crate/medical, +/obj/effect/decal/festive/fairylights, +/turf/open/indestructible, +/area/cargo/warehouse) +"bOP" = ( +/obj/machinery/light/small, +/turf/open/indestructible, +/area/cargo/warehouse) +"bOQ" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/indestructible, +/area/cargo/storage) +"bOR" = ( +/obj/effect/turf_decal/delivery, +/turf/open/indestructible, +/area/cargo/storage) +"bOS" = ( +/obj/machinery/conveyor_switch{ + id = "cargocars" + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/decal/festive/fairylights, +/turf/open/indestructible, +/area/cargo/storage) +"bOT" = ( +/turf/open/floor/carpet/orange, +/area/cargo/qm) +"bOU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bOV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bOW" = ( +/obj/machinery/status_display/supply, +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/storage) +"bOX" = ( +/obj/structure/lattice, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"bOY" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"bOZ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"bPa" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bPb" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bPc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bPd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/medical/chemistry) +"bPe" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bPf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bPg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bPh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bPi" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemical Factory Garage"; + req_access_txt = "5; 33" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bPj" = ( +/obj/effect/festive/street/streetlineem, +/obj/effect/festive/street/streetlinewm, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"bPk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bPl" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/medical/chemistry) +"bPm" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bPn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bPo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bPp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bPq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bPr" = ( +/obj/machinery/door/airlock/medical{ + name = "Ambulance Bay" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bPs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bPt" = ( +/obj/effect/turf_decal/loading_area/white, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bPu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bPv" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bPw" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bPx" = ( +/obj/structure/fence/door/opened, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"bPy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bPz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick, +/area/medical/storage) +"bPA" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Outer Window" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/storage) +"bPB" = ( +/obj/structure/fence, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bPC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/carpet/cyan, +/area/medical/storage) +"bPD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/carpet/cyan, +/area/medical/storage) +"bPE" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room B"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/cyan, +/area/medical/storage) +"bPF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPG" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/brute{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPH" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bPI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPJ" = ( +/obj/structure/table, +/obj/item/storage/box/syringes, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 8; + pixel_y = -3 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/borg/sight/hud/med, +/obj/item/borg/sight/hud/med, +/obj/item/borg/sight/hud/med, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPK" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = 30 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/blood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPO" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/crate/medical, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/storage/belt/medolier/full, +/obj/item/gun/syringe/dart, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/festive/whitebrick{ + color = "#ffe6a8" + }, +/area/medical/storage) +"bPQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/chair/office/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPT" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Apothecary"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bPU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bPV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/closet/wardrobe/chemistry_white, +/obj/item/storage/box/pillbottles, +/obj/item/radio/headset/headset_med, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 8 + }, +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -5 + }, +/obj/item/storage/box/syringes, +/obj/item/storage/box/medsprays, +/obj/item/clothing/suit/hooded/wintercoat/chemistry, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/head/beret/chem, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bPW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/progress) +"bPX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bPY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bPZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bQa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Chemistry Junction"; + sortType = 11 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bQb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bQc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/wall/mineral/wood, +/area/medical/chemistry) +"bQd" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWERightEnd, +/turf/open/floor/wood, +/area/service/cafeteria) +"bQe" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bQf" = ( +/obj/effect/festive/street/streetlineem, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/progress) +"bQg" = ( +/obj/structure/chair/sofa/left, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bQh" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 10 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"bQi" = ( +/obj/structure/closet/crate/bin{ + pixel_y = 8 + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bQj" = ( +/turf/closed/festive/greybrick, +/area/service/bar) +"bQk" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"bQl" = ( +/obj/structure/table/wood, +/obj/machinery/vending/boozeomat, +/turf/open/floor/carpet/red, +/area/service/bar) +"bQm" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/carpet/red, +/area/service/bar) +"bQn" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -10; + pixel_y = 17 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = 17 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_y = 17 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 5; + pixel_y = 17 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 10; + pixel_y = 17 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -10; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_y = 10 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bQo" = ( +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bQp" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bQq" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bQr" = ( +/obj/structure/chair/sofa, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bQs" = ( +/obj/structure/chair/sofa/corner, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bQt" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"bQu" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "robo1" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/plating, +/area/cargo/sorting) +"bQv" = ( +/obj/machinery/conveyor/inverted{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/cargo/sorting) +"bQw" = ( +/obj/structure/window/spawner/west, +/obj/machinery/conveyor_switch/oneway, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/indestructible, +/area/cargo/sorting) +"bQx" = ( +/obj/effect/turf_decal/caution{ + dir = 8; + pixel_x = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible, +/area/cargo/sorting) +"bQy" = ( +/obj/effect/turf_decal/delivery, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/cargo/sorting) +"bQz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"bQA" = ( +/obj/effect/festive/street/streetlineinnernw, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bQB" = ( +/obj/effect/turf_decal/caution{ + dir = 4; + pixel_x = -6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/indestructible, +/area/cargo/sorting) +"bQC" = ( +/obj/structure/closet/crate, +/turf/open/indestructible, +/area/cargo/warehouse) +"bQD" = ( +/turf/open/floor/plating, +/area/cargo/warehouse) +"bQE" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street) +"bQF" = ( +/obj/effect/festive/street/streetlineem, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bQG" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bQH" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bQI" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bQJ" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bQK" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bQL" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bQM" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/button/door{ + id = "CMOgarage"; + name = "CMO's Garage Door"; + pixel_y = -28 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bQN" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/festive/street/streetlineem, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bQO" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bQP" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bQQ" = ( +/turf/open/indestructible, +/area/cargo/storage) +"bQR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bQS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 1; + id = "cargounload" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"bQT" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"bQU" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"bQV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"bQW" = ( +/obj/machinery/light{ + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bQX" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bQY" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bQZ" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bRa" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"bRb" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bRc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/obj/item/stack/sheet/metal/twenty, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bRd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bRe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/power/apc/auto_name{ + pixel_x = 30 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bRf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/medical/morgue) +"bRg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/medical/morgue) +"bRh" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bRi" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bRj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick, +/area/medical/cryo) +"bRk" = ( +/obj/structure/table/reinforced, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bRl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/cryo) +"bRm" = ( +/obj/structure/table/reinforced, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/bruise_pack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bRn" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/food_cart, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bRo" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bRp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick/whitebrickns, +/area/medical/storage) +"bRq" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "loungeshutters"; + name = "privacy shutters" + }, +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRr" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "loungeshutters"; + name = "privacy shutters" + }, +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick/whitebrickcornerse, +/area/medical/storage) +"bRt" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRu" = ( +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/vending/medical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/power/apc{ + areastring = "/area/medical/storage"; + name = "Medbay Storage APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRw" = ( +/obj/effect/festive/street/streetlinesouth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bRx" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/camera{ + c_tag = "Medbay Surgery"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_y = -27 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/window/eastleft{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRC" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bRE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/chem_heater, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/chem_master, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/chem_dispenser, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"bRJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bRK" = ( +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bRL" = ( +/obj/machinery/rnd/production/techfab/department/medical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bRM" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bRN" = ( +/obj/structure/table/wood, +/obj/item/clothing/glasses/science{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/hand_labeler, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/book/manual/wiki/cit/chem_recipies, +/obj/item/book/manual/wiki/cit/chemistry, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bRO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bRP" = ( +/obj/structure/table/wood, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/stack/cable_coil, +/obj/item/assembly/igniter{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/chemistry"; + dir = 1; + name = "Chemistry Lab APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bRQ" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/beaker/large, +/obj/machinery/light, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_y = -27 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bRR" = ( +/obj/structure/table/wood, +/obj/machinery/microwave, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bRS" = ( +/obj/machinery/vending/snack/random, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bRT" = ( +/obj/machinery/vending/coffee, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bRU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/mineral/wood, +/area/medical/chemistry) +"bRV" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWEMiddle, +/turf/open/floor/wood, +/area/service/cafeteria) +"bRW" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bRX" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/britcup, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bRY" = ( +/obj/structure/chair/comfy/lime{ + color = "#51ad6a"; + dir = 8; + name = "cozy chair" + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bRZ" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bSa" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bSb" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/carpet/red, +/area/service/bar) +"bSc" = ( +/obj/structure/closet/cardboard, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bSd" = ( +/obj/effect/festive/street/streetlinene, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bSe" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bSf" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bSg" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bSh" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bSi" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bSj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/power/apc/auto_name/east, +/turf/open/floor/wood, +/area/maintenance/bar) +"bSk" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bSl" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/supply) +"bSm" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bSn" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/cargo/sorting) +"bSo" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/indestructible, +/area/cargo/sorting) +"bSp" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/indestructible, +/area/cargo/sorting) +"bSq" = ( +/turf/open/indestructible, +/area/cargo/sorting) +"bSr" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/indestructible, +/area/cargo/sorting) +"bSs" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/cargo/sorting) +"bSt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bSu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"bSv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/sorting) +"bSw" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bSx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"bSy" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bSz" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"bSA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"bSB" = ( +/obj/effect/festive/street/sidewalkw, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"bSC" = ( +/obj/effect/festive/street/sidewalke, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"bSD" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemical Factory Reception"; + req_access_txt = "5; 33" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bSE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bSF" = ( +/obj/machinery/door/poddoor/shutters, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"bSG" = ( +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bSH" = ( +/obj/machinery/door/poddoor/shutters{ + id = "weewoo"; + name = "Ambulance Garage" + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"bSI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/fence/door/opened, +/turf/open/floor/festive/alleyway, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bSJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/medical/chemistry) +"bSK" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bSL" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bSM" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bSN" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bSO" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sign/poster/official/hydro_ad{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bSP" = ( +/obj/effect/turf_decal/delivery, +/turf/open/indestructible, +/area/cargo/sorting) +"bSQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/indestructible, +/area/cargo/sorting) +"bSR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/sorting) +"bSS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/indestructible, +/area/cargo/sorting) +"bST" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/sorting) +"bSU" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible, +/area/cargo/storage) +"bSV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/indestructible, +/area/cargo/sorting) +"bSW" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bSX" = ( +/obj/machinery/light/floor, +/turf/open/indestructible, +/area/cargo/storage) +"bSY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "cargounload" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bSZ" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"bTa" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum, +/turf/open/floor/plating, +/area/cargo/storage) +"bTb" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"bTc" = ( +/obj/effect/festive/street/streetlinenw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bTd" = ( +/obj/structure/flora/grass/green, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research) +"bTe" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/progress) +"bTf" = ( +/obj/effect/festive/street/sidewalkw, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"bTg" = ( +/obj/effect/festive/street/sidewalke, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"bTh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/door/airlock/medical/glass{ + name = "Chemical Factory Reception"; + req_access_txt = "5; 33" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bTi" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 10 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bTj" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bTk" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "weewoo"; + name = "Ambulance Garage button"; + pixel_y = 28; + req_access_txt = "5" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/medical/cryo) +"bTl" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/medical/cryo) +"bTm" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bTn" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/door/window/westright{ + name = "Pub - Staff Only"; + req_one_access_txt = "25;26;28;35" + }, +/obj/machinery/door/window/eastleft{ + name = "Pub - Staff Only"; + req_one_access_txt = "25;26;28;35" + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/bottle/hcider{ + layer = 3.1; + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/bottle/kahlua{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"bTo" = ( +/obj/machinery/jukebox, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bTp" = ( +/obj/structure/flora/tree/pine/xmas/presents, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bTq" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/festive/whitebrick, +/area/service/hydroponics) +"bTr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/royalblue, +/area/edina/crew_quarters/store/clothes) +"bTs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/holofloor/ice, +/area/edina/crew_quarters/store/clothes) +"bTt" = ( +/obj/structure/flora/grass/green, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research{ + name = "Science Street" + }) +"bTu" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plating, +/area/cargo/sorting) +"bTv" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plating, +/area/cargo/sorting) +"bTw" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plating, +/area/cargo/sorting) +"bTx" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible, +/area/cargo/storage) +"bTy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/sorting) +"bTz" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/turf/open/indestructible, +/area/cargo/storage) +"bTA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bTB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 9; + id = "cargoload" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"bTC" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/machinery/door/poddoor{ + id = "cargounload"; + name = "supply dock unloading door" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"bTD" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/cargo/storage) +"bTE" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor{ + id = "cargounload"; + name = "supply dock unloading door" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"bTF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/command) +"bTG" = ( +/obj/effect/festive/street/streetlineinnernw{ + pixel_x = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"bTH" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"bTI" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/festive/street/streetlineem, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/progress) +"bTJ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"bTK" = ( +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -9; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bTL" = ( +/obj/structure/window, +/obj/machinery/door/window/westleft{ + name = "Pub - Staff Only"; + req_one_access_txt = "25;26;28;35" + }, +/obj/machinery/door/window/eastright{ + name = "Pub - Staff Only"; + req_one_access_txt = "25;26;28;35" + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/bottle/wine{ + layer = 3.1; + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = 7; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/drinks/bottle/gin{ + pixel_x = -10; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/bottle/goldschlager{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"bTM" = ( +/turf/closed/festive/greybrick, +/area/service/kitchen/coldroom) +"bTN" = ( +/obj/structure/sign/mining{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bTO" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bTP" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bTQ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWEMiddle, +/turf/open/indestructible, +/area/cargo/storage) +"bTR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bTS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bTT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bTU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bTV" = ( +/obj/effect/festive/street/streetlineinnernw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bTW" = ( +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bTX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bTY" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"bTZ" = ( +/obj/structure/toilet/secret/low_loot, +/obj/structure/window/spawner/east, +/obj/machinery/door/window/southleft, +/obj/machinery/door/window/southright, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/commons/fitness) +"bUa" = ( +/obj/structure/toilet, +/obj/machinery/door/window/southright, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/commons/fitness) +"bUb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bUc" = ( +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bUd" = ( +/turf/closed/festive/whitebrick{ + color = "#fff200" + }, +/area/edina) +"bUe" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bUf" = ( +/turf/closed/festive/whitebrick{ + color = "#993e28" + }, +/area/commons/lounge) +"bUg" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Curator Access"; + req_access_txt = "37" + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bUh" = ( +/turf/closed/festive/whitebrick{ + color = "#993e28" + }, +/area/service/library) +"bUi" = ( +/obj/effect/decal/festive/red_stockings, +/turf/closed/festive/whitebrick{ + color = "#993e28" + }, +/area/service/library) +"bUj" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/rag/towel, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bUk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"bUl" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bUm" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/britcup, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bUn" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bUo" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bUp" = ( +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bUq" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bUr" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Hotel" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bUs" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_y = 24; + req_access_txt = "31" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bUt" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/turf/open/indestructible, +/area/cargo/storage) +"bUu" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bUv" = ( +/obj/machinery/button/door{ + id = "cargounload"; + layer = 4; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = 8 + }, +/obj/machinery/button/door{ + id = "cargoload"; + layer = 4; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = -8 + }, +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Starboard"; + dir = 8; + name = "cargo camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bUw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"bUx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bUy" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"bUz" = ( +/obj/structure/statue/snow/snowman, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"bUA" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bUB" = ( +/obj/effect/festive/street/sidewalknsm, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bUC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bUD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bUE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"bUF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"bUG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"bUH" = ( +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"bUI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"bUJ" = ( +/turf/closed/festive/whitebrick{ + color = "#ffe6a8" + }, +/area/commons/fitness/pool) +"bUK" = ( +/obj/structure/table/wood, +/obj/item/instrument/eguitar, +/obj/item/toy/crayon/spraycan/lubecan{ + charges = 5 + }, +/obj/structure/sign/poster/contraband/clown{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/edina) +"bUL" = ( +/obj/machinery/vending/autodrobe, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/service/theater"; + dir = 1; + name = "Theatre Backstage APC"; + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/edina) +"bUM" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/structure/closet/crate/wooden/toy, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/stack/sheet/mineral/wood/fifty, +/turf/open/floor/plasteel, +/area/edina) +"bUN" = ( +/obj/structure/table/wood, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/flashlight/lamp/bananalamp{ + pixel_y = 5 + }, +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/item/toy/figure/clown, +/obj/item/clipboard, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/edina) +"bUO" = ( +/obj/effect/landmark/start/librarian, +/turf/open/indestructible/hoteltile, +/area/commons/lounge) +"bUP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/indestructible/hoteltile, +/area/commons/lounge) +"bUQ" = ( +/obj/structure/sign/departments/restroom, +/turf/closed/festive/whitebrick{ + color = "#993e28" + }, +/area/commons/lounge) +"bUR" = ( +/obj/machinery/vending/coffee, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bUS" = ( +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bUT" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bUU" = ( +/obj/machinery/computer/libraryconsole{ + pixel_y = 8 + }, +/obj/structure/table/wood/fancy/red, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bUV" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bUW" = ( +/obj/machinery/power/apc/auto_name/north, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bUX" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bUY" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/computer/libraryconsole/bookmanagement{ + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/spawner/west, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bUZ" = ( +/obj/machinery/libraryscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bVa" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bVb" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bVc" = ( +/obj/machinery/bookbinder, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bVd" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/window/spawner/east, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bVe" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/lounge) +"bVf" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/folder, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/lounge) +"bVg" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/lounge) +"bVh" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/folder, +/obj/item/folder, +/turf/open/floor/plasteel/grimy, +/area/commons/lounge) +"bVi" = ( +/obj/machinery/vending/games, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"bVj" = ( +/turf/open/floor/carpet/green, +/area/service/library) +"bVk" = ( +/obj/structure/chair/wood, +/turf/open/floor/carpet/green, +/area/service/library) +"bVl" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/carpet/green, +/area/service/library) +"bVm" = ( +/obj/effect/festive/street/streetlinewest{ + pixel_x = -1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bVn" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bVo" = ( +/turf/closed/festive/greybrick, +/area/service/janitor) +"bVp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"bVq" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bVr" = ( +/obj/structure/flora/grass/green, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/medical/medbay/aft{ + name = "Hospital" + }) +"bVs" = ( +/obj/structure/table/wood, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bVt" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bVu" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bVv" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_y = 17 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"bVw" = ( +/obj/effect/festive/street/streetlinenm, +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/turf/open/indestructible, +/area/service/janitor) +"bVx" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"bVy" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"bVz" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"bVA" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bVB" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bVC" = ( +/obj/machinery/gibber, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bVD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/closed/festive/redbrick, +/area/security/checkpoint/supply) +"bVE" = ( +/obj/machinery/conveyor/inverted{ + dir = 6; + id = "cargocars" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bVF" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSRightEnd, +/turf/closed/festive/redbrick, +/area/security/checkpoint/supply) +"bVG" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSMiddle, +/turf/closed/festive/redbrick, +/area/security/checkpoint/supply) +"bVH" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bVI" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSLeft, +/turf/closed/festive/redbrick, +/area/security/checkpoint/supply) +"bVJ" = ( +/turf/closed/festive/redbrick, +/area/security/checkpoint/supply) +"bVK" = ( +/obj/effect/festive/street/streetlinese, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bVL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"bVM" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/indestructible, +/area/cargo/storage) +"bVN" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bVO" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"bVP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/athletic_mixed, +/obj/item/toy/poolnoodle/blue, +/obj/effect/decal/festive/fairylights{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"bVQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/athletic_mixed, +/obj/item/toy/poolnoodle/red, +/obj/effect/decal/festive/christmas_ivy_string{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"bVR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/obj/structure/closet/athletic_mixed, +/obj/item/toy/poolnoodle/yellow, +/obj/effect/decal/festive/fairylights{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"bVS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/athletic_mixed, +/obj/item/toy/poolnoodle/blue, +/obj/effect/decal/festive/christmas_ivy_string{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"bVT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 30 + }, +/obj/structure/table/glass, +/obj/effect/decal/festive/fairylights{ + pixel_y = 32 + }, +/obj/structure/bedsheetbin/towel, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"bVU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/edina) +"bVV" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/edina) +"bVW" = ( +/obj/effect/landmark/start/clown, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/edina) +"bVX" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -24 + }, +/turf/open/indestructible/hoteltile, +/area/commons/lounge) +"bVY" = ( +/turf/open/indestructible/hoteltile, +/area/commons/lounge) +"bVZ" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/turf/open/indestructible/hoteltile, +/area/commons/lounge) +"bWa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bWb" = ( +/obj/machinery/photocopier, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bWc" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bWd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bWe" = ( +/obj/machinery/door/window/westright, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bWf" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/librarian, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bWg" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bWh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bWi" = ( +/obj/machinery/door/window/eastleft, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bWj" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bWk" = ( +/turf/open/floor/plasteel/grimy, +/area/commons/lounge) +"bWl" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Games Room" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"bWm" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/library) +"bWn" = ( +/obj/structure/table/wood/fancy/red, +/turf/open/indestructible/hotelwood, +/area/service/library) +"bWo" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/library) +"bWp" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/library) +"bWq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick{ + color = "#993e28" + }, +/area/service/library) +"bWr" = ( +/obj/structure/cable/yellow, +/turf/open/floor/carpet/red, +/area/service/bar) +"bWs" = ( +/turf/closed/festive/greybrick, +/area/service/kitchen) +"bWt" = ( +/obj/machinery/door/window/westright{ + dir = 1; + name = "Pub - Staff Only"; + req_one_access_txt = "25;26;28;35" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"bWu" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bWv" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargocars" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bWw" = ( +/obj/structure/kitchenspike, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bWx" = ( +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bWy" = ( +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"bWz" = ( +/turf/closed/festive/whitebrick, +/area/commons/dorms) +"bWA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/supply) +"bWB" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bWC" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bWD" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bWE" = ( +/obj/effect/festive/street/streetlinesouth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bWF" = ( +/obj/machinery/door/airlock/freezer{ + name = "Freezer"; + req_one_access_txt = "25;26;28;35" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bWG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/landmark/start/virologist, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bWH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bWI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bWJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bWK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bWL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 5; + id = "cargoload" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"bWM" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "cargoload"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"bWN" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/structure/plasticflaps, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/storage) +"bWO" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "cargoload"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"bWP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/closet/athletic_mixed, +/obj/item/toy/poolnoodle/yellow, +/obj/effect/decal/festive/fairylights{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"bWQ" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/chair/wood/wings{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bWR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bWS" = ( +/obj/structure/mirror{ + pixel_x = 30 + }, +/obj/structure/dresser, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bWT" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bWU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bWV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bWW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bWX" = ( +/obj/structure/table/wood/fancy/green, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bWY" = ( +/obj/structure/table/wood/fancy/green, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bWZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bXa" = ( +/obj/machinery/door/morgue{ + name = "Study #1" + }, +/turf/open/floor/plasteel/grimy, +/area/commons/lounge) +"bXb" = ( +/obj/machinery/door/morgue{ + name = "Study #2" + }, +/turf/open/floor/plasteel/grimy, +/area/commons/lounge) +"bXc" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/indestructible/hotelwood, +/area/service/library) +"bXd" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/library) +"bXe" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/carpet/green, +/area/service/library) +"bXf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick{ + color = "#993e28" + }, +/area/service/library) +"bXg" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWELeftEnd, +/turf/open/floor/wood, +/area/service/cafeteria) +"bXh" = ( +/obj/machinery/light, +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bXi" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Service"; + req_one_access_txt = "25;26;28;35" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bXj" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bXk" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bXl" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bXm" = ( +/obj/structure/sink/kitchen{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bXn" = ( +/obj/machinery/vending/dinnerware, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bXo" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bXp" = ( +/obj/effect/festive/street/streetlinenm{ + pixel_y = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"bXq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessservitor) +"bXr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessservitor) +"bXs" = ( +/obj/effect/festive/street/sidewalkw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"bXt" = ( +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"bXu" = ( +/obj/structure/table, +/obj/item/storage/box/monkeycubes{ + pixel_y = 5 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bXv" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/window/westleft{ + name = "Freezer Delivery"; + req_access_txt = "28" + }, +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bXw" = ( +/turf/closed/festive/bluebrick/bluebrickwe, +/area/commons/dorms) +"bXx" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/open/indestructible/hoteltile, +/area/cargo{ + name = "Cargo Break Room" + }) +"bXy" = ( +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/indestructible/hoteltile, +/area/cargo{ + name = "Cargo Break Room" + }) +"bXz" = ( +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bXA" = ( +/obj/structure/bed, +/obj/item/bedsheet/cmo, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/cmo) +"bXB" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bXC" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #1" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bXD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bXE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bXF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + id = "cargoload" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bXG" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargoload" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/storage) +"bXH" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"bXI" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"bXJ" = ( +/obj/machinery/door/airlock/bananium{ + name = "Clown House"; + req_access_txt = "46" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bXK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bXL" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/structure/fireplace{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bXM" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bXN" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bXO" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bXP" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bXQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bXR" = ( +/turf/open/indestructible, +/area/commons/lounge) +"bXS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/indestructible, +/area/commons/lounge) +"bXT" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -5; + pixel_y = 27 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bXU" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bXV" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Library" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bXW" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"bXX" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/service/library) +"bXY" = ( +/turf/closed/festive/greybrick/greybrickte, +/area/service/cafeteria) +"bXZ" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"bYa" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"bYb" = ( +/turf/closed/festive/greybrick, +/area/service/cafeteria) +"bYc" = ( +/turf/open/floor/plasteel/stairs/left, +/area/service/cafeteria) +"bYd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"bYe" = ( +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Pub - Staff Only"; + req_one_access_txt = "25;26;28;35" + }, +/turf/open/floor/plasteel/stairs, +/area/service/bar) +"bYf" = ( +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bYg" = ( +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bYh" = ( +/obj/machinery/smartfridge/food, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bYi" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"bYj" = ( +/obj/structure/grille, +/obj/structure/festive/bluebrick/windowWERightEnd, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bYk" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/indestructible/hoteltile, +/area/cargo{ + name = "Cargo Break Room" + }) +"bYl" = ( +/turf/open/indestructible/hoteltile, +/area/cargo{ + name = "Cargo Break Room" + }) +"bYm" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/supply) +"bYn" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"bYo" = ( +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/cmo) +"bYp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"bYq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #2" + }, +/obj/effect/turf_decal/delivery, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #3"; + suffix = "#3" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bYr" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bYs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bYt" = ( +/obj/machinery/door/airlock/silver{ + name = "Mime House"; + req_access_txt = "46" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bYu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bYv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bYw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/effect/decal/festive/christmas_ivy_string{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"bYx" = ( +/turf/open/floor/carpet/red, +/area/commons/lounge) +"bYy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/red, +/area/commons/lounge) +"bYz" = ( +/turf/open/floor/carpet/royalblue, +/area/service/cafeteria) +"bYA" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/turf/open/floor/carpet/royalblue, +/area/service/cafeteria) +"bYB" = ( +/turf/open/floor/carpet/orange, +/area/service/bar) +"bYC" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bYD" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + dir = 1; + pixel_x = -3 + }, +/obj/item/sharpener{ + pixel_x = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bYE" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bYF" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bYG" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bYH" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"bYI" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"bYJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bYK" = ( +/obj/structure/reagent_dispensers/keg/gargle, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bYL" = ( +/obj/structure/grille, +/obj/structure/festive/bluebrick/windowWEMiddle, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"bYM" = ( +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"bYN" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/cargo{ + name = "Cargo Break Room" + }) +"bYO" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #3" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bYP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bYQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bYR" = ( +/obj/structure/chair/wood/wings{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 4; + name = "service camera" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bYS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bYT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bYU" = ( +/obj/machinery/door/airlock/grunge{ + name = "Garage"; + req_access_txt = "46" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"bYV" = ( +/obj/machinery/button/door{ + id = "clowngarage"; + name = "Garage Door"; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/edina) +"bYW" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/commons/lounge) +"bYX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bYY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bYZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"bZa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bZb" = ( +/obj/structure/displaycase/clown, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/commons/lounge) +"bZc" = ( +/obj/structure/displaycase/captain, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/commons/lounge) +"bZd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/commons/lounge) +"bZe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/red, +/area/commons/lounge) +"bZf" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/commons/lounge) +"bZg" = ( +/obj/structure/displaycase/trophy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/commons/lounge) +"bZh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"bZi" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWERightEnd, +/turf/open/floor/plating, +/area/commons/lounge) +"bZj" = ( +/obj/machinery/vending/wardrobe/curator_wardrobe, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"bZk" = ( +/obj/structure/destructible/cult/tome, +/obj/item/book/codex_gigas, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"bZl" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"bZm" = ( +/obj/machinery/power/apc/auto_name/north, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"bZn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/southleft{ + dir = 8; + icon_state = "right"; + name = "Library Delivery"; + req_access_txt = "37" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"bZo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/plasticflaps/opaque, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"bZp" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWELeft, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"bZq" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window, +/obj/machinery/door/window/westleft{ + name = "Cloakroom Three"; + req_one_access_txt = "25;26;28;35" + }, +/obj/structure/rack, +/turf/open/floor/carpet/orange, +/area/service/bar) +"bZr" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bZs" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bZt" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"bZu" = ( +/obj/structure/reagent_dispensers/keg/mead, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bZv" = ( +/obj/structure/closet/crate/freezer{ + desc = "A small crate with a cooling system, keeps fresh produce chilled."; + name = "Food Chiller" + }, +/obj/item/storage/box/ingredients/american, +/obj/item/storage/box/ingredients/american, +/obj/item/storage/box/ingredients/delights, +/obj/item/storage/box/ingredients/delights, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/italian, +/obj/item/storage/box/ingredients/italian, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bZw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/chair, +/obj/effect/landmark/start/quartermaster, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"bZx" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"bZy" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/sink/kitchen{ + name = "utility sink"; + pixel_y = 28 + }, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"bZz" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/sign/poster/official/soft_cap_pop_art{ + pixel_y = 32 + }, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"bZA" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"bZB" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/vending/snack/green, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"bZC" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/vending/cola/black, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"bZD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"bZE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bZF" = ( +/obj/structure/closet/wardrobe/cargotech, +/obj/item/clothing/suit/hooded/wintercoat/cargo, +/obj/item/clothing/under/color/brown, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/brown, +/obj/item/radio, +/obj/item/clothing/neck/scarf/orange, +/obj/effect/decal/festive/red_stockings, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"bZG" = ( +/obj/structure/closet/wardrobe/cargotech, +/obj/item/clothing/suit/hooded/wintercoat/cargo, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/stamp/qm, +/obj/item/radio, +/obj/item/clothing/neck/scarf/orange, +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/decal/festive/red_stockings, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"bZH" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"bZI" = ( +/obj/structure/closet/wardrobe/cargotech, +/obj/item/clothing/suit/hooded/wintercoat/cargo, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/stamp/qm, +/obj/item/radio, +/obj/item/clothing/neck/scarf/orange, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"bZJ" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_x = -7; + pixel_y = 12 + }, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"bZK" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"bZL" = ( +/obj/structure/fence, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"bZM" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay - Port"; + dir = 4; + name = "cargo camera" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #4" + }, +/obj/effect/turf_decal/delivery, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bZN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bZO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bZP" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/storage) +"bZQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "cargoload" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"bZR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -5; + pixel_y = 27 + }, +/obj/effect/decal/festive/fairylights{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"bZS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"bZT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/obj/effect/decal/festive/fairylights{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/commons/fitness/pool"; + dir = 1; + name = "Pool APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"bZU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/sign/departments/showers{ + pixel_y = 32 + }, +/obj/effect/decal/festive/christmas_ivy_string{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"bZV" = ( +/obj/structure/table/wood, +/obj/machinery/requests_console{ + department = "Theatre Backstage"; + name = "Theatre RC"; + pixel_x = -32 + }, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"bZW" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"bZX" = ( +/obj/effect/landmark/start/mime, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"bZY" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -26 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/edina) +"bZZ" = ( +/obj/vehicle/sealed/vectorcraft/clown, +/turf/open/floor/plasteel, +/area/edina) +"caa" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"cab" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"cac" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet/red, +/area/commons/lounge) +"cad" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/red, +/area/commons/lounge) +"cae" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"caf" = ( +/obj/structure/bookcase/random/adult, +/turf/open/indestructible/hotelwood, +/area/commons/lounge) +"cag" = ( +/obj/effect/festive/street/streetlineinnersw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"cah" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWELeftEnd, +/turf/open/floor/plating, +/area/commons/lounge) +"cai" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"caj" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/librarian, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"cak" = ( +/obj/structure/window/reinforced{ + dir = 1; + name = "Library Delivery"; + pixel_y = 2 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"cal" = ( +/obj/machinery/door/airlock/wood/glass, +/obj/effect/decal/festive/mistletoe, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"cam" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window, +/obj/machinery/door/window/westleft{ + name = "Cloakroom Two"; + req_one_access_txt = "25;26;28;35" + }, +/obj/structure/rack, +/turf/open/floor/carpet/orange, +/area/service/bar) +"can" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -14 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cao" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cap" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"caq" = ( +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/carpet/orange, +/area/cargo/qm) +"car" = ( +/obj/structure/grille, +/obj/structure/festive/bluebrick/windowWELeftEnd, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"cas" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/table/wood/fancy/red, +/obj/item/storage/box/donkpockets, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"cat" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"cau" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"cav" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"caw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"cax" = ( +/obj/structure/chair/office/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/virologist, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cay" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"caz" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = -5 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"caA" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"caB" = ( +/obj/effect/festive/street/sidewalke, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"caC" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/mining, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"caD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible, +/area/cargo/storage) +"caE" = ( +/obj/effect/landmark/start/quartermaster, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"caF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"caG" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"caH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/mining, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"caI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/cargo/sorting) +"caJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/landmark/start/quartermaster, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/indestructible, +/area/cargo/sorting) +"caK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/indestructible, +/area/cargo/sorting) +"caL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"caM" = ( +/obj/machinery/door/airlock/medical{ + name = "Showers" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/commons/fitness/pool) +"caN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/window/spawner, +/turf/open/floor/plasteel/white, +/area/commons/fitness) +"caO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/sign/poster/official/no_erp{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/commons/fitness) +"caP" = ( +/obj/machinery/door/airlock/medical{ + name = "Showers" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/commons/fitness) +"caQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = -32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/white, +/area/commons/fitness) +"caR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white, +/area/commons/fitness) +"caS" = ( +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"caT" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/baguette, +/obj/item/toy/crayon/spraycan/mimecan{ + charges = 5 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"caU" = ( +/obj/machinery/vending/autodrobe, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"caV" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/mime, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"caW" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/reagent_dispensers/keg{ + desc = "A keg of laughter."; + reagent_id = "laughter" + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"caX" = ( +/obj/structure/bookcase/manuals/medical, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/lounge) +"caY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessservitor) +"caZ" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"cba" = ( +/obj/effect/festive/street/streetlinenw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"cbb" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargocars" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cbc" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Curator's Closet"; + req_access_txt = "37" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"cbd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"cbe" = ( +/obj/structure/filingcabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"cbf" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"cbg" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"cbh" = ( +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"cbi" = ( +/obj/machinery/light, +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/laser_pointer{ + pixel_x = 3 + }, +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"cbj" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/camera, +/obj/machinery/status_display/ai{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = 32; + pixel_y = -24 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/service/library) +"cbk" = ( +/obj/machinery/light/small, +/turf/open/floor/carpet/orange, +/area/service/bar) +"cbl" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window, +/obj/machinery/door/window/westleft{ + name = "Cloakroom One"; + req_one_access_txt = "25;26;28;35" + }, +/obj/structure/rack, +/turf/open/floor/carpet/orange, +/area/service/bar) +"cbm" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/cooking_to_serve_man, +/obj/item/kitchen/rollingpin, +/obj/machinery/button/door{ + id = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cbn" = ( +/obj/structure/table, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cbo" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -10; + pixel_y = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cbp" = ( +/obj/machinery/processor, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cbq" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cbr" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/flour{ + pixel_x = 7 + }, +/obj/item/reagent_containers/food/condiment/flour{ + pixel_x = -8 + }, +/obj/machinery/button/door{ + id = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cbs" = ( +/obj/structure/reagent_dispensers/keg/milk, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"cbt" = ( +/obj/structure/closet/crate/freezer{ + desc = "A small crate with a cooling system, keeps fresh produce chilled."; + name = "Food Chiller" + }, +/obj/item/reagent_containers/food/condiment/flour{ + desc = "A large sack of flour for restaurants, not the home-baker!"; + list_reagents = list("flour" = 90); + name = "Large Flour Sack" + }, +/obj/item/reagent_containers/food/condiment/flour{ + desc = "A large sack of flour for restaurants, not the home-baker!"; + list_reagents = list("flour" = 90); + name = "Large Flour Sack" + }, +/obj/item/reagent_containers/food/condiment/flour{ + desc = "A large sack of flour for restaurants, not the home-baker!"; + list_reagents = list("flour" = 90); + name = "Large Flour Sack" + }, +/obj/item/reagent_containers/food/condiment/flour{ + desc = "A large sack of flour for restaurants, not the home-baker!"; + list_reagents = list("flour" = 90); + name = "Large Flour Sack" + }, +/obj/item/reagent_containers/food/condiment/rice{ + desc = "A huge sack of rice. Probably for restaurants that actually go through such a huge volume of it easily, not for the home cook."; + list_reagents = list("rice" = 90); + name = "Large Rice Sack" + }, +/obj/item/reagent_containers/food/condiment/rice{ + desc = "A huge sack of rice. Probably for restaurants that actually go through such a huge volume of it easily, not for the home cook."; + list_reagents = list("rice" = 90); + name = "Large Rice Sack" + }, +/obj/item/reagent_containers/food/condiment/rice{ + desc = "A huge sack of rice. Probably for restaurants that actually go through such a huge volume of it easily, not for the home cook."; + list_reagents = list("rice" = 90); + name = "Large Rice Sack" + }, +/obj/item/reagent_containers/food/condiment/rice{ + desc = "A huge sack of rice. Probably for restaurants that actually go through such a huge volume of it easily, not for the home cook."; + list_reagents = list("rice" = 90); + name = "Large Rice Sack" + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"cbu" = ( +/obj/structure/sign/poster/official/twelve_gauge{ + pixel_y = 32 + }, +/turf/open/floor/carpet/orange, +/area/cargo/qm) +"cbv" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"cbw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"cbx" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"cby" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"cbz" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable/yellow, +/obj/machinery/power/apc/auto_name{ + pixel_y = -30 + }, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"cbA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/supply) +"cbB" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cbC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"cbD" = ( +/obj/structure/closet/wardrobe/cargotech, +/obj/item/clothing/suit/hooded/wintercoat/cargo, +/obj/item/clothing/under/color/brown, +/obj/item/clothing/shoes/winterboots, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/item/radio, +/obj/item/clothing/neck/scarf/orange, +/obj/machinery/light/small, +/obj/structure/closet/secure_closet/quartermaster, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"cbE" = ( +/obj/item/clothing/suit/hooded/wintercoat/cargo, +/obj/item/clothing/shoes/winterboots, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/item/stamp/qm, +/obj/item/radio, +/obj/structure/closet/wardrobe/cargotech, +/obj/item/clothing/neck/scarf/orange, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"cbF" = ( +/obj/structure/closet/wardrobe/cargotech, +/obj/item/clothing/suit/hooded/wintercoat/cargo, +/obj/item/clothing/under/color/brown, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/item/radio, +/obj/item/clothing/neck/scarf/orange, +/obj/structure/closet/secure_closet/quartermaster, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"cbG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cbH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cbI" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"cbJ" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"cbK" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWERightEnd, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/fitness/pool) +"cbL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"cbM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/festive/whitebrick, +/area/edina) +"cbN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/edina) +"cbO" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/festive/whitebrick, +/area/edina) +"cbP" = ( +/obj/machinery/door/poddoor/shutters{ + id = "clowngarage" + }, +/turf/open/floor/plasteel, +/area/edina) +"cbQ" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSRightEnd, +/turf/open/floor/plating, +/area/commons/lounge) +"cbR" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plating, +/area/commons/lounge) +"cbS" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSLeftEnd, +/turf/open/floor/plating, +/area/commons/lounge) +"cbT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/closed/festive/whitebrick{ + color = "#993e28" + }, +/area/commons/lounge) +"cbU" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"cbV" = ( +/obj/effect/festive/street/streetlineinnerse, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"cbW" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"cbX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"cbY" = ( +/obj/machinery/door/airlock/glass_large{ + name = "Pub" + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"cbZ" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSRight, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"cca" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSMiddle, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ccb" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSLeftEnd, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ccc" = ( +/turf/closed/festive/greybrick/greybrickns, +/area/service/bar) +"ccd" = ( +/turf/closed/festive/greybrick/greybrickns, +/area/service/kitchen) +"cce" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSRightEnd, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/wood, +/area/service/kitchen) +"ccf" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSMiddle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/wood, +/area/service/kitchen) +"ccg" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSMiddle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/kitchen) +"cch" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSLeftEnd, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/wood, +/area/service/kitchen) +"cci" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"ccj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"cck" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/indestructible, +/area/cargo/storage) +"ccl" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/indestructible, +/area/cargo/storage) +"ccm" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/indestructible, +/area/cargo/storage) +"ccn" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/indestructible, +/area/cargo/storage) +"cco" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"ccp" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/sign/departments/custodian{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"ccq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"ccr" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"ccs" = ( +/obj/effect/festive/street/sidewalks, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"cct" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/progcastaux) +"ccu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"ccv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"ccw" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"ccx" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/bundlenatural{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/pen/fountain, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"ccy" = ( +/obj/effect/festive/street/streetlinewest, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"ccz" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"ccA" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"ccB" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"ccC" = ( +/obj/machinery/door/airlock/mining{ + name = "Quartermaster's Quarters"; + req_access_txt = "41" + }, +/turf/open/floor/carpet/orange, +/area/cargo/qm) +"ccD" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"ccE" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/orange, +/area/cargo/qm) +"ccF" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/progcastaux) +"ccG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/progcastaux) +"ccH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/progcastaux) +"ccI" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"ccJ" = ( +/obj/machinery/vending/kink{ + extended_inventory = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"ccK" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood, +/area/maintenance/bar) +"ccL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"ccM" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/indestructible, +/area/cargo/storage) +"ccN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"ccO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"ccP" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"ccQ" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"ccR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"ccS" = ( +/obj/structure/table/wood, +/obj/item/lipstick{ + pixel_x = 4 + }, +/obj/item/lipstick/black, +/obj/item/lipstick/jade{ + pixel_x = -4 + }, +/obj/item/lipstick/purple{ + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"ccT" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"ccU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"ccV" = ( +/turf/closed/festive/bluebrick, +/area/commons/cryopod) +"ccW" = ( +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"ccX" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"ccY" = ( +/obj/machinery/cryopod, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"ccZ" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Hotel" + }, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"cda" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/decal/festive/holly, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/cryopod) +"cdb" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/decal/festive/red_stockings, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/cryopod) +"cdc" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plasteel/elevatorshaft, +/area/commons/cryopod) +"cdd" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Hotel" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/cryopod) +"cde" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/commons/cryopod) +"cdf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/blue, +/area/commons/cryopod) +"cdg" = ( +/obj/effect/festive/street/sidewalkw, +/obj/effect/festive/street/streetliftedtile2, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"cdh" = ( +/obj/structure/table/wood/fancy/blue, +/turf/open/floor/carpet/blue, +/area/commons/cryopod) +"cdi" = ( +/turf/open/floor/carpet/blue, +/area/commons/cryopod) +"cdj" = ( +/obj/structure/festive/bluebrick/windowWERight, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/cryopod) +"cdk" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"cdl" = ( +/obj/effect/festive/street/sidewalke, +/obj/effect/festive/street/streetliftedtile1, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/progcastaux) +"cdm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/progcastaux) +"cdn" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/festive/trainplatform/nwcorner, +/turf/open/floor/plating/dirt, +/area/edina) +"cdo" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/progcastaux) +"cdp" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"cdq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/holofloor/ice, +/area/edina) +"cdr" = ( +/obj/structure/fence, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"cds" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall/r_wall, +/area/engineering) +"cdt" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/obj/structure/sign/departments/security, +/turf/closed/wall/mineral/iron, +/area/security) +"cdu" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/primary/progress) +"cdv" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall/mineral/iron, +/area/security) +"cdw" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/science/research) +"cdx" = ( +/obj/structure/fence, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cdy" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/aux) +"cdz" = ( +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 8 + }, +/turf/closed/festive/greybrick, +/area/service/cafeteria) +"cdA" = ( +/obj/structure/sign/directions/evac{ + dir = 1 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = -8 + }, +/turf/closed/festive/whitebrick{ + color = "#993e28" + }, +/area/service/library) +"cdB" = ( +/obj/structure/sign/directions/engineering{ + dir = 8 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = -8 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/turf/closed/festive/greybrick, +/area/edina) +"cdC" = ( +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 1 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = 8 + }, +/turf/closed/festive/greybrick, +/area/edina) +"cdD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/stairs/right, +/area/service/cafeteria) +"cdE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/royalblue, +/area/service/cafeteria) +"cdF" = ( +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"cdG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"cdH" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cdI" = ( +/obj/structure/chair/comfy/teal, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"cdJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"cdK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"cdL" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cdM" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/lobby) +"cdN" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/lobby) +"cdO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cdP" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSRightEnd, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cdQ" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSLeftEnd, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cdR" = ( +/obj/structure/sign/departments/security, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/closed/festive/redbrick/redbrickcornerne, +/area/medical/medbay/lobby) +"cdS" = ( +/obj/machinery/door/airlock/security{ + name = "Security Post - Medical"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"cdT" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWERightEnd, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cdU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"cdV" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWELeft, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cdW" = ( +/obj/structure/chair/wood/normal, +/obj/effect/decal/festive/christmas_ivy_string, +/obj/effect/landmark/start/assistant, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"cdX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"cdY" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"cdZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cea" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"ceb" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "cardoor"; + name = "Cargo Cell"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/indestructible, +/area/security/checkpoint/supply) +"cec" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/cargo/sorting) +"ced" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWERight, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow, +/turf/closed/festive/redbrick, +/area/security/checkpoint/supply) +"cee" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/structure/closet/secure_closet/brig{ + id = "cargocell"; + name = "Cargo Cell Locker" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cef" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/aux) +"ceg" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/indestructible, +/area/security/checkpoint/supply) +"ceh" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWERightEnd, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, +/area/security/checkpoint/supply) +"cei" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cej" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cek" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/obj/machinery/camera{ + c_tag = "Cargo Security Post" + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cel" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cem" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cen" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWEMiddle, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow, +/turf/closed/festive/redbrick, +/area/security/checkpoint/supply) +"ceo" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/indestructible, +/area/security/checkpoint/supply) +"cep" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWELeft, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/white, +/area/security/checkpoint/supply) +"ceq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cer" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"ces" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cet" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"ceu" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cev" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWELeft, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow, +/turf/closed/festive/redbrick, +/area/security/checkpoint/supply) +"cew" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "cardoor"; + name = "Cargo Cell"; + req_access_txt = "63" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cex" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cey" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cez" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"ceA" = ( +/obj/structure/closet/secure_closet/security/cargo, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"ceB" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"ceC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/closed/festive/redbrick, +/area/security/checkpoint/supply) +"ceD" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSRightEnd, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/closed/festive/redbrick, +/area/security/checkpoint/supply) +"ceE" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSLeft, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/closed/festive/redbrick, +/area/security/checkpoint/supply) +"ceF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/closed/festive/redbrick, +/area/security/checkpoint/supply) +"ceG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible, +/area/cargo/sorting) +"ceH" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/indestructible, +/area/cargo/storage) +"ceI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/indestructible, +/area/cargo/storage) +"ceJ" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/indestructible, +/area/cargo/storage) +"ceK" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"ceL" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"ceM" = ( +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"ceN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"ceO" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"ceP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"ceQ" = ( +/obj/machinery/door/airlock/wood, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"ceR" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"ceS" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"ceT" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"ceU" = ( +/obj/structure/bed, +/obj/item/bedsheet/qm, +/turf/open/floor/carpet/orange, +/area/cargo/qm) +"ceV" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"ceW" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/supply) +"ceX" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"ceY" = ( +/obj/structure/fence, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"ceZ" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"cfa" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cfb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cfc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cfd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"cfe" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"cff" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/festive/street/sidewalkw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cfg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/yellowsiding/corner, +/area/commons/fitness/pool) +"cfh" = ( +/turf/open/floor/plasteel/yellowsiding, +/area/commons/fitness/pool) +"cfi" = ( +/obj/machinery/pool/controller, +/turf/open/floor/plasteel/yellowsiding, +/area/commons/fitness/pool) +"cfj" = ( +/turf/open/floor/plasteel/yellowsiding/corner{ + dir = 8 + }, +/area/commons/fitness/pool) +"cfk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness) +"cfl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness) +"cfm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness) +"cfn" = ( +/obj/machinery/door/airlock/medical{ + name = "Restroom" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/commons/fitness) +"cfo" = ( +/turf/open/floor/wood, +/area/commons/fitness) +"cfp" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWEMiddle, +/turf/open/floor/plasteel/white, +/area/commons/fitness/pool) +"cfq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/bed, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"cfr" = ( +/turf/open/floor/plasteel/yellowsiding{ + dir = 4 + }, +/area/commons/fitness/pool) +"cfs" = ( +/obj/machinery/pool/filter{ + pixel_y = 16 + }, +/turf/open/pool, +/area/commons/fitness/pool) +"cft" = ( +/turf/open/pool, +/area/commons/fitness/pool) +"cfu" = ( +/obj/structure/pool/ladder{ + dir = 2; + pixel_y = 24 + }, +/turf/open/pool, +/area/commons/fitness/pool) +"cfv" = ( +/turf/open/floor/plasteel/yellowsiding{ + dir = 8 + }, +/area/commons/fitness/pool) +"cfw" = ( +/obj/structure/sign/departments/restroom{ + pixel_y = 32 + }, +/obj/effect/decal/festive/christmas_ivy_string{ + pixel_y = 32 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/commons/fitness) +"cfx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cfy" = ( +/obj/effect/decal/festive/christmas_ivy_string{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"cfz" = ( +/obj/structure/punching_bag, +/obj/effect/decal/festive/fairylights{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"cfA" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel/white, +/area/commons/fitness) +"cfB" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plasteel/white, +/area/commons/fitness) +"cfC" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel/white, +/area/commons/fitness) +"cfD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/festive/whitebrick{ + color = "#ffe6a8" + }, +/area/commons/fitness) +"cfE" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"cfF" = ( +/obj/structure/sign/poster/official/walk{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel/yellowsiding{ + dir = 8 + }, +/area/commons/fitness/pool) +"cfG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/festive/street/sidewalkwem, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cfH" = ( +/obj/structure/weightmachine/stacklifter, +/turf/open/floor/plasteel/grimy, +/area/commons/fitness) +"cfI" = ( +/turf/open/floor/plasteel/grimy, +/area/commons/fitness) +"cfJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/fitness) +"cfK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/fitness) +"cfL" = ( +/obj/structure/table/glass, +/obj/structure/window/spawner/east, +/obj/item/storage/firstaid, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"cfM" = ( +/obj/effect/decal/festive/christmas_ivy_string{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cfN" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel/grimy, +/area/commons/fitness) +"cfO" = ( +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/obj/effect/decal/festive/fairylights{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cfP" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/commons/fitness) +"cfQ" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/obj/effect/decal/festive/christmas_ivy_string{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cfR" = ( +/obj/effect/decal/festive/fairylights{ + pixel_y = 32 + }, +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cfS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/commons/fitness) +"cfT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"cfU" = ( +/obj/structure/sign/poster/contraband/punch_shit{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"cfV" = ( +/obj/structure/pool/ladder{ + pixel_x = -4 + }, +/turf/open/pool, +/area/commons/fitness/pool) +"cfW" = ( +/obj/machinery/pool/drain, +/turf/open/pool, +/area/commons/fitness/pool) +"cfX" = ( +/obj/machinery/door/window/eastleft{ + name = "Pool Room" + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"cfY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood, +/area/commons/fitness) +"cfZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/wood/fancy/green, +/obj/item/clothing/gloves/boxing{ + pixel_y = 12 + }, +/obj/item/clothing/gloves/boxing/blue{ + pixel_y = 4 + }, +/obj/item/clothing/gloves/boxing/green{ + pixel_y = -4 + }, +/obj/item/clothing/gloves/boxing/yellow{ + pixel_y = -12 + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cga" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"cgb" = ( +/obj/structure/pool/Lboard, +/turf/open/pool, +/area/commons/fitness/pool) +"cgc" = ( +/obj/structure/pool/Rboard, +/turf/open/floor/plasteel/yellowsiding{ + dir = 8 + }, +/area/commons/fitness/pool) +"cgd" = ( +/obj/structure/window/spawner/east, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"cge" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/commons/fitness) +"cgf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cgg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cgh" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/table/wood/fancy/green, +/obj/machinery/power/apc{ + areastring = "/area/commons/fitness"; + dir = 4; + name = "Gymnasium APC"; + pixel_x = 26 + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cgi" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowWELeftEnd, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/fitness/pool) +"cgj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"cgk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/yellowsiding{ + dir = 4 + }, +/area/commons/fitness/pool) +"cgl" = ( +/obj/structure/window/spawner/east, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"cgm" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cgn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cgo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cgp" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cgq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"cgr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/yellowsiding/corner{ + dir = 4 + }, +/area/commons/fitness/pool) +"cgs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light, +/turf/open/floor/plasteel/yellowsiding{ + dir = 1 + }, +/area/commons/fitness/pool) +"cgt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/yellowsiding{ + dir = 1 + }, +/area/commons/fitness/pool) +"cgu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/yellowsiding{ + dir = 1 + }, +/area/commons/fitness/pool) +"cgv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/firealarm{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/yellowsiding/corner{ + dir = 1 + }, +/area/commons/fitness/pool) +"cgw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/window/spawner/east, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/pool) +"cgx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cgy" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSRightEnd, +/turf/open/floor/plasteel/white, +/area/commons/fitness/pool) +"cgz" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/turf/open/floor/plasteel/white, +/area/commons/fitness/pool) +"cgA" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSLeftEnd, +/turf/open/floor/plasteel/white, +/area/commons/fitness/pool) +"cgB" = ( +/obj/machinery/door/airlock/glass_large{ + name = "Gymnasium" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/commons/fitness) +"cgC" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/sidewalke, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cgD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cgE" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cgF" = ( +/obj/structure/statue/snow/snowman, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science/research) +"cgG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"cgH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/holofloor/wood, +/area/medical/chemistry) +"cgI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/carpet/orange, +/area/medical/chemistry) +"cgJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"cgK" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cgL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/indestructible, +/area/service/janitor) +"cgM" = ( +/obj/machinery/door/poddoor/shutters{ + id = "custodialshutters"; + name = "Custodial Closet Shutters" + }, +/turf/open/indestructible, +/area/service/janitor) +"cgN" = ( +/obj/effect/festive/street/streetlinewest, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"cgO" = ( +/obj/machinery/vending/wardrobe/jani_wardrobe, +/obj/effect/decal/festive/christmas_ivy_string, +/obj/effect/turf_decal/stripes/line, +/turf/open/indestructible, +/area/service/janitor) +"cgP" = ( +/obj/structure/closet/jcloset, +/obj/item/storage/bag/trash, +/obj/item/clothing/under/rank/civilian/janitor/maid, +/obj/item/clothing/under/rank/civilian/janitor/maid, +/obj/item/clothing/under/rank/civilian/janitor/maid, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/under/costume/maid, +/obj/effect/decal/festive/christmas_ivy_string, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/indestructible, +/area/service/janitor) +"cgQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"cgR" = ( +/obj/effect/festive/street/streetlinenm, +/obj/machinery/button/door{ + id = "custodialshutters"; + name = "Custodial Shutters"; + pixel_x = -26; + req_access_txt = "26" + }, +/turf/open/indestructible, +/area/service/janitor) +"cgS" = ( +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/turf/open/indestructible, +/area/service/janitor) +"cgT" = ( +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_x = -32 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"cgU" = ( +/turf/closed/festive/bluebrick, +/area/commons/dorms) +"cgV" = ( +/obj/effect/landmark/start/janitor, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"cgW" = ( +/obj/effect/festive/street/streetlineeast, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"cgX" = ( +/obj/machinery/door/airlock{ + glass = 1; + name = "Custodial Closet"; + req_access_txt = "26" + }, +/turf/open/indestructible, +/area/service/janitor) +"cgY" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWERightEnd, +/turf/open/indestructible, +/area/service/janitor) +"cgZ" = ( +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/storage/box/mousetraps, +/obj/item/watertank/janitor, +/obj/item/construction/rld, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/indestructible, +/area/service/janitor) +"cha" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"chb" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/cargo/warehouse) +"chc" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"chd" = ( +/obj/effect/landmark/start/janitor, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"che" = ( +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/water_vapor, +/turf/open/indestructible, +/area/service/janitor) +"chf" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWELeft, +/turf/open/indestructible, +/area/service/janitor) +"chg" = ( +/obj/structure/table, +/obj/structure/bedsheetbin/towel, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/indestructible, +/area/service/janitor) +"chh" = ( +/obj/structure/janitorialcart, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"chi" = ( +/obj/structure/closet/crate/internals, +/turf/open/floor/plating, +/area/cargo/warehouse) +"chj" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/festive/street/streetliftedtile2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"chk" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/aux) +"chl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"chm" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"chn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"cho" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "QMgarage"; + name = "Garage door button"; + pixel_y = 28 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"chp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"chq" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"chr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"chs" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"cht" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"chu" = ( +/obj/machinery/button/door{ + id = "QMgarage"; + name = "Garage door button"; + pixel_x = -28 + }, +/obj/effect/festive/street/streetlinenm, +/turf/open/floor/festive/cobblestone, +/area/cargo/qm) +"chv" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"chw" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"chx" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"chy" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"chz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"chA" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chB" = ( +/turf/closed/wall/mineral/plastitanium, +/area/edina) +"chC" = ( +/obj/structure/sign/poster/contraband/syndicate_logo, +/turf/closed/wall/mineral/plastitanium, +/area/edina) +"chD" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 10 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chF" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chG" = ( +/obj/structure/table/wood/fancy/blackred, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chH" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chJ" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chK" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 5 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chL" = ( +/obj/machinery/grill, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"chM" = ( +/obj/machinery/deepfryer, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"chN" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/processor, +/obj/machinery/button/door{ + id = "Syndicafe"; + name = "Cafe Shutters"; + pixel_y = 24 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"chO" = ( +/obj/structure/table/wood/fancy/blackred, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "syndicafe" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"chP" = ( +/obj/structure/table/wood/fancy/blackred, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "syndicafe" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"chQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chR" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chS" = ( +/obj/structure/table/wood/fancy/blackred, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chT" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chU" = ( +/obj/structure/table/wood/fancy/red, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chV" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"chW" = ( +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"chX" = ( +/obj/structure/table/wood/fancy/blackred, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "syndicafe" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"chY" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"chZ" = ( +/obj/machinery/door/airlock/centcom{ + name = "Syndicafe Entrance" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/edina) +"cia" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"cib" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"cic" = ( +/obj/machinery/vending/boozeomat/pubby_maint, +/turf/closed/wall/mineral/plastitanium, +/area/edina) +"cid" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"cie" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/cable/yellow, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"cif" = ( +/obj/structure/rack{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "minibar_left"; + name = "skeletal minibar" + }, +/obj/machinery/microwave{ + pixel_y = 12 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"cig" = ( +/obj/structure/rack{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "minibar_right"; + name = "skeletal minibar" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"cih" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"cii" = ( +/obj/structure/table/wood/fancy/blackred, +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/chem_dispenser/drinks/fullupgrade{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"cij" = ( +/obj/structure/table/wood/fancy/blackred, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "syndicafe" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/edina) +"cik" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 10 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"cil" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"cim" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina) +"cin" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"cio" = ( +/obj/structure/table/wood/fancy/blackred, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina) +"cip" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"ciq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"cir" = ( +/obj/effect/turf_decal/bot, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"cis" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargocars" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"cit" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargocars" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"ciu" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargocars" + }, +/obj/structure/plasticflaps, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"civ" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/warehouse) +"ciw" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/cargo/qm) +"cix" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/cargo/qm) +"ciy" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"ciz" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"ciA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposaloutlet, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"ciB" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"ciC" = ( +/obj/machinery/computer/cargo, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/cargo/qm) +"ciD" = ( +/obj/machinery/computer/bounty, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/cargo/qm) +"ciE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/qm) +"ciF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"ciG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"ciH" = ( +/obj/effect/festive/street/streetlinenm, +/obj/vehicle/sealed/vectorcraft/auto{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/cargo/qm) +"ciI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window, +/obj/effect/turf_decal/bot, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"ciJ" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"ciK" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/cargo/qm) +"ciL" = ( +/obj/structure/closet/cabinet{ + pixel_y = 15 + }, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"ciM" = ( +/obj/structure/dresser{ + pixel_y = 15 + }, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_y = 30 + }, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"ciN" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"ciO" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"ciP" = ( +/obj/machinery/vending/cola/sodie, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"ciQ" = ( +/obj/effect/landmark/start/quartermaster, +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/cargo/qm) +"ciR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/cargo/qm) +"ciS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"ciT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"ciU" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"ciV" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/effect/decal/festive/christmas_reef, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"ciW" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"ciX" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Reclaiming center" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"ciY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"ciZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"cja" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"cjb" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"cjc" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"cjd" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cje" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cjf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cjg" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cjh" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cji" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cjj" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cjk" = ( +/obj/structure/sign/departments/cargo{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"cjl" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cjm" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 9 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cjn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cjo" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/med) +"cjp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"cjq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"cjr" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/computer/bounty{ + dir = 8 + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"cjs" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"cjt" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/servitor) +"cju" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"cjv" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"cjw" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargocars" + }, +/obj/structure/plasticflaps, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"cjx" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "cargoload" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"cjy" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargocars" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"cjz" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "cargocars" + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"cjA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/indestructible, +/area/cargo/sorting) +"cjB" = ( +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"cjC" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign2"; + pixel_y = 32 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/indestructible, +/area/cargo/sorting) +"cjD" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign3"; + pixel_y = 32 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/alleyway, +/area/cargo/sorting) +"cjE" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign2"; + pixel_y = 32 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/alleyway, +/area/cargo/sorting) +"cjF" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign3"; + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/alleyway, +/area/cargo/sorting) +"cjG" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign4"; + pixel_y = 32 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/alleyway, +/area/cargo/sorting) +"cjH" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/plasticflaps, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign5"; + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/festive/alleyway, +/area/cargo/sorting) +"cjI" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/plasticflaps, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/storage) +"cjJ" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"cjK" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"cjL" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Delivery Office"; + req_access_txt = 0; + req_one_access_txt = "48;50" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/sorting) +"cjM" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/storage) +"cjN" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Delivery Office"; + req_access_txt = 0; + req_one_access_txt = "48;50" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/sorting) +"cjO" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/indestructible, +/area/cargo/storage) +"cjP" = ( +/obj/structure/festive/bluebrick/windowWEMiddle, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/cryopod) +"cjQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/carpet/blue, +/area/commons/cryopod) +"cjR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet/blue, +/area/commons/cryopod) +"cjS" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/carpet/blue, +/area/commons/cryopod) +"cjT" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cjU" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Tool Shoppe" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"cjV" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/vehicle/sealed/vectorcraft, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"cjW" = ( +/obj/effect/festive/street/streetlinewest, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"cjX" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/checker, +/area/commons/dorms) +"cjY" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cjZ" = ( +/obj/effect/festive/street/streetlineem{ + pixel_x = 3 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cka" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/white_alleyway{ + color = "#ffe994" + }, +/area/edina/backstreet/med) +"ckb" = ( +/turf/closed/festive/whitebrick{ + color = "#555555" + }, +/area/science/research) +"ckc" = ( +/obj/effect/festive/street/streetlineem{ + pixel_x = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/white_alleyway{ + color = "#ffe994" + }, +/area/edina/backstreet/med) +"ckd" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"cke" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"ckf" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = -5 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/aux) +"ckg" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/aux) +"ckh" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"cki" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"ckj" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"ckk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"ckl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"ckm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"ckn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"cko" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"ckp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/junction, +/obj/machinery/door/window/northright, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"ckq" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"ckr" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/indestructible, +/area/service/janitor) +"cks" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"ckt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cku" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"ckv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"ckw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"ckx" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"cky" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + name = "Medbay Junction"; + sortType = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"ckz" = ( +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"ckA" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/aux) +"ckB" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/aux) +"ckC" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"ckD" = ( +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"ckE" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"ckF" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"ckG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"ckH" = ( +/turf/closed/mineral/snowmountain, +/area/edina/backstreet) +"ckI" = ( +/obj/effect/festive/street/streetlinene, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"ckJ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"ckK" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"ckL" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"ckM" = ( +/obj/effect/festive/street/sidewalke, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"ckN" = ( +/obj/effect/festive/street/streetlineem{ + pixel_x = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"ckO" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"ckP" = ( +/obj/structure/streetdecor/lampfestive, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"ckQ" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"ckR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessservitor) +"ckS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"ckT" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"ckU" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/festive/trainplatform/swcorner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"ckV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"ckW" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"ckX" = ( +/obj/structure/festive/trainplatform/edge_east, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"ckY" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"ckZ" = ( +/obj/effect/festive/street/sidewalkn, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"cla" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"clb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"clc" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cld" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cle" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"clf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/vehicle/ridden/atv{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"clg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"clh" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessservitor) +"cli" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"clj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"clk" = ( +/obj/effect/festive/street/streetliftedtile1, +/obj/effect/festive/street/streetlinenw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"cll" = ( +/obj/structure/festive/trainplatform/nwcorner, +/obj/structure/festive/trainplatform/swcorner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"clm" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"cln" = ( +/obj/effect/festive/street/sidewalks, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"clo" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/aux) +"clp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/aux) +"clq" = ( +/obj/effect/festive/street/streetlineem{ + pixel_x = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"clr" = ( +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"cls" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/multitool, +/obj/item/multitool, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clt" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"clu" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clv" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/supply) +"clw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"clx" = ( +/obj/effect/festive/street/sidewalkw, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"cly" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clz" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/supply) +"clA" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clB" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/carpet/red, +/area/service/bar) +"clC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Tool Storage" + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clD" = ( +/obj/structure/rack, +/obj/item/airlock_painter, +/obj/item/toner, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clE" = ( +/obj/machinery/camera{ + c_tag = "Primary Tool Storage"; + dir = 4; + name = "Tool Shoppe camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clF" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/festive/greybrick, +/area/service/janitor) +"clG" = ( +/obj/structure/closet/l3closet/janitor, +/obj/effect/decal/festive/christmas_ivy_string, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/turf/open/indestructible, +/area/service/janitor) +"clH" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"clI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"clJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clK" = ( +/obj/machinery/door/airlock{ + glass = 1; + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/indestructible, +/area/service/janitor) +"clL" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/effect/festive/street/streetliftedtile2, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"clM" = ( +/obj/effect/festive/street/sidewalke, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"clN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"clO" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"clP" = ( +/obj/effect/festive/street/streetlineinnernw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"clQ" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clR" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clS" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clT" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/stack/cable_coil/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clU" = ( +/obj/structure/table/reinforced, +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/radio, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clV" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clW" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/gps, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clX" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"clY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"clZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"cma" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"cmb" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/contraband/tools{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"cmc" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"cmd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"cme" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"cmf" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cmg" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cmh" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cmi" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/supply) +"cmj" = ( +/obj/structure/streetdecor/lampfestive, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cmk" = ( +/obj/effect/festive/street/streetlinene, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cml" = ( +/obj/effect/festive/street/sidewalkn, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cmm" = ( +/obj/effect/festive/street/streetliftedtile1, +/obj/effect/festive/street/streetlinenw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cmn" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/streetliftedtile1, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cmo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cmp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"cmq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"cmr" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/grey_tide{ + pixel_y = 32 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"cms" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/hacking_guide{ + pixel_y = 32 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"cmt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/janitor, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"cmu" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"cmv" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cmw" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cmx" = ( +/obj/effect/festive/street/sidewalks, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cmy" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cmz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/supply) +"cmA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"cmB" = ( +/obj/effect/festive/street/streetlinewest, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cmC" = ( +/turf/closed/festive/whitebrick, +/area/edina/backstreet/med) +"cmD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cmE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cmF" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cmG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cmH" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"cmI" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = -5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"cmJ" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/supply) +"cmK" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/supply) +"cmL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cmM" = ( +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cmN" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/departments/cargo{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/supply) +"cmO" = ( +/obj/structure/flora/grass/green, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/secondary/supply) +"cmP" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cmQ" = ( +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/secondary/supply) +"cmR" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cmS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/streetdecor/lampfestive, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cmT" = ( +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"cmU" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"cmV" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/sidewalke, +/obj/effect/festive/street/streetliftedtile1, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cmW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cmX" = ( +/obj/effect/festive/street/streetlineem{ + pixel_x = 3 + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cmY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cmZ" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cna" = ( +/turf/closed/festive/redbrick, +/area/commons/dorms) +"cnb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnc" = ( +/obj/effect/festive/street/streetlineem{ + pixel_x = 3 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnd" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"cne" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cnf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/supply) +"cng" = ( +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/supply) +"cnh" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/edina) +"cni" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/floor/mineral/titanium/blue, +/area/edina) +"cnj" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/edina) +"cnk" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/bundlenatural{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/pen/fountain, +/turf/open/floor/wood, +/area/edina) +"cnl" = ( +/turf/open/floor/carpet, +/area/edina) +"cnm" = ( +/obj/structure/fireplace, +/turf/open/floor/carpet, +/area/edina) +"cnn" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/supply) +"cno" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina) +"cnp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"cnr" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/festive/street/streetlinewest, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"cns" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cnt" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"cnu" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"cnv" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"cnw" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/princess) +"cnx" = ( +/obj/effect/decal/festive/fairylights, +/obj/structure/flora/grass/green, +/turf/open/floor/grass/snow/edina, +/area/edina/street/primary/perimeter) +"cny" = ( +/obj/effect/decal/festive/fairylights, +/turf/open/floor/grass/snow/edina, +/area/edina/street/primary/perimeter) +"cnz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/stairs/left, +/area/edina/street/primary/perimeter) +"cnA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/stairs/right, +/area/edina/street/primary/perimeter) +"cnB" = ( +/turf/open/floor/grass/snow/edina, +/area/edina/street/primary/perimeter) +"cnC" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnE" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnF" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/supply) +"cnG" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnL" = ( +/obj/effect/festive/street/sidewalkw, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cnM" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cnN" = ( +/obj/effect/festive/street/sidewalke, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cnO" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnP" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnQ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnR" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnS" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "clowngarage"; + name = "Garage Door"; + pixel_y = 28 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnU" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnV" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cnZ" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"coa" = ( +/obj/effect/festive/street/sidewalkn, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cob" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"coc" = ( +/obj/effect/festive/street/streetlinenw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cod" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"coe" = ( +/obj/effect/festive/street/streetlinene, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cof" = ( +/obj/effect/festive/street/streetlinenw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cog" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"coh" = ( +/obj/effect/festive/street/sidewalkw, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"coi" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coj" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cok" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"col" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"com" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"con" = ( +/obj/structure/sign/departments/cargo{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coo" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cop" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coq" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cor" = ( +/obj/structure/curtain, +/turf/open/floor/mineral/titanium/blue, +/area/edina) +"cos" = ( +/obj/structure/festive/trainplatform/edge_east, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"cot" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cou" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cov" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cow" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cox" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"coy" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coB" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coC" = ( +/obj/effect/festive/street/sidewalkn, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"coD" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"coE" = ( +/obj/effect/festive/street/sidewalkn, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"coF" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"coG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"coH" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"coI" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coJ" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coL" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16; + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coM" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/cargo/sorting) +"coN" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWELeftEnd, +/turf/open/floor/wood, +/area/commons/dorms) +"coO" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coP" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"coQ" = ( +/obj/effect/festive/street/streetlinene, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"coR" = ( +/turf/open/floor/carpet/red, +/area/commons/dorms) +"coS" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"coT" = ( +/obj/effect/festive/street/sidewalkn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"coU" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"coV" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"coW" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"coX" = ( +/obj/effect/festive/street/sidewalkn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"coY" = ( +/obj/effect/festive/street/streetlinenw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"coZ" = ( +/obj/effect/festive/street/streetlinene, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpa" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"cpb" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"cpc" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"cpd" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/festive/street/streetlineinnerne, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cpe" = ( +/obj/effect/festive/street/streetlinenw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cpf" = ( +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cpg" = ( +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cph" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cpi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cpj" = ( +/obj/effect/festive/street/streetlineinnerne, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpk" = ( +/obj/structure/festive/trainplatform/edge_east, +/obj/structure/festive/trainplatform/edge_east, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpl" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cpn" = ( +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cpo" = ( +/obj/effect/festive/street/streetliftedtile1, +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpp" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpq" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpr" = ( +/obj/effect/festive/street/sidewalknsm, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cps" = ( +/obj/effect/festive/street/streetlineinnersw{ + pixel_x = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpt" = ( +/turf/open/floor/grass, +/area/edina) +"cpu" = ( +/obj/effect/festive/street/sidewalks, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpv" = ( +/obj/effect/festive/street/sidewalks, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpw" = ( +/obj/effect/festive/street/sidewalks, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpx" = ( +/obj/effect/festive/street/streetlineinnerse, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpy" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpz" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cpA" = ( +/obj/structure/festive/trainplatform/edge_east, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpB" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpD" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/royalblue, +/area/edina) +"cpE" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/railing, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpF" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpG" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/festive/trainplatform/secorner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpH" = ( +/obj/structure/festive/trainplatform/edge_north, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpI" = ( +/obj/structure/festive/trainplatform/swcorner, +/obj/structure/festive/trainplatform/secorner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpJ" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"cpK" = ( +/obj/structure/festive/trainplatform/swcorner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpL" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/festive/trainplatform/swcorner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpM" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cpN" = ( +/obj/effect/festive/street/streetlineem, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpO" = ( +/obj/effect/festive/street/streetlineem, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpP" = ( +/obj/effect/festive/street/streetlineem, +/obj/vehicle/sealed/vectorcraft/cyber, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpQ" = ( +/obj/effect/festive/street/streetlineem, +/obj/vehicle/sealed/vectorcraft, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpR" = ( +/obj/effect/festive/street/streetlineem, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpS" = ( +/obj/structure/fireplace{ + dir = 4; + pixel_x = -7 + }, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"cpT" = ( +/obj/structure/flora/grass/green, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/street/primary/perimeter) +"cpU" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpV" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpW" = ( +/obj/effect/festive/street/streetlineem, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpX" = ( +/obj/effect/festive/street/streetlineem, +/obj/effect/turf_decal/weather/snow/corner, +/obj/vehicle/sealed/vectorcraft/auto{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpY" = ( +/obj/effect/festive/street/streetlineem, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cpZ" = ( +/obj/effect/festive/street/streetlineem, +/obj/vehicle/sealed/vectorcraft/truck{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cqa" = ( +/obj/effect/festive/street/streetlineem, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cqb" = ( +/obj/machinery/door/airlock/mining/glass, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"cqc" = ( +/obj/effect/festive/street/streetlineem{ + pixel_x = 3 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cqd" = ( +/obj/machinery/door/airlock/wood/glass{ + glass = 0 + }, +/turf/open/floor/wood, +/area/edina) +"cqe" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/wood, +/area/edina) +"cqf" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/wood, +/area/edina) +"cqg" = ( +/obj/structure/festive/trainplatform/edge_south, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"cqh" = ( +/obj/structure/festive/trainplatform/nwcorner, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"cqi" = ( +/turf/open/floor/festive/white_alleyway{ + color = "#ffe994" + }, +/area/edina/backstreet/med) +"cqj" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"cqk" = ( +/obj/effect/festive/street/sidewalknsm, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cql" = ( +/obj/effect/festive/street/streetlineeast, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cqm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"cqn" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowWERightEnd, +/turf/open/floor/wood, +/area/commons/dorms) +"cqo" = ( +/obj/effect/festive/street/streetlinewest{ + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cqp" = ( +/obj/effect/festive/street/streetlinese, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cqq" = ( +/obj/effect/festive/street/streetlinesw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cqr" = ( +/obj/effect/festive/street/streetlineem{ + pixel_x = 1 + }, +/turf/open/floor/festive/white_alleyway{ + color = "#ffe994" + }, +/area/edina/backstreet/med) +"cqs" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cqt" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/festive/street/streetlineem, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cqu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cqv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cqw" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cqx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/crate/wooden, +/obj/effect/decal/festive/red_stockings, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"cqy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/reinforced, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"cqz" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/festive/red_stockings, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"cqA" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"cqB" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cqC" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cqD" = ( +/obj/structure/closet/cabinet{ + pixel_y = 15 + }, +/obj/item/coin/iron, +/obj/item/coin/iron, +/obj/item/coin/iron, +/turf/open/floor/carpet/black, +/area/edina) +"cqE" = ( +/turf/open/floor/carpet/black, +/area/edina) +"cqF" = ( +/obj/structure/dresser{ + pixel_y = 15 + }, +/turf/open/floor/carpet/black, +/area/edina) +"cqG" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/open/floor/wood, +/area/edina) +"cqH" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_x = -7; + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/edina) +"cqI" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/edina) +"cqJ" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/open/floor/wood, +/area/edina) +"cqK" = ( +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/supply) +"cqL" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"cqM" = ( +/obj/structure/chair/sofa, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"cqN" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/quartermaster, +/obj/structure/chair/sofa/left, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"cqO" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cqP" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cqQ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cqR" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cqS" = ( +/obj/structure/sign/poster/contraband/bountyhunters{ + pixel_y = -32 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/cargo/qm) +"cqT" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cqU" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cqV" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cqW" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cqX" = ( +/obj/effect/festive/street/streetlinesw, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cqY" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cqZ" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"cra" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crb" = ( +/obj/effect/festive/street/streetlinesouth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crc" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"cre" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"crf" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"crg" = ( +/obj/effect/festive/street/streetlinenw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"crh" = ( +/obj/effect/festive/street/streetlinene, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"cri" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"crj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"crk" = ( +/obj/effect/festive/street/streetlinewest{ + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crl" = ( +/obj/effect/festive/street/streetlinene, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crm" = ( +/obj/effect/festive/street/streetlinenw, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crn" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cro" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crp" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + name = "Medbay Junction"; + sortType = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crq" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crr" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crs" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crt" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"cru" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"crv" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"crw" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/caution{ + dir = 8; + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crx" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"cry" = ( +/obj/effect/festive/street/streetlineinnersw, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crz" = ( +/obj/effect/festive/street/streetlinesw, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crC" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crE" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crF" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"crH" = ( +/obj/effect/festive/street/streetlineinnersw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crI" = ( +/obj/effect/festive/street/sidewalks, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crJ" = ( +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/turf/open/floor/carpet/black, +/area/edina) +"crK" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/obj/item/bedsheet/random, +/turf/open/floor/carpet/black, +/area/edina) +"crL" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crM" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/open/floor/wood, +/area/edina) +"crN" = ( +/obj/structure/table/wood, +/obj/item/dice/d20, +/turf/open/floor/wood, +/area/edina) +"crO" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/open/floor/wood, +/area/edina) +"crP" = ( +/obj/effect/festive/street/streetlinesw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crQ" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crR" = ( +/obj/effect/festive/street/streetlinesouth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crS" = ( +/obj/effect/festive/street/sidewalks, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"crT" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crU" = ( +/obj/effect/festive/street/sidewalks, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"crV" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"crW" = ( +/obj/effect/festive/street/streetlinesouth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"crX" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"crY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"crZ" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"csa" = ( +/obj/effect/festive/street/sidewalks, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"csb" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/festive/street/streetlineinnerse, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/servitor) +"csc" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"csd" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"cse" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessservitor) +"csf" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"csg" = ( +/obj/effect/festive/street/streetliftedtile1, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"csh" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/arrows/white, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"csi" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"csj" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = 20 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessservitor) +"csk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"csl" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"csm" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"csn" = ( +/obj/structure/grille, +/obj/structure/festive/whitebrick/windowNSMiddle, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/cargo/sorting) +"cso" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/festive/street/streetliftedtile2, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"csp" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = 16 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"csq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"csr" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"css" = ( +/obj/structure/table/wood/fancy/blue, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"cst" = ( +/obj/structure/table/wood/fancy/blue, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"csu" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"csv" = ( +/obj/machinery/vending/cigarette/syndicate, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"csw" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 3 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/servitor) +"csx" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/primary/servitor) +"csy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessservitor) +"csz" = ( +/obj/effect/festive/street/sidewalkw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"csA" = ( +/obj/effect/festive/street/sidewalkwem, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"csB" = ( +/obj/effect/festive/street/sidewalke, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessservitor) +"csC" = ( +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/sign/directions/evac{ + pixel_x = 32; + pixel_y = -40 + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_x = 32; + pixel_y = -24 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessservitor) +"csD" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"csE" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"csF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/supply) +"csG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"csH" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"csI" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"csJ" = ( +/obj/effect/festive/street/streetlinesw, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"csK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/supply) +"csL" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"csM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"csN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"csO" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"csP" = ( +/obj/structure/festive/bluebrick/windowWELeftEnd, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/cryopod) +"csQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/south) +"csR" = ( +/obj/effect/festive/street/sidewalkw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"csS" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"csT" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"csU" = ( +/obj/effect/festive/street/sidewalke, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"csV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/south) +"csW" = ( +/obj/structure/sign/directions/evac{ + dir = 1 + }, +/turf/closed/festive/bluebrick, +/area/commons/cryopod) +"csX" = ( +/obj/structure/festive/bluebrick/windowNSRightEnd, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/cryopod) +"csY" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/south) +"csZ" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"cta" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctb" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctc" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctd" = ( +/obj/effect/festive/street/streetlineeast, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"cte" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/south) +"ctf" = ( +/obj/structure/festive/bluebrick/windowNSLeftEnd, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/cryopod) +"ctg" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Hotel" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/blue, +/area/commons/cryopod) +"cth" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"cti" = ( +/obj/effect/festive/street/streetlinenw, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctk" = ( +/obj/effect/festive/street/streetlinene, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctl" = ( +/obj/effect/festive/street/streetlinenw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctm" = ( +/obj/effect/festive/street/streetlinene, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/white_alleyway{ + color = "#967832" + }, +/area/edina/backstreet/supply) +"cto" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Hotel" + }, +/turf/open/floor/carpet/blue, +/area/commons/cryopod) +"ctp" = ( +/obj/structure/festive/bluebrick/windowNSMiddle, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/cryopod) +"ctq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"cts" = ( +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/south) +"ctu" = ( +/obj/effect/festive/street/sidewalknsm, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctv" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctw" = ( +/obj/effect/festive/street/streetlinesw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctx" = ( +/obj/effect/festive/street/streetlinese, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"cty" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile1, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctz" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctA" = ( +/obj/effect/festive/street/streetlinenw, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctB" = ( +/obj/effect/festive/street/streetlinene, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctC" = ( +/obj/effect/festive/street/streetlinenorth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctD" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctE" = ( +/obj/effect/festive/street/sidewalks, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctF" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctG" = ( +/obj/effect/festive/street/streetlinesouth, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"ctH" = ( +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/south) +"ctI" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/south) +"ctJ" = ( +/obj/structure/festive/trainplatform/edge_north, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/south) +"ctK" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"ctL" = ( +/obj/effect/festive/street/streetlinewest, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"ctM" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"ctN" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"ctO" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"ctP" = ( +/obj/effect/festive/street/sidewalkw, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"ctQ" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/plating/dirt, +/area/edina) +"ctR" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/plating/dirt, +/area/edina) +"ctS" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/festive/street/streetliftedtile2, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"ctT" = ( +/obj/effect/festive/street/sidewalke, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"ctU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"ctV" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"ctW" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"ctX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"ctY" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"ctZ" = ( +/obj/effect/turf_decal/caution, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cua" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 1 + }, +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cub" = ( +/obj/effect/festive/street/streetlinenm{ + pixel_y = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cuc" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/festive/street/streetlinenm{ + pixel_y = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cud" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cue" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cuf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/supply) +"cug" = ( +/obj/structure/statue/snow/snowman, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina/backstreet/supply) +"cuh" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cui" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/med) +"cuj" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cuk" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cul" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"cum" = ( +/obj/effect/festive/street/streetlinenw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"cun" = ( +/obj/effect/festive/street/streetlinene, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"cuo" = ( +/obj/effect/festive/street/streetlinenw, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"cup" = ( +/obj/effect/festive/street/streetlinene, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"cuq" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"cur" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"cus" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"cut" = ( +/turf/open/floor/carpet/red, +/area/edina/crew_quarters/store/clothes) +"cuu" = ( +/obj/effect/decal/festive/mistletoe, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"cuv" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"cuw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"cux" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"cuy" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"cuz" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/secondary/command) +"cuA" = ( +/obj/effect/festive/street/streetlinesw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/princess) +"cuB" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"cuC" = ( +/obj/effect/festive/street/sidewalkwem, +/obj/effect/festive/street/streetliftedtile2, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"cuD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cuE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"cuF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"cuG" = ( +/obj/effect/festive/street/sidewalkn, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"cuH" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"cuI" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile1, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"cuJ" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"cuK" = ( +/obj/effect/festive/street/sidewalks, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/servsuppaux) +"cuL" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/sign/departments/cargo{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"cuM" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/supply) +"cuN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/indestructible, +/area/cargo/office{ + name = "Post Office Lobby" + }) +"cuO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/supply) +"cuP" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/secondary/supply) +"cuQ" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWERightEnd, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"cuR" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWE, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"cuS" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"cuT" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowWELeftEnd, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"cuU" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"cuV" = ( +/obj/structure/sign/departments/security, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/closed/festive/redbrick, +/area/security/checkpoint/science) +"cuW" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSRightEnd, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"cuX" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSMiddle, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"cuY" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSLeftEnd, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"cuZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"cva" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/alleyway, +/area/science/research) +"cvb" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "meddoor"; + name = "Medical Cell"; + req_access_txt = "63" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"cvc" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"cvd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"cve" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"cvf" = ( +/obj/structure/fence, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"cvg" = ( +/obj/effect/festive/street/sidewalkw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cvh" = ( +/obj/effect/festive/street/streetlinewest, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cvi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"cvj" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessprogress) +"cvk" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"cvl" = ( +/obj/effect/festive/street/streetlineeast, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"cvm" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"cvn" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessprogress) +"cvo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/progress) +"cvp" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessprogress) +"cvq" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cvr" = ( +/obj/effect/festive/street/streetlinenw, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cvs" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cvt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cvu" = ( +/obj/structure/spacevine, +/turf/open/floor/grass, +/area/edina) +"cvv" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cvw" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cvx" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cvy" = ( +/obj/effect/festive/street/streetliftedtile2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cvz" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"cvA" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cvB" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cvC" = ( +/obj/effect/festive/street/sidewalks, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"cvD" = ( +/obj/effect/festive/street/streetlinesouth, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"cvE" = ( +/obj/effect/festive/street/streetlinesw, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"cvF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cvG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/north) +"cvH" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/north) +"cvI" = ( +/obj/effect/festive/street/streetlinewest, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/north) +"cvJ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/north) +"cvK" = ( +/turf/open/floor/plating/beach/water, +/area/edina) +"cvL" = ( +/turf/open/water, +/area/edina) +"cvM" = ( +/obj/structure/fence/post{ + dir = 8 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"cvN" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/south) +"cvO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cvP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cvQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/south) +"cvR" = ( +/obj/effect/festive/street/sidewalkn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"cvS" = ( +/turf/closed/wall/mineral/wood/nonmetal, +/area/maintenance/bar) +"cvT" = ( +/obj/effect/festive/street/sidewalkn, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"cvU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"cvV" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cvW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cvX" = ( +/obj/structure/spacevine, +/turf/open/floor/plating/beach/sand, +/area/edina) +"cvY" = ( +/obj/machinery/vending/clothing{ + extended_inventory = 1; + scan_id = 0 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cvZ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cwa" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cwb" = ( +/obj/machinery/door/airlock/security{ + name = "Security Post - Cargo"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cwc" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Break room" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/indestructible{ + icon_state = "sepia" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"cwd" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cwe" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cwf" = ( +/obj/structure/mirror/magic/lesser{ + pixel_x = 32 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/bar) +"cwg" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 10 + }, +/area/edina) +"cwh" = ( +/turf/open/floor/plating/beach/coastline_t, +/area/edina) +"cwi" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 8 + }, +/area/edina) +"cwj" = ( +/obj/machinery/vending/autodrobe{ + extended_inventory = 1; + scan_id = 0 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cwk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"cwl" = ( +/turf/open/floor/wood, +/area/maintenance/bar) +"cwm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cwn" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 8 + }, +/area/edina) +"cwo" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/maintenance/bar) +"cwp" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"cwq" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"cwr" = ( +/turf/open/floor/festive/stairs/stairsnorth, +/area/maintenance/bar) +"cws" = ( +/obj/item/storage/toolbox/emergency, +/turf/open/floor/wood, +/area/maintenance/bar) +"cwt" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 1 + }, +/area/edina) +"cwu" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 5 + }, +/area/edina) +"cwv" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"cww" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cwx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cwy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cwz" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cwA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/mineral/wood/nonmetal, +/area/maintenance/bar) +"cwB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/mineral/wood/nonmetal, +/area/maintenance/bar) +"cwC" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/festive/trainplatform, +/area/maintenance/bar) +"cwD" = ( +/turf/open/floor/plating/beach/sand, +/area/edina) +"cwE" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 1 + }, +/area/edina) +"cwF" = ( +/obj/structure/spacevine, +/turf/open/floor/plating/beach/coastline_t{ + dir = 1 + }, +/area/edina) +"cwG" = ( +/obj/machinery/vending/cola/random, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/wood, +/area/maintenance/bar) +"cwH" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/wood, +/area/maintenance/bar) +"cwI" = ( +/obj/structure/festive/trainplatform/edge_west, +/obj/structure/chair/stool/bar, +/turf/open/floor/light, +/area/maintenance/bar) +"cwJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/trainplatform, +/area/maintenance/bar) +"cwK" = ( +/turf/open/floor/festive/trainplatform, +/area/maintenance/bar) +"cwL" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/festive/trainplatform, +/area/maintenance/bar) +"cwM" = ( +/obj/structure/festive/trainplatform/edge_east, +/obj/structure/chair/stool/bar, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/light, +/area/maintenance/bar) +"cwN" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/wood, +/area/maintenance/bar) +"cwO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/indestructible, +/area/commons/locker{ + name = "Cargo Locker Room" + }) +"cwP" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet/supply) +"cwQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cwR" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16; + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cwS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cwT" = ( +/obj/effect/festive/street/streetlinenorth, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/festive/cobblestone, +/area/edina/street/intersection/princessperimeter/south) +"cwU" = ( +/obj/effect/festive/street/sidewalkn, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cwV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/festive/trainplatform, +/area/maintenance/bar) +"cwW" = ( +/obj/structure/festive/trainplatform/edge_east, +/obj/structure/chair/stool/bar, +/turf/open/floor/light, +/area/maintenance/bar) +"cwX" = ( +/obj/structure/spacevine, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"cwY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"cwZ" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cxa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cxb" = ( +/obj/effect/festive/street/streetlineem, +/turf/open/floor/festive/cobblestone, +/area/edina/street) +"cxc" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile1, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cxd" = ( +/obj/effect/festive/street/sidewalknsm, +/obj/effect/festive/street/streetliftedtile2, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cxe" = ( +/obj/effect/festive/street/sidewalks, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"cxf" = ( +/turf/closed/festive/bluebrick, +/area/maintenance/department/medical) +"cxg" = ( +/obj/machinery/door/airlock/glass_large{ + name = "Clinic" + }, +/obj/structure/barricade/wooden/snowed, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"cxh" = ( +/obj/structure/barricade/wooden/snowed, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cxi" = ( +/obj/structure/grille, +/obj/structure/festive/bluebrick/windowNSRight, +/obj/structure/barricade/wooden/crude/snow, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cxj" = ( +/obj/structure/grille, +/obj/structure/festive/bluebrick/windowNSMiddle, +/obj/structure/barricade/wooden/crude/snow, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cxk" = ( +/obj/structure/grille, +/obj/structure/festive/bluebrick/windowNSLeftEnd, +/obj/structure/barricade/wooden/crude/snow, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cxl" = ( +/turf/closed/festive/bluebrick/bluebrickts, +/area/maintenance/department/medical) +"cxm" = ( +/obj/structure/festive/trainplatform/edge_west, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"cxn" = ( +/obj/structure/festive/trainplatform/edge_west, +/obj/structure/festive/trainplatform/edge_east, +/turf/open/floor/festive/stairs/stairssouth, +/area/edina) +"cxo" = ( +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = -8 + }, +/turf/closed/festive/greybrick/greybrickcornernw, +/area/edina) +"cxp" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSRightEnd, +/turf/open/floor/festive/trainplatform, +/area/edina) +"cxq" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSLeftEnd, +/turf/open/floor/festive/trainplatform, +/area/edina) +"cxr" = ( +/turf/closed/festive/greybrick/greybrickcornerne, +/area/edina) +"cxs" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = -8; + pixel_y = 16 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cxt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"cxu" = ( +/obj/machinery/door/airlock/wood, +/obj/effect/decal/festive/christmas_reef, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"cxv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"cxy" = ( +/obj/structure/window/fulltile, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"cxz" = ( +/obj/machinery/door/airlock/wood/glass, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"cxA" = ( +/turf/closed/festive/greybrick, +/area/maintenance/bar/cafe) +"cxB" = ( +/obj/machinery/door/airlock/wood, +/turf/open/floor/carpet/monochrome, +/area/maintenance/bar/cafe) +"cxC" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSRight, +/turf/open/floor/festive/wooden/wooden1, +/area/maintenance/bar/cafe) +"cxD" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSMiddle, +/turf/open/floor/festive/wooden/wooden1, +/area/maintenance/bar/cafe) +"cxE" = ( +/obj/structure/grille, +/obj/structure/festive/greybrick/windowNSLeftEnd, +/turf/open/floor/festive/wooden/wooden1, +/area/maintenance/bar/cafe) +"cxF" = ( +/obj/machinery/door/airlock/wood, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/wood, +/area/maintenance/bar) +"cxG" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cxH" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/festive/trainplatform, +/area/maintenance/bar) +"cxI" = ( +/obj/structure/grille, +/obj/structure/festive/bluebrick/windowWERightEnd, +/obj/structure/barricade/wooden/crude/snow, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cxJ" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cxK" = ( +/obj/effect/decal/cleanable/blood/splats, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"cxL" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cxM" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/chair/comfy/black, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cxN" = ( +/turf/open/floor/plating, +/area/maintenance/department/medical) +"cxO" = ( +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cxP" = ( +/obj/structure/grille, +/obj/structure/festive/bluebrick/windowdoorweend2, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cxR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/chair/office/dark, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"cxS" = ( +/obj/machinery/iv_drip{ + pixel_y = -16 + }, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/pen/fountain, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cxT" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/festive/trainplatform, +/area/edina) +"cxU" = ( +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/festive/trainplatform, +/area/edina) +"cxZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/toilet{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"cya" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/structure/curtain{ + color = "#FF5555" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"cyb" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/carpet/monochrome, +/area/maintenance/bar/cafe) +"cyc" = ( +/turf/open/floor/carpet/monochrome, +/area/maintenance/bar/cafe) +"cyd" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet/monochrome, +/area/maintenance/bar/cafe) +"cye" = ( +/obj/structure/table/wood/fancy/monochrome, +/turf/open/floor/carpet/monochrome, +/area/maintenance/bar/cafe) +"cyf" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/carpet/monochrome, +/area/maintenance/bar/cafe) +"cyg" = ( +/obj/structure/chair/sofa/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyh" = ( +/obj/structure/chair/sofa, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyi" = ( +/obj/structure/chair/sofa, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyj" = ( +/obj/structure/chair/sofa/left, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyk" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/vending/kink{ + extended_inventory = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cym" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyo" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyp" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyq" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyr" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/maintenance/bar) +"cys" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyu" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyv" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyx" = ( +/obj/structure/floodlight_frame{ + density = 0; + name = "dancing pole" + }, +/turf/open/floor/festive/trainplatform, +/area/maintenance/bar) +"cyA" = ( +/obj/structure/grille, +/obj/structure/festive/bluebrick/windowWELeftEnd, +/obj/structure/barricade/wooden/crude/snow, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cyB" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"cyC" = ( +/obj/machinery/door/airlock/silver/glass{ + name = "Clinic" + }, +/obj/structure/barricade/wooden/snowed, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cyD" = ( +/obj/machinery/door/airlock/silver/glass{ + name = "Patient Room 1" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"cyE" = ( +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cyF" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cyI" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"cyJ" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"cyK" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"cyL" = ( +/obj/structure/table/wood/fancy/monochrome, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/carpet/monochrome, +/area/maintenance/bar/cafe) +"cyM" = ( +/turf/open/floor/plasteel/checker, +/area/maintenance/bar/cafe) +"cyN" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/checker, +/area/maintenance/bar/cafe) +"cyO" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/fullupgrade, +/turf/open/floor/plasteel/checker, +/area/maintenance/bar/cafe) +"cyP" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_y = 8 + }, +/turf/open/floor/plasteel/checker, +/area/maintenance/bar/cafe) +"cyQ" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyR" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyS" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyT" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyV" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyW" = ( +/obj/structure/table/glass, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyX" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyY" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cyZ" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cza" = ( +/obj/structure/table, +/obj/machinery/door/window/eastleft{ + dir = 1; + icon_state = "right"; + name = "Abandoned Clinic"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"czb" = ( +/turf/closed/festive/bluebrick/bluebrickcornernw, +/area/maintenance/department/medical) +"czc" = ( +/obj/structure/streetdecor/welcomesign, +/turf/open/floor/festive/trainplatform, +/area/edina) +"czf" = ( +/obj/structure/fireplace{ + dir = 8; + pixel_x = -24; + pixel_y = 26 + }, +/obj/structure/chair/comfy/black, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"czg" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet/monochrome, +/area/maintenance/bar/cafe) +"czh" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/carpet/monochrome, +/area/maintenance/bar/cafe) +"czi" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/checker, +/area/maintenance/bar/cafe) +"czj" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/checker, +/area/maintenance/bar/cafe) +"czk" = ( +/obj/machinery/door/airlock/silver, +/turf/open/floor/plasteel/checker, +/area/maintenance/bar/cafe) +"czl" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/checker, +/area/maintenance/bar/cafe) +"czm" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czn" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/wood, +/area/maintenance/bar) +"czo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/wood, +/area/maintenance/bar) +"czp" = ( +/obj/structure/festive/trainplatform/necorner, +/turf/open/floor/light, +/area/maintenance/bar) +"czq" = ( +/obj/structure/festive/trainplatform/edge_south, +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/light, +/area/maintenance/bar) +"czr" = ( +/obj/structure/festive/trainplatform/edge_south, +/obj/structure/chair/stool/bar, +/turf/open/floor/light, +/area/maintenance/bar) +"czs" = ( +/obj/structure/festive/trainplatform/nwcorner, +/turf/open/floor/light, +/area/maintenance/bar) +"czt" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czu" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/door/window/eastleft{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"czv" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"czw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"czx" = ( +/obj/machinery/iv_drip{ + pixel_y = -16 + }, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/pen/fountain, +/obj/item/clothing/gloves/color/latex, +/obj/item/scalpel, +/obj/item/hemostat, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"czy" = ( +/obj/effect/landmark/latejoin, +/turf/open/floor/festive/trainplatform, +/area/edina) +"czA" = ( +/obj/structure/dresser{ + pixel_y = 12 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"czB" = ( +/obj/structure/closet/cabinet{ + pixel_y = 15 + }, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"czC" = ( +/obj/structure/bed, +/obj/item/bedsheet/syndie, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"czD" = ( +/obj/structure/table/wood/fancy/monochrome, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"czG" = ( +/obj/machinery/light{ + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/checker, +/area/maintenance/bar/cafe) +"czH" = ( +/obj/structure/chair/sofa/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czI" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czL" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czN" = ( +/obj/structure/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"czP" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czQ" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czR" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czS" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"czU" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/wood, +/area/maintenance/bar) +"cAa" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/item/storage/firstaid/fire{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cAb" = ( +/obj/structure/table, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat/medical, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"cAc" = ( +/obj/machinery/door/airlock/silver/glass{ + name = "Clinic Storage" + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cAd" = ( +/obj/machinery/door/airlock/silver/glass{ + name = "Patient Room 2" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"cAe" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/white, +/area/maintenance/department/medical) +"cAj" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/dorms) +"cAk" = ( +/turf/closed/festive/greybrick/greybricktn, +/area/maintenance/bar/cafe) +"cAl" = ( +/obj/machinery/vending/games, +/turf/open/floor/wood, +/area/maintenance/bar) +"cAm" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cAn" = ( +/obj/machinery/light{ + light_color = "#e8eaff" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cAo" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cAp" = ( +/obj/structure/table/wood/fancy/red, +/turf/open/floor/wood, +/area/maintenance/bar) +"cAq" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cAr" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cAs" = ( +/obj/structure/table/glass, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cAu" = ( +/obj/structure/table/glass, +/obj/machinery/chem_dispenser/drinks/fullupgrade, +/turf/open/floor/wood, +/area/maintenance/bar) +"cAv" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cAw" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"cAx" = ( +/turf/closed/festive/greybrick/greybrickcornersw, +/area/edina) +"cAy" = ( +/turf/closed/festive/greybrick/greybrickcornerse, +/area/edina) +"cAA" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSRightEnd, +/obj/structure/curtain, +/turf/open/floor/plasteel/checker, +/area/commons/dorms) +"cAB" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSMiddle, +/obj/structure/curtain, +/turf/open/floor/plasteel/checker, +/area/commons/dorms) +"cAC" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSLeftEnd, +/obj/structure/curtain, +/turf/open/floor/plasteel/checker, +/area/commons/dorms) +"cAD" = ( +/turf/closed/festive/redbrick/redbrickns, +/area/commons/dorms) +"cAE" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/vehicle/sealed/vectorcraft/auto, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"cAF" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"cAG" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"cAH" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating/dirt, +/area/edina) +"cAI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/festive/trainplatform/necorner, +/turf/open/floor/plating/dirt, +/area/edina) +"cAJ" = ( +/obj/structure/festive/trainplatform/edge_south, +/turf/open/floor/plating/dirt, +/area/edina) +"cAL" = ( +/obj/structure/fluff/lightpost/light, +/turf/open/floor/plasteel/freezer, +/area/edina) +"cAM" = ( +/obj/effect/festive/trainrails/north, +/turf/open/floor/plating/dirt, +/area/edina) +"cAN" = ( +/obj/effect/festive/trainrails/north, +/obj/effect/festive/trainrails/north, +/turf/open/floor/plating/dirt, +/area/edina) +"cAO" = ( +/obj/effect/festive/trainrails/north, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating/dirt, +/area/edina) +"cAP" = ( +/obj/effect/festive/trainrails/north{ + icon_state = "trainrails_turn_int" + }, +/turf/open/floor/plating/dirt, +/area/edina) +"cAQ" = ( +/obj/effect/festive/trainrails/south, +/turf/open/floor/plating/dirt, +/area/edina) +"cAR" = ( +/obj/effect/festive/trainrails/south, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating/dirt, +/area/edina) +"cAS" = ( +/obj/effect/festive/trainrails/north{ + icon_state = "trainrails_turn_ext" + }, +/turf/open/floor/plating/dirt, +/area/edina) +"cAT" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating/dirt, +/area/edina) +"cAV" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/closed/wall, +/area/engineering{ + name = "Antimatter engine" + }) +"cAW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall, +/area/engineering{ + name = "Antimatter engine" + }) +"cAX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/mineral/snowmountain, +/area/edina) +"cAY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"cAZ" = ( +/turf/closed/wall, +/area/engineering/gravity_generator) +"cBa" = ( +/turf/closed/wall, +/area/engineering{ + name = "Antimatter engine" + }) +"cBb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall, +/area/engineering{ + name = "Antimatter engine" + }) +"cBc" = ( +/obj/machinery/light/floor, +/turf/open/floor/plasteel, +/area/engineering{ + name = "Antimatter engine" + }) +"cBd" = ( +/turf/open/floor/plasteel, +/area/engineering{ + name = "Antimatter engine" + }) +"cBe" = ( +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"cBf" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/highcap/fifteen_k{ + areastring = "/area/engineering"; + dir = 1; + name = "Antimatter Engine APC"; + pixel_y = 25 + }, +/turf/open/floor/plasteel, +/area/engineering{ + name = "Antimatter engine" + }) +"cBg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/closed/wall, +/area/engineering{ + name = "Antimatter engine" + }) +"cBh" = ( +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/plasteel, +/area/engineering{ + name = "Antimatter engine" + }) +"cBi" = ( +/obj/machinery/gravity_generator/main/station/admin, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"cBj" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Antimatter Engine Room"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engineering{ + name = "Antimatter engine" + }) +"cBk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engineering{ + name = "Antimatter engine" + }) +"cBl" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/engineering{ + name = "Antimatter engine" + }) +"cBm" = ( +/obj/item/am_shielding_container, +/obj/item/am_shielding_container, +/obj/item/am_shielding_container, +/obj/item/am_shielding_container, +/obj/item/am_shielding_container, +/obj/item/am_shielding_container, +/obj/item/am_shielding_container, +/obj/item/am_shielding_container, +/obj/item/am_shielding_container, +/obj/item/am_containment, +/obj/item/am_containment, +/obj/item/am_containment, +/obj/machinery/power/am_control_unit, +/obj/structure/closet/crate/engineering{ + name = "Antimatter Engine Crate" + }, +/turf/open/floor/plasteel, +/area/engineering{ + name = "Antimatter engine" + }) +"cBn" = ( +/obj/machinery/quantumpad{ + map_pad_id = "AME"; + map_pad_link_id = "EngieL2" + }, +/turf/open/floor/plasteel, +/area/engineering{ + name = "Antimatter engine" + }) +"cGh" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/closed/indestructible/rock/snow, +/area/edina) +"cHo" = ( +/obj/machinery/door/airlock/wood/glass, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"cHq" = ( +/obj/structure/bedsheetbin/color, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/edina) +"cIt" = ( +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/edina) +"cKl" = ( +/obj/machinery/light/small, +/obj/structure/closet/crate, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/box/matches, +/obj/item/shovel, +/obj/item/pickaxe/diamond, +/obj/item/hatchet, +/turf/open/floor/wood, +/area/edina) +"cMJ" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/edina) +"cNG" = ( +/obj/structure/mineral_door/woodrustic{ + name = "Event Hall" + }, +/turf/open/floor/wood, +/area/edina) +"cPd" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/cooking_to_serve_man, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"cRE" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/edina) +"cUs" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/edina) +"cVb" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/microwave, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/edina) +"cZi" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"cZE" = ( +/obj/structure/table/glass, +/obj/item/toy/fluff/tennis_poly/tri/squeak/rainbow, +/turf/open/floor/carpet/royalblue, +/area/edina) +"dfl" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5; + pixel_x = -4 + }, +/obj/item/storage/box/donkpockets, +/obj/item/reagent_containers/rag/towel, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"dgB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/edina) +"dkq" = ( +/obj/item/reagent_containers/food/snacks/cheesewedge, +/turf/open/floor/festive/wooden/wooden2, +/area/edina) +"dlA" = ( +/obj/structure/fireplace{ + dir = 8 + }, +/turf/open/floor/wood, +/area/edina) +"dmq" = ( +/obj/machinery/door/window/westleft{ + dir = 2; + icon_state = "right"; + pixel_y = -3 + }, +/turf/open/floor/carpet/royalblue, +/area/edina/crew_quarters/store/clothes) +"dnQ" = ( +/mob/living/simple_animal/pet/penguin/emperor/shamebrero, +/turf/open/floor/holofloor/ice, +/area/edina/crew_quarters/store/clothes) +"dpH" = ( +/obj/machinery/nanite_chamber, +/turf/open/floor/circuit/off, +/area/edina) +"dra" = ( +/mob/living/simple_animal/pet/cat/kitten, +/turf/open/floor/grass, +/area/edina) +"dts" = ( +/obj/item/storage/fancy/cigarettes/cigpack_mindbreaker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/edina) +"duf" = ( +/obj/effect/decal/festive/holly, +/turf/closed/indestructible/riveted/hierophant, +/area/edina) +"duE" = ( +/obj/effect/decal/festive/green_stockings{ + pixel_y = -15 + }, +/turf/closed/festive/greybrick, +/area/edina) +"dzc" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/starkist{ + pixel_x = -12; + pixel_y = 3 + }, +/turf/open/floor/plating/beach/sand, +/area/edina) +"dNy" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSLeftEnd, +/obj/structure/curtain, +/turf/open/floor/plasteel/checker, +/area/edina) +"dSL" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken2" + }, +/area/edina) +"dTR" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/edina) +"dWP" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/edina) +"ecE" = ( +/obj/structure/rack, +/obj/item/clothing/neck/cloak/festive, +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/item/clothing/gloves/mittens/random, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"edx" = ( +/obj/structure/chair/sofa, +/turf/open/floor/wood, +/area/edina) +"edV" = ( +/turf/closed/indestructible/riveted/hierophant, +/area/edina) +"egT" = ( +/obj/item/chair/wood, +/turf/open/floor/wood, +/area/edina) +"emA" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/edina) +"eoy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"eqs" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"esO" = ( +/obj/structure/bed/dogbed{ + name = "cat bed" + }, +/turf/open/floor/grass, +/area/edina) +"ett" = ( +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/turf/open/floor/plasteel, +/area/edina) +"euK" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/turf/open/floor/wood, +/area/edina) +"evB" = ( +/obj/structure/closet, +/turf/open/floor/festive/wooden/wooden1, +/area/commons/cryopod) +"ewh" = ( +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"ezz" = ( +/obj/effect/overlay/palmtree_r, +/turf/open/floor/plating/beach/sand, +/area/edina) +"ezY" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/edina) +"eEU" = ( +/obj/structure/fireplace{ + dir = 4; + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/edina) +"eGN" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/edina) +"eKm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"eKC" = ( +/obj/vehicle/sealed/vectorcraft/rideable/wheelchair, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"ePE" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{ + pixel_x = -9; + pixel_y = -7 + }, +/turf/open/floor/plating/beach/sand, +/area/edina) +"eRU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/clothes) +"eYQ" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"fao" = ( +/obj/structure/sign/directions/medical{ + dir = 8 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -8 + }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 16 + }, +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo/qm) +"feR" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/structure/closet/crate/trashcart, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 5 + }, +/turf/open/floor/festive/alleyway, +/area/edina/backstreet) +"fhW" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/freezer, +/area/edina) +"fkS" = ( +/turf/closed/indestructible/rock/glacierrock/blue, +/area/edina) +"fld" = ( +/obj/machinery/processor, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"fls" = ( +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/progress) +"foB" = ( +/turf/closed/indestructible/rock/snow, +/area/commons/storage/tools) +"fqI" = ( +/obj/machinery/door/airlock{ + glass = 1; + name = "Custodial Closet"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel, +/area/edina) +"frM" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/overlay/palmtree_r, +/turf/open/floor/plating/beach/sand, +/area/edina) +"fsH" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/wine, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/edina) +"fwK" = ( +/turf/open/floor/plasteel/white, +/area/edina) +"fxy" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"fBZ" = ( +/mob/living/simple_animal/crab, +/turf/open/floor/holofloor/beach, +/area/edina/crew_quarters/store/clothes) +"fCF" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/blue, +/area/commons/cryopod) +"fKS" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/edina) +"fNO" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/edina) +"fQp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"fRf" = ( +/mob/living/simple_animal/crab/kreb, +/turf/open/floor/holofloor/beach, +/area/edina) +"fVP" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16; + pixel_y = 10 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina) +"fWp" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/festive, +/turf/open/floor/carpet/orange, +/area/edina) +"fZm" = ( +/obj/structure/chair/sofa/left{ + dir = 1; + icon_state = "sofamiddle" + }, +/turf/open/floor/wood, +/area/edina) +"fZZ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/command) +"ggz" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/grass/fakebasalt, +/area/edina) +"giH" = ( +/obj/structure/statue/gold/cmo{ + anchored = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/castle) +"gkg" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/clothes) +"gpj" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/pet/fox, +/turf/open/floor/grass, +/area/edina) +"grV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden2, +/area/edina) +"gud" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, +/turf/open/floor/wood, +/area/edina) +"guZ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/service/abandoned_gambling_den/secondary{ + name = "Arcade" + }) +"gzG" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/reagent_containers/food/snacks/taco, +/turf/open/floor/carpet/royalblack, +/area/edina) +"gAS" = ( +/mob/living/simple_animal/chick, +/turf/open/floor/grass, +/area/edina) +"gCJ" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/reagent_containers/food/snacks/sausage, +/turf/open/floor/carpet/royalblack, +/area/edina) +"gFH" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade, +/turf/open/floor/wood, +/area/edina) +"gIU" = ( +/obj/structure/table/wood, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/sign/directions/cells{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"gMa" = ( +/obj/structure/curtain{ + color = "#B22222" + }, +/turf/closed/indestructible/fakeglass, +/area/edina) +"gOB" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"gZg" = ( +/obj/machinery/vending/tool, +/turf/open/floor/circuit/off, +/area/edina) +"hbB" = ( +/obj/structure/table/wood/fancy/red, +/turf/open/floor/wood, +/area/edina) +"heG" = ( +/obj/structure/mineral_door/wood{ + name = "Bedroom" + }, +/turf/open/floor/wood, +/area/edina) +"hie" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood, +/area/edina) +"hji" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/edina) +"hki" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/festive/wooden/wooden2, +/area/edina) +"hlu" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"hlN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"hoN" = ( +/mob/living/simple_animal/pet/penguin/emperor/shamebrero, +/turf/open/floor/holofloor/ice, +/area/edina) +"hqI" = ( +/obj/structure/closet/crate, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/box/matches, +/obj/item/shovel, +/obj/item/pickaxe/diamond, +/obj/item/hatchet, +/turf/open/floor/wood, +/area/edina) +"hqN" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/edina) +"huk" = ( +/obj/structure/table/plasmaglass, +/obj/item/multitool, +/obj/item/multitool, +/obj/item/multitool, +/obj/item/multitool, +/turf/open/floor/circuit/off, +/area/edina) +"hxw" = ( +/obj/structure/mineral_door/wood, +/turf/closed/wall/mineral/wood, +/area/edina) +"hzc" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"hER" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/circuit/off, +/area/edina) +"hHy" = ( +/obj/structure/closet/crate, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/box/matches, +/obj/item/shovel, +/obj/item/pickaxe/diamond, +/obj/item/hatchet, +/turf/open/floor/carpet/orange, +/area/edina) +"hMn" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16; + pixel_y = 10 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"hOo" = ( +/obj/structure/statue/plasma/scientist{ + anchored = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/castle) +"hPL" = ( +/obj/structure/statue/gold/rd{ + anchored = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/castle) +"hTY" = ( +/obj/structure/bed/dogbed, +/turf/open/floor/grass, +/area/edina) +"hUp" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/sidewalk, +/area/edina) +"hXd" = ( +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/edina) +"hYa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/edina) +"iaA" = ( +/obj/structure/closet/toolcloset, +/obj/item/storage/belt/durathread, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/circuit/off, +/area/edina) +"iaE" = ( +/obj/structure/statue/petrified, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/castle) +"ibM" = ( +/obj/effect/mob_spawn/human/bartender/alive, +/turf/open/floor/wood, +/area/edina) +"ihe" = ( +/obj/machinery/autolathe/hacked, +/turf/open/floor/circuit/off, +/area/edina) +"ikY" = ( +/obj/structure/table/glass, +/obj/item/toy/fluff/tennis_poly, +/turf/open/floor/carpet/royalblue, +/area/edina/crew_quarters/store/clothes) +"ilI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"imW" = ( +/obj/effect/decal/festive/holly, +/turf/closed/indestructible/riveted/boss, +/area/edina) +"ior" = ( +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + max_integrity = 9999; + mouse_opacity = 0 + }, +/obj/machinery/vending/tool, +/turf/open/floor/circuit/off, +/area/edina) +"ipc" = ( +/obj/structure/window/reinforced{ + name = "Exam Room 4"; + pixel_y = -4 + }, +/turf/open/floor/carpet/royalblue, +/area/edina) +"iqa" = ( +/obj/effect/festive/trainrails/north{ + icon_state = "trainrails_east" + }, +/turf/closed/indestructible/rock/snow, +/area/edina) +"irN" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/closed/indestructible/rock/snow, +/area/edina) +"iug" = ( +/obj/effect/festive/trainrails/north{ + icon_state = "trainrails_west" + }, +/turf/closed/indestructible/rock/snow, +/area/edina) +"ium" = ( +/obj/machinery/processor, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/edina) +"iwy" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood, +/area/edina) +"izr" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/flour{ + pixel_x = 7 + }, +/obj/item/reagent_containers/food/condiment/flour{ + pixel_x = -8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"iAN" = ( +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + max_integrity = 9999; + mouse_opacity = 0 + }, +/turf/open/indestructible/airblock, +/area/edina) +"iFP" = ( +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"iIf" = ( +/mob/living/simple_animal/babyKiwi, +/turf/open/floor/festive/wooden/wooden2, +/area/edina) +"iKG" = ( +/obj/structure/closet/crate/bin{ + pixel_y = 8 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"iLC" = ( +/obj/structure/sign/directions/medical{ + dir = 8 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = 8 + }, +/turf/closed/festive/greybrick, +/area/service/janitor) +"iMm" = ( +/obj/structure/sign/directions/medical{ + dir = 8 + }, +/turf/closed/wall/mineral/wood, +/area/medical/chemistry) +"iMq" = ( +/obj/machinery/computer/nanite_cloud_controller, +/turf/open/floor/circuit/off, +/area/edina) +"iOS" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"jdx" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Hotel" + }, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/wood, +/area/edina) +"jdD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/simple_animal/pet/penguin/emperor, +/turf/open/floor/holofloor/ice, +/area/edina/crew_quarters/store/clothes) +"jdY" = ( +/obj/machinery/door/window/westleft{ + dir = 2; + icon_state = "right"; + pixel_y = -3 + }, +/turf/open/floor/carpet/royalblue, +/area/edina) +"jep" = ( +/obj/structure/bed, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/carpet/red, +/area/edina) +"jqv" = ( +/obj/structure/table/glass, +/obj/item/toy/fluff/tennis_poly/green, +/turf/open/floor/carpet/royalblue, +/area/edina) +"jse" = ( +/obj/machinery/vending/dinnerware, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"jvh" = ( +/obj/structure/bookcase/random/adult, +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/edina) +"jzG" = ( +/obj/structure/table, +/obj/machinery/smartfridge/disks, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"jBv" = ( +/obj/structure/dresser{ + pixel_y = 15 + }, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_y = 30 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"jBF" = ( +/obj/machinery/computer/rdconsole, +/turf/open/floor/circuit/off, +/area/edina) +"jCx" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/turf/open/floor/wood, +/area/edina) +"jDv" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"jIs" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/turf/open/floor/plasteel, +/area/edina) +"jIH" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + max_integrity = 9999; + mouse_opacity = 0 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/circuit/off, +/area/edina) +"jPT" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSRightEnd, +/obj/structure/curtain, +/turf/open/floor/plasteel/checker, +/area/edina/crew_quarters/store/clothes) +"jUo" = ( +/obj/structure/table/plasmaglass, +/turf/open/floor/circuit/off, +/area/edina) +"jZF" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/edina) +"kda" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"kfz" = ( +/obj/structure/closet/jcloset, +/obj/item/storage/bag/trash, +/obj/item/clothing/under/rank/civilian/janitor/maid, +/obj/item/clothing/under/rank/civilian/janitor/maid, +/obj/item/clothing/under/rank/civilian/janitor/maid, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/under/costume/maid, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/white/side, +/area/edina) +"kfS" = ( +/turf/closed/wall/mineral/sandstone, +/area/edina) +"kge" = ( +/obj/effect/decal/festive/holly, +/turf/open/indestructible/airblock, +/area/edina) +"klL" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/wood, +/area/edina) +"knK" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/ale, +/turf/open/floor/wood, +/area/edina) +"kpp" = ( +/obj/structure/table/wood, +/obj/item/clothing/glasses/sunglasses, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/beer, +/turf/open/floor/wood, +/area/edina) +"ksx" = ( +/obj/structure/barricade/sandbags, +/turf/open/indestructible/airblock, +/area/edina) +"kwB" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/edina) +"kyR" = ( +/mob/living/simple_animal/pet/dog/corgi, +/turf/open/floor/grass, +/area/edina) +"kAo" = ( +/obj/structure/statue/gold/hop{ + anchored = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/castle) +"kPU" = ( +/turf/closed/festive/redbrick/redbrickcornersw, +/area/edina/crew_quarters/store/clothes) +"kSC" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/edina) +"kTw" = ( +/obj/structure/reagent_dispensers/keg/mead, +/turf/open/floor/wood, +/area/edina) +"kUD" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"kWd" = ( +/obj/structure/sign/directions/cells{ + dir = 8 + }, +/turf/closed/wall/mineral/iron, +/area/security/brig) +"kXA" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/edina) +"kZN" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/edina) +"lcg" = ( +/obj/structure/sign/directions/cells{ + dir = 4 + }, +/turf/closed/wall/mineral/iron, +/area/security/brig) +"lde" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/edina) +"ldU" = ( +/obj/machinery/nanite_program_hub, +/turf/open/floor/circuit/off, +/area/edina) +"lhY" = ( +/obj/structure/closet/secure_closet/bar, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/wood, +/area/edina) +"loi" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/reagent_containers/food/snacks/cubancarp, +/turf/open/floor/carpet/royalblack, +/area/edina) +"lpy" = ( +/obj/structure/statue/sandstone/assistant{ + anchored = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/castle) +"lqC" = ( +/obj/effect/decal/festive/christmas_reef, +/turf/closed/indestructible/riveted/hierophant, +/area/edina) +"lyO" = ( +/obj/item/lighter/greyscale, +/turf/open/floor/wood, +/area/edina) +"lzS" = ( +/obj/structure/chair/comfy/beige, +/turf/open/floor/circuit/off, +/area/edina) +"lBE" = ( +/obj/structure/sink/kitchen{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"lDE" = ( +/obj/structure/fence/post{ + dir = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/edina) +"lEt" = ( +/obj/item/storage/pill_bottle/happiness, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/edina) +"lIt" = ( +/obj/item/flashlight/glowstick/cyan, +/turf/open/floor/wood, +/area/edina) +"lLu" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/edina) +"lLP" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime, +/turf/open/floor/wood, +/area/edina) +"lLT" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/grass, +/area/edina) +"lNo" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/indestructible/airblock, +/area/edina) +"lNU" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/rag, +/turf/open/floor/wood, +/area/edina) +"lPf" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/turf/open/floor/circuit/off, +/area/edina) +"lTb" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"lUa" = ( +/obj/item/storage/box/handcuffs, +/turf/open/floor/grass/fakebasalt, +/area/edina) +"lVW" = ( +/obj/structure/fluff/lightpost/light, +/turf/open/floor/plating/beach/sand, +/area/edina) +"lXj" = ( +/obj/structure/closet/gmcloset, +/turf/open/floor/wood, +/area/edina) +"lYe" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind, +/turf/open/floor/plating/beach/sand, +/area/edina) +"lYh" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/structure/fence/post{ + dir = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/edina) +"lYj" = ( +/obj/machinery/door/airlock/vault{ + name = "Mecha Battleground" + }, +/turf/open/floor/circuit/off, +/area/edina) +"mdc" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/reagent_containers/food/snacks/soup/hotchili, +/turf/open/floor/carpet/royalblack, +/area/edina) +"miw" = ( +/obj/structure/rack, +/obj/item/clothing/neck/stripedbluescarf, +/obj/item/clothing/neck/stripedgreenscarf, +/obj/item/clothing/neck/stripedredscarf, +/obj/item/clothing/gloves/mittens/random, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"mkV" = ( +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/storage/box/mousetraps, +/obj/item/watertank/janitor, +/obj/item/construction/rld, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/edina) +"mmZ" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/edina) +"mok" = ( +/obj/machinery/light/small, +/turf/open/floor/carpet/red, +/area/edina) +"mrd" = ( +/obj/structure/table/wood, +/obj/machinery/microwave, +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/edina) +"mrJ" = ( +/obj/structure/barricade/security, +/turf/open/indestructible/airblock, +/area/edina) +"msV" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet/orange, +/area/edina) +"mua" = ( +/turf/open/floor/carpet/royalblack, +/area/edina) +"mIf" = ( +/obj/structure/festive/trainplatform/edge_east, +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"mJQ" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/circuit/off, +/area/edina) +"mRx" = ( +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + mouse_opacity = 0 + }, +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + mouse_opacity = 0 + }, +/turf/open/floor/circuit/off, +/area/edina) +"mTn" = ( +/obj/structure/table/plasmaglass, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/turf/open/floor/circuit/off, +/area/edina) +"mUg" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"mWJ" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/wood, +/area/edina) +"mWS" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + max_integrity = 9999; + mouse_opacity = 0 + }, +/turf/open/floor/circuit/off, +/area/edina) +"mXT" = ( +/obj/effect/decal/festive/christmas_reef, +/turf/closed/festive/greybrick, +/area/service/cafeteria/lunchroom) +"nbP" = ( +/turf/open/floor/carpet/orange, +/area/edina) +"nij" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/edina) +"nlJ" = ( +/turf/closed/wall, +/area/edina) +"noa" = ( +/obj/structure/mineral_door/wood{ + name = "bar" + }, +/turf/open/floor/wood, +/area/edina) +"nsX" = ( +/obj/machinery/door/window/westleft, +/turf/open/floor/holofloor/ice, +/area/edina/crew_quarters/store/clothes) +"ntI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina) +"nvy" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade, +/turf/open/floor/wood, +/area/edina) +"nzc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/royalblue, +/area/edina/crew_quarters/store/clothes) +"nEs" = ( +/obj/structure/statue/gold/ce{ + anchored = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/castle) +"nGO" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSRightEnd, +/obj/structure/curtain, +/turf/open/floor/plasteel/checker, +/area/edina) +"nII" = ( +/mob/living/simple_animal/pet/fox, +/turf/open/floor/grass, +/area/edina) +"nQw" = ( +/obj/machinery/computer/nanite_chamber_control{ + dir = 1 + }, +/turf/open/floor/circuit/off, +/area/edina) +"nRW" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/indestructible/airblock, +/area/edina) +"nRX" = ( +/obj/structure/closet/toolcloset, +/obj/item/storage/belt/durathread, +/turf/open/floor/circuit/off, +/area/edina) +"nSS" = ( +/obj/structure/statue/sandstone/venus, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"nTN" = ( +/obj/structure/dresser{ + pixel_y = 12 + }, +/turf/open/floor/carpet/red, +/area/edina) +"nWq" = ( +/obj/item/toy/beach_ball, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/holofloor/beach, +/area/edina) +"oeX" = ( +/obj/machinery/mecha_part_fabricator, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/circuit/off, +/area/edina) +"ohM" = ( +/mob/living/simple_animal/pet/redpanda, +/turf/open/floor/grass, +/area/edina) +"oin" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/edina) +"oiv" = ( +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + mouse_opacity = 0 + }, +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + max_integrity = 9999; + mouse_opacity = 0 + }, +/turf/open/floor/circuit/off, +/area/edina) +"oju" = ( +/obj/structure/closet/cabinet{ + pixel_y = 15 + }, +/obj/item/coin/iron, +/turf/open/floor/wood, +/area/edina) +"olL" = ( +/obj/structure/fireplace, +/turf/open/floor/wood, +/area/edina) +"orN" = ( +/obj/machinery/light/small, +/turf/open/floor/mineral/titanium/blue, +/area/edina) +"oua" = ( +/obj/item/storage/pill_bottle/penis_enlargement, +/turf/open/floor/wood, +/area/edina) +"oud" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/chem_dispenser/drinks/fullupgrade, +/turf/open/floor/wood, +/area/edina) +"ovH" = ( +/obj/structure/dresser, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/edina) +"oyS" = ( +/obj/structure/streetdecor/bigtree{ + pixel_x = -16 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/castle) +"oCy" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/edina) +"oIz" = ( +/obj/machinery/jukebox/disco/indestructible, +/turf/open/floor/holofloor/ice, +/area/edina) +"oKt" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"oMB" = ( +/obj/item/integrated_circuit_printer, +/obj/structure/table/plasmaglass, +/turf/open/floor/circuit/off, +/area/edina) +"oMD" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/turf/open/floor/circuit/off, +/area/edina) +"oNc" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"oNL" = ( +/obj/item/scythe, +/turf/open/floor/wood, +/area/edina) +"oTd" = ( +/obj/structure/fluff/broken_flooring, +/turf/open/floor/plating, +/area/edina) +"oUj" = ( +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/servitor) +"oWw" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFF"; + dir = 4 + }, +/turf/open/floor/festive/sidewalk, +/area/edina) +"oYk" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/turf/open/floor/wood, +/area/edina) +"oYY" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/item/reagent_containers/food/snacks/meat/slab, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"pbB" = ( +/turf/open/floor/holofloor/beach, +/area/edina) +"pcj" = ( +/obj/effect/decal/festive/fairylights, +/turf/open/floor/wood, +/area/edina) +"peF" = ( +/obj/effect/decal/festive/fairylights, +/turf/open/indestructible/airblock, +/area/edina) +"phl" = ( +/obj/machinery/vending/boozeomat, +/turf/open/floor/wood, +/area/edina) +"phV" = ( +/turf/open/floor/plasteel/white/side, +/area/edina) +"pkQ" = ( +/obj/machinery/vending/assist, +/turf/open/floor/circuit/off, +/area/edina) +"poQ" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel, +/area/edina) +"pqW" = ( +/obj/structure/fluff/broken_flooring, +/turf/open/space/basic, +/area/edina) +"prz" = ( +/mob/living/simple_animal/crab, +/turf/open/floor/plating/beach/sand, +/area/edina) +"psQ" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/festive, +/turf/open/floor/carpet/red, +/area/edina) +"ptp" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/turf/open/floor/wood, +/area/edina) +"pwQ" = ( +/obj/structure/table/wood, +/obj/item/phone, +/turf/open/floor/wood, +/area/edina) +"pBd" = ( +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/castle) +"pCu" = ( +/obj/structure/rack, +/obj/item/clothing/accessory/waistcoat, +/obj/item/clothing/accessory/maidapron, +/obj/item/clothing/gloves/mittens/random, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"pCQ" = ( +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 16 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -8 + }, +/obj/structure/sign/directions/engineering{ + dir = 1 + }, +/turf/closed/festive/creambrick{ + color = "#ffbb4d" + }, +/area/commons/storage/tools) +"pEv" = ( +/obj/structure/dresser, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/turf/open/floor/wood, +/area/edina) +"pEX" = ( +/obj/effect/decal/festive/green_stockings, +/turf/closed/indestructible/riveted/boss, +/area/edina) +"pOy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"pRU" = ( +/obj/structure/table/plasmaglass, +/obj/item/integrated_electronics/analyzer, +/obj/item/integrated_electronics/debugger, +/obj/item/integrated_electronics/detailer, +/obj/item/integrated_electronics/wirer, +/turf/open/floor/circuit/off, +/area/edina) +"pVt" = ( +/obj/structure/festive/trainplatform/edge_north, +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/princessperimeter/south) +"pXv" = ( +/obj/structure/fluff/beach_umbrella, +/turf/open/floor/holofloor/beach, +/area/edina/crew_quarters/store/clothes) +"pXS" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/edina) +"pYF" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/backstreet) +"qaU" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/edina) +"qcl" = ( +/obj/machinery/rnd/production/protolathe/department/science{ + acted_explosions = "Dumbasses"; + allowed_department_flags = 126; + name = "department protolathe (Dumb powergamers)" + }, +/turf/open/floor/circuit/off, +/area/edina) +"qfa" = ( +/turf/closed/indestructible/rock/snow, +/area/edina/crew_quarters/store/plushies) +"qkz" = ( +/obj/effect/decal/festive/fairylights, +/turf/open/floor/carpet/royalblue, +/area/service/cafeteria) +"qua" = ( +/obj/machinery/door/airlock/wood/glass, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria/lunchroom) +"qvZ" = ( +/obj/structure/closet/l3closet/janitor, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/white/side, +/area/edina) +"qwr" = ( +/obj/structure/dresser{ + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/edina) +"qzd" = ( +/obj/machinery/computer/rdconsole{ + dir = 1 + }, +/turf/open/floor/circuit/off, +/area/edina) +"qzA" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/bone, +/obj/item/stack/sheet/bone, +/turf/open/floor/carpet/royalblue, +/area/edina) +"qPh" = ( +/obj/structure/mineral_door/woodrustic, +/turf/open/floor/wood, +/area/edina) +"qPQ" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/castle) +"qRm" = ( +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/wood, +/area/edina) +"qUb" = ( +/turf/closed/indestructible/rock/snow, +/area/edina/backstreet) +"qUh" = ( +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, +/turf/open/floor/wood, +/area/edina) +"qVq" = ( +/obj/effect/decal/festive/red_stockings, +/turf/closed/indestructible/riveted/boss, +/area/edina) +"qXb" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/shower{ + dir = 8; + pixel_y = -4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/edina) +"qXY" = ( +/mob/living/simple_animal/chicken/rabbit, +/turf/open/floor/grass, +/area/edina) +"rbl" = ( +/obj/structure/janitorialcart, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/edina) +"rcW" = ( +/obj/machinery/vending/wardrobe/jani_wardrobe, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/white/corner, +/area/edina) +"reC" = ( +/obj/structure/rack, +/obj/item/gun/magic/staff/healing, +/turf/open/floor/circuit/off, +/area/edina) +"rhc" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/syndicate, +/obj/item/storage/toolbox/gold_real, +/obj/item/storage/toolbox/syndicate, +/obj/item/storage/toolbox/gold_real, +/turf/open/floor/circuit/off, +/area/edina) +"rho" = ( +/obj/structure/spacevine, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/edina) +"rkk" = ( +/mob/living/simple_animal/pet/cat, +/turf/open/floor/grass, +/area/edina) +"rni" = ( +/turf/closed/indestructible/rock, +/area/edina) +"rqO" = ( +/obj/structure/table/wood, +/obj/machinery/microwave, +/turf/open/floor/wood, +/area/edina) +"ruk" = ( +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/edina) +"rvH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/holofloor/beach, +/area/edina) +"rvT" = ( +/turf/closed/indestructible/riveted/boss, +/area/edina) +"rvZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/edina) +"rxa" = ( +/obj/effect/landmark/start/janitor, +/turf/open/floor/plasteel/white, +/area/edina) +"rxI" = ( +/obj/item/chair/stool, +/turf/open/floor/wood, +/area/edina) +"rxL" = ( +/obj/structure/table/wood/fancy/blue, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/carpet/blue, +/area/commons/cryopod) +"ryU" = ( +/obj/structure/rack, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/wood, +/area/edina) +"ryV" = ( +/turf/closed/wall/rust, +/area/edina) +"rDE" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"rKc" = ( +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/edina) +"rKC" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/edina) +"rRn" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/stamp/hop, +/turf/open/floor/wood, +/area/edina) +"rSr" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/festive/greybrick, +/area/edina) +"scn" = ( +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + max_integrity = 9999; + mouse_opacity = 0 + }, +/turf/open/floor/circuit/off, +/area/edina) +"scv" = ( +/obj/structure/rack, +/obj/item/clothing/neck/scarf/red, +/obj/item/clothing/neck/scarf/red, +/obj/item/clothing/neck/scarf/yellow, +/obj/item/clothing/neck/scarf/yellow, +/obj/item/clothing/neck/scarf/green, +/obj/item/clothing/neck/scarf/cyan, +/obj/item/clothing/neck/scarf/black, +/obj/item/clothing/neck/scarf/black, +/obj/item/clothing/neck/scarf/zebra, +/obj/item/clothing/gloves/mittens/random, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/crew_quarters/store/clothes) +"sek" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/wood, +/area/edina) +"sgh" = ( +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"sgT" = ( +/obj/structure/fluff/broken_flooring, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/edina) +"shm" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/cheesewedge, +/turf/open/floor/carpet/royalblue, +/area/edina) +"shJ" = ( +/obj/machinery/door/airlock/wood, +/turf/open/floor/wood, +/area/maintenance/bar) +"skd" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + name = "Hydroponics - Staff Only"; + req_one_access_txt = "25;26;28;35" + }, +/obj/machinery/door/window/eastleft{ + name = "Hydroponics" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"snc" = ( +/obj/machinery/portable_atmospherics/canister/water_vapor, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/edina) +"sol" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/festive/fairylights, +/turf/open/indestructible{ + icon_state = "darkfull" + }, +/area/cargo/sorting) +"sqp" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/wood, +/area/edina) +"ssr" = ( +/obj/structure/sign/directions/cells{ + dir = 1 + }, +/turf/closed/wall/mineral/iron, +/area/security/brig) +"ssY" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/wood, +/area/edina) +"suS" = ( +/obj/structure/table/wood, +/obj/effect/decal/festive/christmas_reef, +/turf/open/floor/wood, +/area/service/cafeteria/lunchroom) +"sEK" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/wood, +/area/edina) +"sGn" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"sIJ" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plating/beach/sand, +/area/edina) +"sMS" = ( +/obj/effect/decal/festive/fairylights, +/turf/open/indestructible, +/area/cargo{ + name = "Reclaiming center and Garage" + }) +"sQo" = ( +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/edina) +"sRS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/carpet/royalblue, +/area/edina) +"sSj" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/plating/beach/sand, +/area/edina) +"sSV" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 9 + }, +/turf/open/floor/festive/alleyway, +/area/service/abandoned_gambling_den/secondary{ + name = "Arcade" + }) +"sVS" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/reagent_containers/food/drinks/bottle/wine, +/turf/open/floor/wood, +/area/edina) +"sVW" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"sYK" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/wood, +/area/edina) +"sYT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/alleyway, +/area/edina/crew_quarters/store/clothes) +"sZL" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/edina) +"tax" = ( +/obj/structure/table, +/obj/machinery/plantgenes{ + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"tbd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/edina) +"tek" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"tml" = ( +/turf/closed/indestructible/rock/snow, +/area/edina/crew_quarters/store/pet) +"tmZ" = ( +/obj/structure/bedsheetbin/towel, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/edina) +"twg" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/edina) +"txa" = ( +/obj/effect/decal/festive/green_stockings, +/turf/closed/indestructible/riveted/hierophant, +/area/edina) +"tyL" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 8 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/festive/alleyway, +/area/edina) +"tAq" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/edina) +"tBN" = ( +/obj/structure/sign/directions/evac{ + dir = 1 + }, +/turf/closed/festive/whitebrick{ + color = "#967832" + }, +/area/cargo{ + name = "Cargo Break Room" + }) +"tOA" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/primary/perimeter) +"tPA" = ( +/obj/structure/table/wood/fancy/red, +/turf/open/floor/carpet/royalblack, +/area/edina) +"tRd" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"tRk" = ( +/obj/machinery/nanite_programmer, +/turf/open/floor/circuit/off, +/area/edina) +"tRM" = ( +/obj/structure/chair/wood/wings, +/turf/open/floor/carpet/royalblack, +/area/edina) +"tTL" = ( +/obj/machinery/door/window/westleft, +/turf/open/floor/carpet/royalblue, +/area/edina) +"tUx" = ( +/mob/living/simple_animal/kiwi, +/turf/open/floor/grass, +/area/edina) +"tXg" = ( +/obj/structure/table/glass, +/obj/item/toy/fluff/tennis_poly/tri/squeak/rainbow, +/turf/open/floor/carpet/royalblue, +/area/edina/crew_quarters/store/clothes) +"udo" = ( +/obj/structure/chair, +/turf/open/floor/plating/beach/sand, +/area/edina) +"ueO" = ( +/obj/structure/statue/gold/hos{ + anchored = 1 + }, +/turf/open/floor/festive/alleyway, +/area/edina/street/secondary/castle) +"uja" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/festive, +/turf/open/floor/wood, +/area/edina) +"uje" = ( +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + max_integrity = 9999; + mouse_opacity = 0 + }, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/indestructible/airblock, +/area/edina) +"ukq" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/festive/wooden/wooden2, +/area/edina) +"uma" = ( +/obj/structure/bonfire, +/turf/open/floor/wood, +/area/edina) +"uvz" = ( +/turf/open/floor/circuit/off, +/area/edina) +"uwi" = ( +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + max_integrity = 9999; + mouse_opacity = 0 + }, +/obj/effect/decal/festive/fairylights, +/turf/open/indestructible/airblock, +/area/edina) +"uAY" = ( +/turf/closed/festive/redbrick/redbrickcornersw, +/area/edina) +"uBB" = ( +/obj/structure/closet/crate/freezer{ + desc = "A small crate with a cooling system, keeps fresh produce chilled."; + name = "Food Chiller" + }, +/obj/item/storage/box/ingredients/american, +/obj/item/storage/box/ingredients/american, +/obj/item/storage/box/ingredients/delights, +/obj/item/storage/box/ingredients/delights, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/italian, +/obj/item/storage/box/ingredients/italian, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/wood, +/area/edina) +"uHF" = ( +/obj/machinery/computer/rdconsole/robotics, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/circuit/off, +/area/edina) +"uIG" = ( +/obj/structure/fluff/lightpost/light, +/turf/open/floor/grass, +/area/edina) +"uMK" = ( +/turf/open/indestructible/airblock, +/area/edina) +"uOf" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 1 + }, +/turf/open/floor/festive/wooden/wooden1, +/area/edina/backstreet) +"uSp" = ( +/obj/structure/reagent_dispensers/keg/milk, +/turf/open/floor/wood, +/area/edina) +"uSq" = ( +/obj/structure/bookcase/random/adult, +/turf/open/space/basic, +/area/edina) +"uVF" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/circuit/off, +/area/edina) +"uWR" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/edina) +"uZJ" = ( +/turf/open/floor/plating, +/area/edina) +"uZS" = ( +/turf/open/indestructible/cobble, +/area/edina) +"vgD" = ( +/obj/structure/sign/directions/cells, +/turf/closed/wall/mineral/iron, +/area/security/brig) +"viT" = ( +/obj/effect/turf_decal/stripes/white/full, +/turf/open/floor/plating/beach/sand, +/area/edina) +"vmW" = ( +/mob/living/simple_animal/pet/penguin/baby, +/turf/open/floor/holofloor/ice, +/area/edina) +"voP" = ( +/mob/living/simple_animal/pet/penguin/emperor, +/turf/open/floor/holofloor/ice, +/area/edina/crew_quarters/store/clothes) +"vsn" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = -8; + pixel_y = -4 + }, +/turf/open/floor/plating/beach/sand, +/area/edina) +"vyi" = ( +/obj/item/toy/cattoy, +/obj/structure/bed/dogbed{ + name = "cat bed" + }, +/turf/open/floor/grass, +/area/edina) +"vyu" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/turf/open/floor/carpet/purple, +/area/edina/crew_quarters/store/clothes) +"vyE" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/festive/whitebrick, +/area/edina) +"vzt" = ( +/obj/item/gun/magic/wand/resurrection, +/turf/open/floor/plating/beach/sand, +/area/edina) +"vAa" = ( +/obj/structure/fluff/lightpost/light, +/turf/open/floor/plating/dirt, +/area/edina) +"vAA" = ( +/obj/structure/grille, +/obj/structure/festive/redbrick/windowNSMiddle, +/obj/structure/curtain, +/turf/open/floor/plasteel/checker, +/area/edina) +"vBV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/south, +/obj/structure/cable/yellow, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"vCH" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime{ + pixel_x = -12 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{ + pixel_x = 13 + }, +/turf/open/floor/plating/beach/sand, +/area/edina) +"vLq" = ( +/obj/machinery/vending/boozeomat{ + pixel_x = 32; + pixel_y = 32; + req_access = null + }, +/turf/open/floor/wood, +/area/edina) +"vPw" = ( +/obj/structure/window/reinforced{ + name = "Exam Room 4"; + pixel_y = -4 + }, +/turf/open/floor/carpet/royalblue, +/area/edina/crew_quarters/store/clothes) +"wcL" = ( +/obj/structure/table/wood, +/obj/item/storage/box/donkpockets, +/turf/open/floor/wood, +/area/edina) +"wcS" = ( +/obj/structure/table/plasmaglass, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + mouse_opacity = 0 + }, +/turf/open/floor/circuit/off, +/area/edina) +"wgK" = ( +/obj/structure/dead_ratvar, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"whG" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -14 + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"wjp" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel, +/area/edina) +"wlp" = ( +/obj/machinery/door/window/westleft{ + dir = 2; + icon_state = "right" + }, +/turf/open/floor/carpet/royalblue, +/area/edina) +"wlG" = ( +/mob/living/simple_animal/jacq{ + active = 0 + }, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"wpT" = ( +/obj/structure/fence, +/turf/open/floor/plating/beach/sand, +/area/edina) +"wsC" = ( +/obj/machinery/vending/boozeomat{ + req_access = null + }, +/turf/open/floor/wood, +/area/edina) +"wux" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/fullupgrade, +/obj/structure/sign/picture_frame{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/edina) +"wuG" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/edina) +"wxl" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/light, +/turf/open/floor/festive/wooden/wooden1, +/area/edina) +"wxM" = ( +/obj/effect/spawner/trap, +/turf/open/indestructible/airblock, +/area/edina) +"wHw" = ( +/mob/living/simple_animal/pet/penguin/emperor, +/turf/open/floor/holofloor/ice, +/area/edina) +"wIE" = ( +/mob/living/simple_animal/pet/dog/corgi/Ian, +/turf/open/floor/grass, +/area/edina) +"wJY" = ( +/obj/effect/decal/festive/christmas_ivy_string, +/turf/open/floor/plasteel/dark, +/area/commons/cryopod) +"wKa" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/edina) +"wQd" = ( +/obj/effect/decal/festive/fairylights, +/turf/open/floor/circuit/off, +/area/edina) +"wQO" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/gloves/mittens/random, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/neck/scarf/christmas, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/festive/trainplatform, +/area/edina) +"wWV" = ( +/obj/item/toy/cattoy, +/turf/open/floor/grass, +/area/edina) +"xao" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/edina) +"xbi" = ( +/mob/living/simple_animal/mouse/brown/Tom, +/turf/open/floor/festive/wooden/wooden2, +/area/edina) +"xck" = ( +/obj/structure/fence/door/opened, +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/edina) +"xkz" = ( +/obj/effect/festive/street/streetlineem, +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/cobblestone, +/area/edina/street/primary/perimeter) +"xpl" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = list(25) + }, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/mayonnaise, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/open/floor/wood, +/area/edina) +"xri" = ( +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + mouse_opacity = 0 + }, +/turf/open/floor/circuit/off, +/area/edina) +"xrZ" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/edina) +"xyu" = ( +/obj/effect/decal/festive/fairylights, +/turf/open/indestructible, +/area/cargo/warehouse) +"xzs" = ( +/obj/effect/decal/festive/red_stockings, +/turf/closed/indestructible/riveted/hierophant, +/area/edina) +"xAC" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/wood, +/area/edina) +"xEb" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/phone, +/turf/open/floor/wood, +/area/edina) +"xGM" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/reagent_containers/food/snacks/waffles, +/turf/open/floor/wood, +/area/edina) +"xJM" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/mob/living/simple_animal/jacq/car_spawner, +/turf/open/floor/festive/sidewalk, +/area/edina/street/intersection/servsuppaux) +"xMH" = ( +/turf/open/space/basic, +/area/edina) +"xQh" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -10; + pixel_y = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"xSz" = ( +/obj/structure/closet/secure_closet/freezer/meat/open, +/obj/item/reagent_containers/food/snacks/meat/slab/goliath, +/obj/item/reagent_containers/food/snacks/meat/slab/xeno, +/obj/item/reagent_containers/food/snacks/meat/slab/spider, +/obj/item/reagent_containers/food/snacks/meat/slab/killertomato, +/obj/item/reagent_containers/food/snacks/meat/slab/bear, +/turf/open/floor/wood, +/area/edina) +"xSI" = ( +/obj/structure/streetdecor/lampfestive{ + pixel_x = 16; + pixel_y = 10 + }, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/edina) +"xVS" = ( +/obj/structure/reagent_dispensers/keg/gargle, +/turf/open/floor/wood, +/area/edina) +"ycr" = ( +/obj/item/reagent_containers/food/drinks/bottle/lizardwine, +/turf/open/floor/wood, +/area/edina) +"yez" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/royalblue, +/area/edina) +"ygQ" = ( +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"yij" = ( +/obj/structure/table/wood, +/obj/item/phone, +/turf/open/floor/carpet/red, +/area/edina) +"yjk" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + dir = 1; + pixel_x = -3 + }, +/obj/item/sharpener{ + pixel_x = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/edina) +"ylJ" = ( +/obj/machinery/light/floor{ + alpha = 0; + light_range = 20; + mouse_opacity = 0 + }, +/turf/closed/indestructible/riveted/boss, +/area/edina) + +(1,1,1) = {" +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +"} +(2,1,1) = {" +aab +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aZu +aZu +aZu +aZu +aZu +aZu +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(3,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +aac +aac +aac +aZu +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(4,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +aac +aac +aac +aZu +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(5,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +aac +aac +aac +aZu +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(6,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +aac +aac +aac +aZu +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(7,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +aac +aac +aac +aZu +aac +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(8,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +aac +aac +aac +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aac +"} +(9,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +aac +aac +aac +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +cAZ +cAZ +cAZ +cAZ +cAZ +aad +aad +aad +aad +aac +"} +(10,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aal +aal +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +aac +aac +aac +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +cAZ +cBe +cBe +cBe +cAZ +aad +aad +aad +aad +aac +"} +(11,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +aac +aac +aac +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +cAZ +cBe +cBi +cBe +cAZ +aad +aad +aad +aad +aac +"} +(12,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +aac +aac +aac +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +cAZ +cBe +cBe +cBe +cAZ +aad +aad +aad +aad +aac +"} +(13,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +aac +aac +aac +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +cBa +cBa +cBj +cBa +cBa +aad +aad +aad +aad +aac +"} +(14,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +cAM +aac +aac +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +cBa +cBd +cBd +cBd +cBa +aad +aad +aad +aad +aac +"} +(15,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +btg +cAM +cAQ +aac +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +cBa +cBd +cBc +cBn +cBa +aad +aad +aad +aad +aac +"} +(16,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +btg +cAM +cAQ +btg +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +cBa +cBf +cBd +cBd +cBa +aad +aad +aad +aad +aac +"} +(17,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +bKW +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +btg +cAM +cAQ +btg +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +cAV +cBb +cBg +cBj +cBa +cBa +cBa +aad +aad +aad +aac +"} +(18,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aal +aal +aal +aal +aan +aan +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aal +aal +aad +aad +aad +aac +aZu +btg +cAM +cAQ +btg +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +cAW +cBc +cBd +cBk +cBd +cBc +cBa +aad +aad +aad +aac +"} +(19,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aao +aze +aal +aal +aal +aal +aal +aal +aan +aan +aal +aal +aal +aal +acZ +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +acZ +aal +acZ +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aZu +btg +cAM +cAQ +btg +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +cAW +cBd +cBd +cBl +cBd +cBd +cBa +aad +aad +aad +aac +"} +(20,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aap +aap +aal +aal +aal +aal +aal +aal +aao +aze +aal +aal +aal +aal +acZ +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +cwv +aad +aad +aad +aad +aal +aal +aal +aad +aac +brL +cAM +cAQ +ctQ +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +cAW +cBd +cBh +cBh +cBh +cBd +cBa +aad +aad +aad +aac +"} +(21,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aap +aap +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aal +aal +aal +aad +aad +aad +aal +aal +aal +aal +aad +aad +aad +aal +aal +aal +acZ +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +acZ +aal +aal +acZ +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aad +aad +aac +aac +aac +aac +aac +aac +aac +aac +cAW +cBd +cBh +cBh +cBh +cBd +cBa +aad +aad +aad +aac +"} +(22,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +bKW +aal +aal +aal +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +acZ +aal +acZ +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +xMH +brL +cAM +cAQ +ctQ +aad +aad +aad +aac +aad +aac +aac +aac +aac +aac +cAW +cBd +cBh +cBh +cBh +cBd +cBa +aad +aad +aad +aac +"} +(23,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +bKW +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aal +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +brL +cAM +cAQ +ctQ +aad +aad +aad +aac +aac +aad +aac +aac +aac +aac +cAW +cBc +cBd +cBm +cBd +cBc +cBa +aad +aad +aad +aac +"} +(24,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +kfS +kfS +kfS +noa +kfS +aIA +aIA +aqg +aqg +aqg +aqg +aqg +aqg +vmW +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aal +aal +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +acZ +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +brL +cAM +cAQ +ctQ +aad +aad +aad +aad +aac +aac +aad +aad +aac +aac +cAW +cBa +cBa +cBa +cBa +cBa +cBa +aad +aad +aad +aac +"} +(25,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +lXj +adl +adl +adl +knK +aIA +aIA +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aal +aal +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aal +aad +aad +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +brL +cAM +cAQ +ctQ +aad +aad +aad +aad +aad +aac +aad +aad +aac +aac +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(26,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +lhY +adl +adl +adl +knK +fhW +aIA +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aal +aal +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aal +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +akI +aoQ +atz +aoQ +aoQ +aoQ +atz +aoQ +aoQ +axm +axN +ayB +ayB +ayB +axN +ayB +ayB +ayB +axN +ayB +ayB +ayB +axN +ayB +ayB +ayB +axN +ayB +ayB +ayB +aGr +atz +aoQ +aoQ +aBj +akI +aad +aad +aad +aad +aad +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +bdV +bdV +bdV +bdV +bdV +bdV +bdV +bdV +bdV +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +brL +cAM +cAQ +ctQ +aad +aad +aad +aad +aad +aad +aac +aad +aac +aac +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(27,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +ibM +adl +adl +adl +cqI +fhW +aIA +aqg +aqg +aqg +wHw +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aal +aal +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +akI +aoQ +atA +atB +atB +atB +atA +aoQ +aoQ +axn +aoQ +atA +atB +atB +atB +atA +aoQ +atA +atB +atB +atB +atA +aoQ +atA +atB +atB +atB +atA +aoQ +atA +aGs +atB +atB +atA +aoQ +akI +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aWv +aWv +aWw +aWv +aWv +bdV +bdV +bgL +bgL +bgL +bgL +bgL +bgL +bgL +bdV +bdV +bqA +bqA +btR +bqA +bqA +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +brL +cAM +cAQ +ctQ +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(28,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +sek +adl +adl +adl +cqI +fhW +aIA +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +vmW +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aal +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +akI +aoQ +atB +auf +atc +aub +auN +avz +awB +axo +aoQ +atB +ayZ +azC +azC +atB +aoQ +atB +aAM +aAX +aAX +atB +aoQ +atB +aBG +aCa +aCa +atB +aoQ +atB +aGt +aBO +aBO +atB +aoQ +akI +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aWv +aXF +aZv +bbi +aWv +bdW +bfp +bgL +bgL +bgL +bjA +bgL +bgL +bgL +bdW +bdW +bqA +bsk +btS +bvf +bqA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +brL +cAM +cAQ +ctQ +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(29,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +kpp +adl +adl +adl +lNU +fhW +aIA +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aal +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +akI +asK +atB +auf +atd +auf +auO +aoQ +awC +axp +axO +atB +ayZ +azD +azU +atB +aoQ +atB +aAM +aAY +aBb +atB +aoQ +atB +aBG +aCb +aCG +atB +aoQ +atB +aGu +aBO +aCV +atB +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aWw +aXG +aZv +bbj +aWv +bdX +bfq +bgL +bgL +bgL +bgL +bgL +bgL +bgL +bed +bfq +bqA +bsl +btS +bvg +btR +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +brL +cAM +cAQ +ctQ +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(30,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +phl +adl +adl +adl +gud +fhW +aIA +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aal +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +akI +aoQ +atB +auf +auf +auc +auP +avA +awD +axq +awE +atB +aza +azC +azV +atB +aoQ +atB +aAN +aAX +aBc +atB +aoQ +atB +aBH +aCa +aCI +atB +aoQ +atB +aGu +aBO +aIb +atB +aBj +akI +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aWv +aXH +aZw +bbn +aWv +bdY +bfr +bgL +bhQ +biP +bjB +biP +blz +bgL +bee +bpf +bqA +bsm +btS +bvg +bqA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +brL +cAM +cAQ +ctQ +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(31,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +wux +adl +adl +adl +lLP +fhW +aIA +aqg +aqg +aqg +aqg +vmW +hoN +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aal +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aad +aad +aad +aad +aal +aal +aad +aad +aad +akI +aoQ +atB +atB +atB +atB +atA +aoQ +awE +axq +awE +atB +azb +auO +azW +atA +aoQ +atB +azb +auO +azW +atA +aoQ +atB +azb +auO +azW +atA +aoQ +atB +atB +auO +azW +atA +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aWv +aXI +aZv +bbo +aWv +bdZ +bfq +bgL +bhR +biQ +bjC +bkq +bhR +bgL +bed +bft +bqA +bsn +btT +bvh +bqA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(32,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +gFH +adl +adl +adl +cqI +fhW +aIA +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +wHw +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aal +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aal +aad +aad +aad +aad +akI +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +awE +axq +awE +aoQ +azc +aoQ +azX +aoQ +aoQ +aoQ +azc +aoQ +azX +aoQ +aoQ +aoQ +azc +aoQ +azX +aoQ +aoQ +aoQ +aGv +aoQ +aIc +aGr +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aWv +aXJ +aWv +aWv +aWv +bea +bfr +bgL +bgL +biR +bgL +bkr +bgL +bgL +bee +bfr +bqA +bqA +bqA +bvi +bqA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +acZ +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +aad +aad +aad +aad +aad +aac +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(33,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +rqO +adl +adl +adl +cqI +fhW +aIA +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +vmW +aqg +aqg +aqg +aal +aal +aal +aal +aal +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aal +aal +aad +aad +aad +aad +akI +aoQ +atB +atB +atB +atB +atA +aoQ +awE +axq +awH +axs +azf +axs +azY +axs +axs +axs +aAO +axs +azY +axs +axs +axs +aBI +axs +azY +axs +axs +axs +axs +axs +azY +aII +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aVV +aXK +aWy +bbp +bcF +beb +bcF +bcF +bcF +biV +bcF +bks +bcF +bcF +bcF +bcF +bcF +bJt +btU +bvj +bqA +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(34,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +adl +adl +adl +adl +cqI +fhW +aIA +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aal +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +bKW +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +akI +asK +atB +aug +ate +aud +auS +avz +awF +axr +axP +axP +axP +axP +azZ +axP +axP +axP +axP +axP +azZ +axP +axP +axP +axP +axP +azZ +axP +axP +axP +axP +axP +aId +aIJ +aBj +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aVV +aVV +aXL +aZx +bbq +bcG +bec +bfs +bfs +bfs +biW +bjD +bkt +bfs +bfs +bfs +bfs +bqB +bJu +btV +bvk +bqA +bqA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(35,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +xpl +aQc +xSz +adl +kfS +ewh +aIA +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aal +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +akI +aoQ +atB +aug +atf +aug +auO +aoQ +awE +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aqK +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aqK +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aqK +aBv +aIJ +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +acZ +aal +acZ +aal +aVV +aWx +aXM +aZy +aVV +bcH +bed +bft +bgM +bft +biR +bjE +bkr +bgM +bft +bgM +bfq +bcH +bqA +btW +bvl +bwt +bqA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(36,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +kfS +kfS +kfS +kfS +kfS +kfS +aIA +cAL +aqg +aqg +vmW +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aad +aad +aad +aad +aad +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +akI +aoQ +atB +aug +aug +auh +auP +avA +awG +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aCc +aCJ +aDO +aCf +aoQ +aoQ +aoQ +aBv +aIJ +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aVW +aWy +aXN +aZz +aVV +bcH +bee +bfr +bee +bfr +biR +bjF +bkr +bee +bfr +bee +bfr +bcH +bqA +btX +bvm +bwu +btR +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +acZ +aal +aal +aad +aad +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(37,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +akI +aoQ +atA +atB +atB +atB +atA +aoQ +awH +axs +axs +axs +axs +axs +axs +axs +axs +axs +axs +axs +axs +axs +axs +axs +axs +axs +axs +axs +axs +axs +axO +aoQ +aBv +aIJ +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aVW +aWz +aXO +aZA +aVV +bcH +bed +bft +bgM +bft +biR +bjF +bkr +bgM +bft +bgM +bfq +bcH +bqA +btY +bvn +bwv +btR +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(38,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +akI +asK +aoQ +aoQ +atg +aoQ +aoQ +aoQ +atg +aoQ +aoQ +atg +aoQ +aoQ +aoQ +aoQ +awE +aoQ +aoQ +aoQ +aoQ +aoQ +aqK +aoQ +aoQ +aCd +aCJ +aCJ +aoQ +aqK +awE +aoQ +aBv +aIJ +aBj +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aVV +aWB +aXW +aZC +aVV +bcI +bee +bfr +bee +bfr +biR +bjE +bkr +bee +bfr +bee +bfr +bqC +bqA +btZ +bvn +bww +bqA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(39,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +azE +aoQ +aoQ +awE +aoQ +aoQ +aoQ +aoQ +aoQ +aBi +aBs +aBJ +aCe +aCK +aCe +aEx +aBJ +aGw +aoQ +aBv +aIJ +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aVW +aWC +aXX +aZD +aVV +bcH +bed +bft +bgM +bft +biR +bjF +bkr +bgM +bft +bgM +bfq +bcH +bqA +bua +bvn +bwv +btR +aal +aal +aal +aal +aal +aFs +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +bIf +bKY +bMl +bMR +bNz +aal +aal +aal +aal +aal +aal +aad +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(40,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aal +aal +aal +aad +aal +aal +aan +aan +aal +aal +aal +aal +aal +aal +aal +aal +aal +bKW +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +ajK +arf +arS +asu +ath +aui +auT +avB +anw +axt +axQ +anw +ajK +aoQ +aoQ +aoQ +awE +aqK +aoQ +aoQ +aoQ +aoQ +aoQ +aBt +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aGx +aoQ +aBv +aIJ +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aVW +aWD +aXY +aZA +aVV +bcH +bee +bfr +bee +bfr +biR +bjF +bkr +bee +bfr +bee +bfr +bcH +bqA +bub +bvo +bvp +btR +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(41,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aal +aal +aal +aal +aal +aal +aao +aze +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +amu +amu +amu +amu +amu +amu +amu +anw +arT +asv +ati +auj +asv +avB +auj +axt +axR +anw +ajK +aoQ +aoQ +aoQ +awE +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aBu +aBJ +aBs +aBs +aBs +aBs +aBs +aGy +aoQ +aBv +aIJ +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aVV +aWD +aXZ +aZE +aVV +bcH +bed +bft +bgM +bft +biR +bjE +bkr +bgM +bft +bgM +bfq +bcH +bqA +buc +bvp +bvp +bqA +aal +aal +aal +acZ +aal +aGn +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +acZ +aal +aad +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(42,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aal +aal +aal +aap +aap +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +amu +anb +amu +aom +apg +apQ +amu +arg +arU +asw +atj +arU +asw +avC +arU +axu +axR +anw +ajK +aoQ +aoQ +aoQ +awE +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aBv +aoQ +aCf +aCf +aCf +aEy +aFj +aoQ +aoQ +aBv +aIJ +aBj +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +acZ +aVV +aWF +aVV +aVV +aVV +bcH +bee +bfr +bee +bfr +biR +bjF +bkr +bee +bfr +bee +bfr +bcH +bqA +bqA +bvq +bqA +bqA +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(43,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +bKW +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +amu +anc +anq +aon +aon +apR +amu +arh +anw +anw +anw +anw +anw +anw +anw +anw +anw +ayC +ajK +azE +aoQ +aoQ +awE +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aBv +aoQ +aoQ +aqK +aoQ +aoQ +aoQ +aoQ +aoQ +aBv +aIJ +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aVV +aWG +aYa +aZF +bbr +bcJ +bef +bfx +bef +bef +biX +bjG +bkw +bef +bef +bfx +bef +bqD +bqA +bud +bvr +bwy +bqA +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(44,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aan +aan +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +amv +and +anr +aoo +aph +apS +aqM +ari +arV +anz +anz +arV +anz +anz +arV +anz +aos +anw +azg +aoQ +aoQ +aoQ +awE +aoQ +aoQ +aoQ +aqK +aoQ +aoQ +aBv +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aBv +aIJ +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +acZ +aal +aal +aal +aal +aVV +aVV +aVV +aWH +aWH +aWH +aWH +bfy +bfy +bfy +biY +bjH +bkx +bfy +bfy +bfy +bph +bph +bqA +bqA +bqA +bqA +bqA +aal +alK +btf +btf +btf +bjS +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btf +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(45,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aao +aze +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +amw +ane +anr +aop +api +apT +aqN +arj +anw +anw +anw +anw +anw +anw +anw +anw +arj +anw +azg +aoQ +aoQ +aoQ +awE +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aBw +aBK +axP +axP +axP +axP +axP +aBK +axP +aIe +aIJ +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aWH +aYb +aYb +bbs +bcK +aYb +bfy +bgN +bhS +biZ +bjI +bky +blA +bgN +bfy +bpi +bqE +bsq +bue +bvt +bph +aal +aal +brL +aaf +aaf +aaf +brK +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(46,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aap +aap +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +amx +anf +anu +aoq +apj +apU +aqO +aoA +anw +asx +atk +auk +auU +avD +auk +axv +axS +anw +ajK +azE +aoQ +aoQ +awH +axs +axs +axs +aBd +aBf +aBf +aBf +aBL +aBf +aCL +aDP +aDP +aDP +aGz +aDP +aCL +aIK +aBj +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aWI +aYb +aZG +bbt +bcL +beg +bfz +bgO +bgO +bja +bjJ +bkz +blB +bmJ +bnZ +bpj +bqF +bsr +buf +bvu +bqH +aal +aal +brL +aag +aag +aag +brM +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(47,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +amu +amu +anv +aor +amu +amu +amu +ark +anA +asy +ati +auj +asv +ati +auj +anw +axS +anw +ajK +ajK +ajK +ajK +ajK +ajK +ajK +aoQ +aoQ +aoQ +aoQ +aoQ +aBM +aoQ +aCM +aoQ +aoQ +aoQ +aBM +aoQ +aIf +aoQ +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aWH +aYb +aZG +bbu +bcM +beh +bfy +bgX +bhT +bjb +bjK +bkA +bhT +bmK +bfy +bpk +bqG +bss +bug +bvv +bph +aal +aal +alN +amq +ams +ams +bGq +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +bId +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +ams +bIe +aah +aah +aah +aah +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(48,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aan +aan +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +ajK +ajU +ajU +ajU +ajU +ajU +ajU +ajU +ajU +ajU +ajU +ang +anw +anw +anw +anw +anh +arl +anw +asz +atl +aul +auV +avE +awI +axw +axS +anw +azg +azF +azF +azF +azF +azF +ajK +aoQ +aoQ +aoQ +aoQ +atB +azW +aCg +aCN +atA +aoQ +atB +azW +aCg +aCN +atB +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aWH +aWH +aWI +aWH +aWI +aWH +bfy +bgZ +bhT +bjb +bjL +bkA +bhT +bmL +bfy +bph +bqH +bph +bqH +bph +bph +aal +aal +aal +buP +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bEY +bGE +bKg +bGE +bKg +bEY +bvU +bvU +bvU +bvU +bvU +bEY +bGE +bIs +bKg +bEY +bvU +bvU +bvU +bvU +bvU +bEY +bGE +bKg +bGE +bKg +bEY +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cqg +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(49,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aao +aze +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +ajK +ajU +ajU +ajU +ajU +ajU +ajU +alk +ajU +ajU +ajU +anh +anx +aos +anA +anw +anh +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +axT +anw +azh +azG +azF +azF +azF +aAz +ajK +aoQ +aoQ +aoQ +aoQ +atB +aBN +aBO +aCO +atB +aoQ +atB +aBN +aBO +aCO +atB +aoQ +akI +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +bfy +bha +bhU +bjc +bjM +bkA +bhT +bmM +bfy +aal +aal +aal +aal +aal +aal +aal +aal +aal +buP +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bEY +bGF +bvU +bvU +bKh +bEY +bvU +bvU +bvU +bvU +bvU +bEY +bGF +bvU +bKh +bEY +bvU +bvU +bvU +bvU +bvU +bEY +bGF +bvU +bvU +bKh +bEY +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cqg +aal +aal +acZ +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(50,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aap +aap +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +ajK +ajU +akp +ajX +aku +akL +ala +ajX +als +ajX +amC +anh +anx +aot +anw +anw +anh +anw +anw +anw +anw +anw +ajK +avF +avF +anw +arj +ayD +azi +azF +azF +azF +aAq +azF +ajK +aoQ +aoQ +aoQ +aBj +atB +aBO +aBO +aCV +atB +aoQ +atB +aBO +aBO +aCV +atB +aBj +akI +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +acZ +aal +aal +aal +bfA +bhb +bhT +bjb +bjL +bkA +bhT +bmM +bfA +aal +aal +acZ +aal +aal +aal +aal +aal +aal +buP +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cqg +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(51,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +ajK +ajU +akq +ajY +akv +ajU +akv +ajU +akv +ajY +akq +anh +ajK +aou +aow +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +anA +anw +anw +arj +anw +azj +azF +azF +azF +azF +azF +ajK +aoQ +aoQ +aoQ +aoQ +atB +aBO +aBO +aBO +atB +aoQ +atB +aBO +aBO +aBO +atB +aoQ +akI +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +bfy +bhc +bhT +bjb +bjL +bkA +bhT +bmN +bfy +aal +aal +aal +aal +aal +aal +aal +aal +aal +buP +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cqg +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(52,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aac +ajK +ajU +akr +akh +ajU +ajU +ajU +ajU +ajU +alW +amD +anh +any +aov +anz +anz +anz +arm +arW +asA +asA +asA +auW +avF +avF +anw +arj +anw +azh +azG +azF +azF +azF +aAz +ajK +aoQ +aoQ +aoQ +aoQ +atA +atB +atB +atB +atA +aoQ +atA +atB +atB +atB +atA +aoQ +akI +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +bfA +bhb +bhT +bjd +bjV +bky +bhT +bhT +bfA +aal +aal +aal +aal +aal +acZ +aal +aal +aal +buP +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cqg +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(53,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +sVW +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aac +ajK +ajU +akq +ajU +ajU +akM +ajU +akM +ajU +ajU +akq +anh +anw +aow +aow +aow +aow +anw +anw +asB +asB +asB +aou +ajK +ajK +axx +arj +anw +ajK +azG +azF +azF +azF +azF +ajK +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aCk +aoQ +aoQ +aoQ +aCk +aoQ +aoQ +aoQ +aCk +aoQ +akI +aal +aal +aal +acZ +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +acZ +aal +aal +acZ +aal +bfy +bhT +bhT +bjd +bjW +bky +bhT +bhT +bfy +aal +aal +aal +aal +aal +aal +aal +aal +aal +buP +bvU +bvU +bvU +bvU +bvU +bvU +bvU +bEY +bGF +bvU +bvU +bKh +bEY +bvU +bvU +bvU +bvU +bvU +bEY +bGF +bvU +bKh +bEY +bvU +bvU +bvU +bvU +bvU +bEY +bGF +bvU +bvU +bKh +bEY +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cqg +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(54,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aan +aan +aal +aal +aal +aal +aal +aal +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aac +aac +ajK +ajU +aks +akh +ajU +ajU +ajU +ajU +ajU +alW +amE +ani +anz +aox +aox +apV +aox +anz +arW +asC +atm +aum +auX +avG +awJ +anz +axU +anw +ajK +ajK +ajK +azg +azg +ajK +ajK +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +bfy +bfy +bhV +bje +bjX +bkB +bhV +bfy +bfy +acZ +aal +aal +aal +aal +aal +aal +aal +aal +buP +bvU +bvU +bvU +bvU +bAE +bvU +bvU +bEY +bGE +bKg +bGE +bKg +bEY +bvU +bvU +bAE +bvU +bvU +bEY +bGE +bIs +bKg +bEY +bvU +bvU +bAE +bvU +bvU +bEY +bGE +bKg +bGE +bKg +bEY +bvU +bvU +bAE +bvU +bvU +bvU +bvU +cqg +aal +aal +aal +acZ +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aad +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(55,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aao +aze +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aac +aac +ajK +ajU +akq +ajU +ajU +akM +ajU +akM +ajU +ajU +akq +anh +anw +aow +aow +apW +aow +anw +anw +asD +asD +asD +aou +ajK +ajK +anw +arj +anw +ajK +aFe +aEY +aGl +aGl +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +ceN +bgn +bdS +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +ckJ +ckJ +ckJ +ckU +ckX +mIf +ckX +ckX +cll +ckX +ckX +ckX +ckX +ckX +ckX +ckX +ckX +ckX +ckX +cll +ckX +ckX +ckX +ckX +ckX +ckX +ckX +ckX +ckX +cll +ckX +ckX +ckX +ckX +ckX +ckX +cpk +cpk +cpk +cpk +cll +ckX +cpA +cos +cos +cqh +aal +aal +aal +aal +brL +cAN +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(56,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +acZ +aal +aal +aal +aap +aap +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aac +aac +ajK +ajU +ajO +akh +ajU +ajU +ajU +ajU +ajU +alW +amG +anh +anA +aoy +anz +anz +anz +arn +arW +asA +asA +asA +auY +aal +ajK +ajK +axV +ajK +ajK +tOA +aGl +aGl +aIz +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aIz +aGl +aGl +aGl +aGl +aGl +aGl +aIz +aGl +aGl +aGl +aGl +aGl +aGl +aIz +aGl +aGl +aGl +aGl +aGl +aGl +aIz +aGl +aGl +aGl +aGl +aGl +aGl +aIz +aGl +aGl +aGl +aGl +aGl +aGl +aIz +aGl +aGl +aGl +ceN +bgn +chp +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aIz +aGl +aGl +aGl +ckP +aGl +aGl +aGl +aGl +aGl +aGl +ckP +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +ckP +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +ckP +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +ckP +cpB +chA +chA +chA +chY +aal +aal +aal +brL +cAN +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(57,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aac +aac +ajK +ajU +akq +ajY +akw +ajU +akw +ajU +akw +ajY +akq +anh +ajK +aou +anw +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +aal +ajK +axy +arj +anw +cds +aFr +aGE +aGZ +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGZ +aMl +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +byF +ceO +cff +chq +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aHk +aMl +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aHk +aMl +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aHk +aMl +aGE +aGE +aGE +aGE +aGE +cps +aGl +bgU +aal +chB +chB +chZ +chB +chB +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +cAX +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(58,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +bKW +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aal +aal +aal +aal +aal +aad +aad +aad +aad +aal +aad +aad +aad +aac +aac +ajK +ajU +ajP +ajX +akx +akN +alb +ajX +alA +ajX +amH +anh +anx +aoz +anw +anw +anh +aal +aal +aal +aal +aal +aal +aal +ajK +axz +axW +anw +azk +aFK +aFK +aHa +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aHc +aFK +aUm +aFK +aFK +aFK +aFK +aFK +aUY +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aUm +aFK +aFK +aFK +aFK +aFK +aFK +aUY +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aUm +aFK +aFK +aFK +aFK +aFK +aFK +ceP +cfG +cht +aFK +aFK +aFK +aFK +aUY +aFK +aFK +aFK +aFK +aFK +aHa +aFK +aFK +aFK +aFK +aFK +aFK +aUY +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aUY +aFK +aFK +aHa +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aUm +aFK +aFK +aFK +aHb +aFK +aFK +aFK +aFK +aUm +aFK +aVo +aGl +bgU +chB +chB +chV +cia +cie +chB +chB +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +fQp +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(59,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aad +aad +aad +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aac +ajK +ajU +ajU +ajU +ajU +ajU +ajU +all +ajU +ajU +ajU +anh +anx +aoA +anA +anw +anh +aal +aal +acZ +aal +aal +aal +acZ +ajK +axz +arj +anw +azk +aFK +aFK +aHb +aFK +aFK +aFK +aUm +aFK +aFK +aVe +aIO +aHb +bjQ +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +byq +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +byq +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +ceR +cfG +chx +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aHb +bjQ +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +byq +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aHb +bjQ +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aHc +bjQ +aPv +aFK +aFK +aFK +aFK +aVo +aGl +bgU +chB +chL +chW +cib +chW +cif +chB +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +fQp +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(60,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +acg +acg +vyE +acg +acg +acg +cHo +acg +acg +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aac +ajK +ajU +ajU +ajU +ajU +ajU +ajU +ajU +ajU +ajU +ajU +ang +anw +anw +anw +anw +anh +aal +aal +aal +aal +aal +aal +aal +ajK +axy +arj +anw +azk +aFK +aFK +aHc +aFK +aFK +aFK +aFK +aFK +aFK +aYV +bdQ +aHa +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +byF +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +byF +aGE +aGE +ceS +cfG +chy +aGE +aGE +byF +aGE +aGE +aGE +aGE +aGE +aGE +bdQ +aHc +aGE +aGE +aGE +clc +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +aGE +byF +aGE +bdQ +aHb +aGE +aGE +aGE +byF +aGE +aGE +aGE +aGE +byF +aGE +bdQ +aHb +aGE +aSw +aFK +aFK +aFK +aFK +aVo +aGl +bgU +chC +chM +chW +cic +chW +cig +chC +brL +cAM +cAQ +ctQ +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +fQp +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(61,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +acg +cZi +ygQ +oYY +mUg +whG +ygQ +xQh +acg +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +ajK +aal +aal +aal +aal +aal +aal +aal +ajK +axA +axW +anw +azk +aFK +aFK +aHb +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aHb +aFK +aFK +aFK +aUY +aFK +aFK +aFK +aFK +aUm +aFK +aFK +aFK +aFK +aUY +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aUm +aFK +aFK +aFK +aFK +aUY +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +ceP +bjn +chz +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aHb +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +ceP +aHb +cmY +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aHa +aFK +aFK +aFK +aFK +aFK +aFK +aVo +aGl +bgU +chB +chN +chW +cid +chW +cih +chB +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +fQp +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(62,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +acg +rDE +ygQ +ygQ +ygQ +ygQ +ygQ +ygQ +acg +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aal +aal +aal +aal +acZ +aal +aal +ajK +anw +axX +anw +ajK +aFL +aGF +aHd +aIO +aPv +aFK +aVe +aPv +aFK +aVe +bdR +bfk +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +aIO +aIO +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +aIO +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +bjT +ceT +cgC +cji +bjT +bjT +bjT +cks +bjT +bjT +bjT +bjT +bjT +ckK +ckM +bjT +bjT +bjT +cks +bjT +bjT +bjT +bjT +bjT +bjT +bjT +cmn +bjT +cks +bjT +bjT +bjT +bjT +cmR +cmV +cmZ +bjT +bjT +cks +bjT +bjT +bjT +bjT +bjT +bjT +ckK +ckM +bjT +coQ +aFK +aVe +aPv +aFK +aVo +aGl +bgU +chB +chO +chW +chW +chW +cii +chB +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +fQp +aal +aal +aad +aad +aad +aad +aad +aad +aad +aac +"} +(63,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aal +aal +aal +aal +acZ +aal +aal +aal +acg +lBE +ygQ +iOS +yjk +gOB +gOB +ygQ +acg +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +ajK +ajK +axY +arW +arW +aGh +aGh +aHf +aJq +aPY +aTU +aVf +aZr +aTU +bco +aJq +bfl +bkl +brV +bkl +bkl +bkl +bkl +bkl +bkl +brV +bkl +aGl +aGl +bkl +bkl +bkl +brV +bkl +bkl +bkl +bkl +bkl +bkl +brV +bkl +bkl +bkl +bkl +bkl +bkl +caz +bkl +bkl +bkl +bkl +bkl +bkl +brV +bkl +bkl +bkl +aGl +cfb +cgD +cjT +bkl +bkl +bkl +cfb +ckv +bkl +brV +bkl +bkl +bkl +bkl +bkl +bkl +ckY +cfb +bkl +bkl +bkl +bkl +bkl +bkl +cmj +bkl +bkl +cfb +bkl +bkl +ckv +bkl +cmS +cmW +cnb +bkl +bkl +cnp +bkl +bkl +bkl +bkl +ckv +bkl +bkl +bkl +coq +coS +aFK +aWt +aRT +aFK +aVo +ckP +biS +chD +chP +chX +chX +chX +cij +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +fQp +aal +aal +aad +aad +aad +aad +aad +aad +aad +aac +"} +(64,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aal +aal +aal +aal +aal +aal +eKC +aal +acg +jse +ygQ +ygQ +ygQ +ygQ +ygQ +ygQ +acg +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aal +aal +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aFq +aGl +aPZ +aTV +aTV +aVd +aTV +bcr +bdS +bfu +bmF +bmF +bmF +bsc +bmF +bmF +bmF +bmF +bmF +bmF +bxt +bxt +bmF +bmF +byr +bmF +bmF +bmF +bmF +bmF +bmF +bmF +bmF +bmF +bmF +bmF +bmF +bmF +bmF +bsc +bmF +bmF +bmF +bmF +bmF +bmF +bmF +bmF +bmF +bmF +bxt +cfc +cgE +bmF +bmF +bmF +bmF +ckt +ckw +bmF +bmF +bmF +bmF +bmF +ckN +bmF +bmF +clb +cfc +clg +clg +clg +clg +bmF +clq +clq +cmo +cmo +cmD +cmE +cmG +cmL +cmo +cmo +cmX +cnc +cmo +cmo +cmD +cmo +cmo +cmo +cmo +cmL +cmo +cmo +cnG +bez +coT +cpl +cpp +cpp +cpp +cpu +aHh +cpC +chE +chQ +chQ +chQ +chQ +cik +ciq +cAH +cAO +cAR +cAT +cwY +cwY +cwY +cwY +cwY +cwY +cwY +cwY +cwY +cwY +cAY +aal +aal +aad +aad +aad +aad +aad +aad +aad +aac +"} +(65,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +acg +sGn +ygQ +dfl +tek +izr +cPd +fld +acg +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aZH +aFK +bcw +bdS +bgl +aGk +byU +byU +bAm +byU +bBQ +bBQ +bDR +bBQ +byU +bhh +bhW +aKN +aKN +aLO +aKN +aKN +aKN +aKN +aKN +aKN +aKN +aKN +aKN +aKN +aKN +aKN +aKN +aKN +bgD +aNe +aNe +aNe +aNe +aNe +aNe +aNe +aNe +aNe +aNe +bFs +bHQ +bhO +biH +biH +biH +biH +bkm +bkp +bkk +bkk +bkk +bmB +biH +biH +biH +biH +bpg +bqo +biH +biH +biH +biH +bsa +bFs +bHZ +bIh +bJB +bLc +bMo +bNB +bPb +bQY +bIh +cjY +bHZ +bUJ +bUJ +cbK +cfp +cfp +cfp +cfp +cgi +bUJ +bUJ +cnH +bdS +coU +aFK +aVo +aZH +aFK +bdM +aGl +aGl +acQ +acQ +acQ +acQ +acQ +cno +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aac +"} +(66,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aal +aal +aal +aal +aad +aad +aad +aad +acg +acg +acg +acg +acg +acg +acg +acg +acg +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +acM +acM +acM +acM +acM +acM +acM +acM +acM +acM +acM +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aal +aal +aal +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +bUz +aal +aal +acO +aFq +aLG +aQG +aFK +aVo +aQG +aFK +bdE +bdT +bgm +aGk +byU +beT +bAn +byU +bBS +bBR +bBR +bBR +byU +bhh +bhW +aKN +aLi +aLP +aMm +aMX +aNK +aOG +aMm +aQl +aRe +aRe +aSl +aSP +aTA +aTW +aUC +aKN +bgE +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aCH +bFs +bHQ +bhP +biI +bjr +alM +bkf +bkn +bjt +bjt +bjt +bls +bjY +bkC +blC +bmP +bnG +bpl +bqp +brU +brW +blC +bdd +bhP +bFs +bHZ +bIi +bNC +bJC +bMp +bNC +bPc +bNC +bIi +cjY +bHZ +bUJ +bVP +cbL +cfq +cfq +cfq +cfq +cgj +cgq +bUJ +cnH +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +aGl +acQ +acQ +acQ +acQ +acQ +cno +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(67,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aal +aal +aal +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +acM +acM +acM +acM +acM +acM +acM +acM +acM +acM +acM +acM +acM +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aGk +byU +sgh +bAn +beT +bBR +bBR +bBR +bBR +byU +bhh +bhW +aKN +aLj +aLQ +aMn +aMn +aMn +aMn +aMn +aMn +aRf +aRK +aSm +aSQ +aSR +aTX +aUD +aKN +bgE +aoX +aoX +aoX +aUM +aoX +aoX +aoX +aoX +aoX +aCH +bFs +bHQ +bhP +biJ +bjs +aBk +bkg +bjt +bjt +bjt +bjt +bjt +bmC +bdd +bdd +bnF +bdd +bpn +bqK +bdd +brX +bdd +bdd +bhP +bFs +bHZ +bIi +cgH +cgI +bMq +bGY +bPl +bQZ +bIi +cjY +bHZ +bUJ +bVQ +cfg +cfr +cfr +cfr +cfr +cgk +cgr +bUJ +cnH +bdS +coU +aFK +aVo +aQG +aUm +aVo +aGl +cpE +chF +chR +acQ +acQ +chR +cil +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(68,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +acM +acM +adh +adB +adk +aem +adk +adk +afA +adB +adi +acM +acM +acM +aiG +aiG +aiG +aiG +aiG +aiG +aiG +aiG +aiG +aiG +alB +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aFq +aGl +aQG +aUm +aVo +aQG +aFK +bdE +bdS +bgm +aGk +byU +bzI +bAn +byU +cjV +bBR +bBR +bEu +byU +bhh +bhW +aKN +aLk +aLR +aoW +aoW +aoW +aoW +aoW +aoW +aRg +aRL +aSn +aSR +aTD +aTY +aUE +aKN +bgE +aoX +aoX +aoX +aoX +aoX +aoX +aoX +cgF +aoX +aCH +bFs +bHQ +bhP +biK +bjs +aEE +bkg +bjt +bjt +bjt +bln +blv +bhO +bmD +bmD +bmD +bob +bmD +bmD +bob +bmD +bmD +bmD +bhP +bFs +bHZ +bIi +bJE +bLd +bMq +bGY +bPd +bRa +bIi +cjY +bHZ +bUJ +bVR +cfh +cfs +cft +cfV +cft +cft +cgs +bUJ +cnH +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpE +chG +chS +acQ +acQ +chU +cim +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(69,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +acM +acM +adi +adk +adi +adi +aeD +adk +adk +adk +adi +adi +acM +acM +aiG +aiG +aiG +aiG +aiG +aiG +aiG +aiG +aiG +aiG +alB +alB +alB +alB +alB +alB +adx +adx +adx +adH +adH +adH +adH +adH +adH +adH +adH +adH +aal +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aGk +byU +beT +bAn +byU +bBS +bBR +bBR +bEv +byU +bhh +bhW +aKN +aLk +aLR +aoW +aMY +aNL +aOH +aMY +aoW +aRh +aRM +aSn +aSS +aTE +aTZ +aUD +aKN +bgE +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aCH +bFs +bHQ +bhP +biL +bjt +bjt +bjt +bjt +bjt +bjt +blo +blw +bhP +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bhP +bFs +bHZ +bIi +bJF +bLe +bMr +bND +bPe +bRb +bIi +cjY +bHZ +bUJ +bVS +cfh +cft +cft +cft +cft +cft +cgt +cgy +cnH +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpE +chH +chT +acQ +acQ +chT +cin +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(70,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aal +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +acM +acM +adi +adk +acM +acM +aeb +adk +adk +adi +adD +adk +ahD +acM +aiH +aiH +aiH +ajI +aiH +aki +aiH +akO +aiG +aiG +alC +alH +alH +alH +alH +alH +adx +adx +adx +adH +adH +adH +adH +adH +adH +adH +adH +adH +adH +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aGk +byU +beT +bAo +byU +bBV +bCS +bDS +bEu +byU +bhh +bhW +aKN +aLk +aLR +aMo +aMY +aMY +aMY +aPG +aQm +aRi +aRN +aSn +aST +aSQ +aST +aST +aKN +bgE +aKQ +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aCH +bFs +bHQ +bhP +biM +bju +bjt +bjt +bjt +bjt +bjt +blp +blx +bhP +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bhP +bFs +bHZ +bIi +bJG +bLf +bMs +bNE +bPf +bRc +bIi +cjZ +cqc +bUJ +bVT +cfh +cft +cft +cft +cft +cft +cgt +cgz +cnH +bdS +coU +aFK +aWs +aQG +aFK +aVo +aGl +cpE +chI +acQ +bth +acQ +acQ +cno +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(71,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +byU +byU +bAm +byU +bBQ +bBQ +bDR +bBQ +byU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +acM +acM +adj +adD +adk +adB +adk +aeb +adi +adk +adk +adk +adi +acM +aiH +ajh +aiH +aiG +ajQ +aiH +aiH +akO +aiG +aiG +alD +alX +alY +alY +alY +alH +adx +apX +aqP +adH +arX +asE +atn +arX +auZ +avH +arX +adH +adH +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aZJ +aFK +bdE +bdS +bgm +aGk +byU +byU +byU +byU +byU +byU +byU +byU +byU +bhh +bhW +aKN +aLl +aLR +aoW +aMZ +aMY +aOI +aMY +aMo +aRj +aRO +aSo +aSU +aTF +aKN +aKN +aKN +bgE +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aCH +bFs +bHQ +bhP +biN +bjv +aEF +bkh +bko +bkD +blm +blq +bly +bmD +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bhP +bFs +bHZ +bIi +bJH +bLg +bGS +bCv +bPg +bRd +bSD +cka +cqi +bUJ +bVQ +cfh +cft +cft +cft +cft +cft +cgt +cgz +cnH +bdS +coV +aFK +aVo +aQG +aFK +aVo +aGl +cpE +chF +chR +acQ +acQ +chR +cil +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(72,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +byU +beT +bAn +byU +bBR +bBR +bBR +bBR +byU +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +acM +acM +adk +adi +aeb +adi +adi +adi +aeb +adk +adk +adk +adh +acM +aiH +aiH +aiH +aiG +aiG +aiG +aiG +aiG +aiG +aiG +alD +alX +amI +amI +alY +alH +adx +apY +aqQ +aro +arX +asF +ato +arX +ava +avI +arX +adH +adH +aal +aal +aal +acO +aFq +aGl +aRT +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aGk +aal +aal +aal +aal +aal +aal +aal +aal +acO +bhi +bhW +aKO +aLm +aLR +aMo +aMY +aMY +aOJ +aPH +aMo +aRk +aQp +aQp +aQp +aTG +aKN +bfn +bgB +bgF +bfj +bfj +bfj +bfj +bgH +aoX +aoX +aoX +aoX +aCH +bFs +bHQ +bhP +biT +bjw +aEF +bki +bko +blk +blm +blo +bmx +bhP +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bhP +bFs +bHZ +bIi +bJI +bCv +bMt +bNF +bPh +bRe +bTh +ckc +cqr +bUJ +bWP +cfh +cft +cft +cfW +cft +cft +cgt +cgz +cnH +bdS +coU +aUm +aVo +aQG +aFK +aVo +ckP +cpE +chJ +chU +acQ +acQ +chS +cio +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(73,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +byU +beT +bAn +byU +bBS +bBR +bBR +bBR +byU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +acM +acM +adk +adi +acM +aen +acM +aeS +adk +aeb +agz +adk +ahE +acM +aiH +aiH +aiH +aiG +ajR +akj +akj +akj +ajR +aiG +alE +alY +alY +alY +alY +alH +adx +apZ +aqR +arp +arY +arY +atp +arX +avb +arY +arY +adH +adH +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aGk +bWz +bWz +bWz +bWz +bWz +bWz +bWz +bWz +bWz +bWz +bhX +aKN +aLk +aLR +aoW +aMY +aMY +aMY +aMY +aoW +aRl +aQp +aQp +aQp +aTH +aKN +aTo +aTj +aVs +aVs +aVs +aVs +aVs +aTo +aLW +aLW +bei +aoX +aCH +bFs +bHQ +bhP +bjk +bjx +aEF +bki +bko +blk +blm +blo +bmy +bhP +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bkE +bhP +bFs +bHZ +bIi +bJJ +bCv +bMu +bIi +bPi +bIi +bIi +cjY +bHZ +bUJ +bYw +cfh +cft +cft +cft +cft +cft +cgt +cgA +cnH +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpE +chH +chT +acQ +acQ +chT +cin +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(74,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +byU +bzI +bAn +byU +bBT +bBR +bBR +bEu +byU +aad +aad +aal +aad +aad +aal +aad +aad +aad +aad +aac +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +acM +acM +adi +adi +acM +acM +acM +aeT +adk +acM +agA +adk +adk +acM +aiI +aiH +ajy +aiG +ajS +ajS +ajS +ajS +ajS +aiG +alF +alY +alY +alY +alY +aoB +adx +aqa +aqa +arp +arY +arY +arX +arX +arX +avJ +arY +adH +adH +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aGk +bWz +bwV +bWz +btt +bsp +bWz +bDp +boM +bGi +bWz +bhX +aKN +aLk +aLR +aoW +aoW +aoW +aOK +aoW +aoW +aRm +aQp +aQp +aQp +aLk +aKN +aTo +aTj +aVs +aHH +aHH +aHH +aVs +bgJ +bgK +bcN +bej +aoX +aCH +bFs +bHQ +bhP +bjl +bjv +aEF +bkj +bko +bll +blm +blr +bmz +bil +bmD +bmD +bmD +bnW +bmD +bmD +bnW +bmD +bmD +bmD +bhP +bFs +bHZ +bIi +bJK +bLh +bMv +bIi +bpP +bpP +bSF +cki +bHZ +bUJ +bZR +cfi +cft +cft +cft +cft +cft +cgt +bUJ +cnH +bdS +coU +aFK +aVo +aQG +aUY +aVo +aGl +cpE +chK +bdI +bdI +bdI +bdI +cip +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(75,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +byU +beT +bAn +byU +bBS +bBR +bBR +bEv +byU +aad +aad +aad +aal +aad +aad +aad +aal +aad +aad +aac +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +acM +acM +adm +adE +aec +acM +aeE +aeU +afA +acM +agA +adF +aep +aif +aiJ +aji +ajz +ajJ +aiH +ajh +aky +ajh +aiH +ajJ +alG +alY +alY +alY +alY +alH +apk +aqa +aqa +arq +arX +arX +arX +aun +arX +avK +awK +adH +adH +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aGk +bWz +bjq +cyK +aEQ +aEQ +brI +bDp +bDp +bGi +bWz +bhX +aKN +aLk +aLR +aMp +aMp +aNM +aOL +aNM +aQn +aQp +aQp +aSp +aSV +aTI +aKN +aTo +aTj +aVs +aHH +aHH +aHH +aVs +aVv +bhd +aVv +aVv +aVv +aVv +bFs +bHQ +bhP +bjm +bjy +bjt +bjt +bjt +bjt +bjt +bjt +bjt +bmC +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bhP +bFs +bHZ +bIi +bJL +bDM +bMw +bIi +bPj +bpP +bSF +ckj +cjn +bVO +bZS +cfh +cft +cft +cft +cft +cft +cgu +bUJ +cnH +cot +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +aal +aal +aal +aal +aal +aal +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(76,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +byU +beT +bAn +byU +bBR +bBR +bBR +bBR +byU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +acM +acM +adi +adF +aed +acM +acM +aeV +adk +acM +agA +ahh +adk +acM +aiH +aiH +aiH +aiG +ajS +ajS +ajS +ajS +ajS +aiG +alF +alY +alY +alY +alY +aoB +adx +aqb +aqa +arr +arZ +arZ +atq +auo +atq +avL +awL +adH +adH +aal +aal +aal +acO +aFq +aLG +aQG +aFK +aVo +aQG +aFK +bdE +bdT +bgm +aGk +bWz +bwW +bWz +aER +buL +bWz +bDp +bDp +bGj +bWz +bhX +aKN +aLn +aLS +aMq +aNa +aNM +aOM +aNM +aQo +aRn +aMn +aSq +aSW +aTJ +aKN +aTo +aTj +aVs +aVG +aVG +aVG +aVs +aZK +bhM +aYe +bek +bfB +aVv +bFs +bHQ +bil +biH +biH +aGm +bkk +bkk +bkk +bkk +bkk +biH +bjY +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bhP +bFs +bHZ +bIi +bIi +bIi +bIi +bIi +bIi +bIi +bIi +cjY +bHZ +bUJ +bZT +cfh +cfu +cft +cft +cgb +cft +cgs +bUJ +cnH +bdS +coU +aFK +cpq +aQG +aFK +aVo +aGl +cpF +aal +aal +aal +aal +aal +aal +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(77,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +byU +wlG +bAn +byU +bBV +bBR +bBR +bEw +byU +aad +aal +aad +aad +aad +aal +aad +aad +aad +aad +aac +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +acM +acM +adk +adG +acM +aeo +acM +aeW +adk +aeb +agB +ahh +ahE +acM +aiH +aiH +aiH +aiG +ajR +akj +akj +akj +ajR +aiG +alH +alY +alY +alY +alY +alH +adx +aqc +aqR +aru +arY +asG +atr +aup +avc +arY +arY +adH +adH +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +bWz +bWz +bWz +bWz +bWz +bWz +bWz +bDp +bWz +bWz +bWz +bhX +aKN +aKN +aKN +aKN +aNb +aNN +aON +aPI +aQp +aLk +aKN +aKN +aKN +aKN +aKN +aTo +aTj +aVs +aVH +aVX +aVX +aVs +aZL +aYd +aYd +bel +bfC +aVv +bFs +bFu +bNb +bNb +bNb +bFu +bNb +bNb +bNb +bNb +bNb +bTi +bil +biH +biH +biH +biH +bpm +bpm +biH +biH +biH +biH +bjY +bFs +bFu +bNb +bNb +bNb +bNb +bNb +bNb +bNb +bNb +cki +bHZ +bUJ +bZU +cfj +cfv +cfF +cfv +cgc +cfv +cgv +bUJ +cnH +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +aal +aal +aal +aal +aal +aal +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(78,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +byU +beT +bAn +byU +bBV +bBR +bBR +bEv +byU +aal +aad +aad +aad +aad +aal +aal +aal +aal +aal +aac +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +acM +acM +adk +adI +aee +aep +aep +aeX +aee +afY +afY +ahi +adh +acM +aiH +aiH +aiH +aiG +aiG +aiG +aiG +aiG +aiG +aiG +alH +alY +amI +amI +alY +alH +adx +aqd +aqd +arv +arX +asH +ats +aup +avd +avM +arX +adH +adH +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +bWz +bDp +bDp +bWz +btu +brJ +bWz +bDp +bEt +bnD +bWz +bhh +bia +aoX +aoX +aKN +aNc +aNO +aMq +aMq +aQq +aRo +aRP +aZU +bfj +bfj +bfj +bfo +aUZ +aVs +aVI +aVY +aWN +aVs +aZM +aYd +aYd +bem +bfC +aVv +bFs +bFu +bNt +bNt +bNt +bNt +bNt +bNt +bNt +bNt +bNt +bNt +bTj +bTJ +bTJ +bTJ +bTJ +bNt +bNt +bTJ +bTJ +bTJ +bTJ +bTJ +bNt +bNx +bNx +bNx +bNx +bNx +bNx +bNx +bNx +bNx +cki +bHZ +bUJ +caM +bUJ +bUJ +cfL +cfX +cgd +cgl +cgw +bUJ +cnH +bdS +coU +aFK +aVo +aQG +aUm +aVo +aGl +cpF +aal +aal +aal +aal +aal +aal +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(79,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +byU +bzI +bAn +byU +bBR +bBR +bBR +bEv +byU +aad +aad +aad +aal +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +acM +acM +adn +adD +adk +adJ +adk +aeb +adi +adk +adk +adk +adi +acM +aiH +ajh +aiH +aiG +ajT +akk +aiH +akP +aiG +aiG +alH +alY +alY +alY +alY +alH +adx +aqe +aqS +adH +arX +asI +att +auq +ave +avN +arX +adH +adH +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +bWz +bDp +bDp +bwc +brJ +cjX +brJ +bDp +bDp +bGn +bWz +bhh +bij +aoX +aoX +aKN +aKN +aKN +aOO +aKN +aQr +aQr +aKN +aSs +aPJ +aPJ +aPJ +aPJ +aPJ +aVs +aVJ +aVZ +aVJ +aVs +aZN +aYd +aYd +aYd +bfD +aVv +bFs +bHZ +bNu +bkF +blD +bmQ +bod +bod +bod +bod +buj +bkF +bwA +aoG +byf +byV +bza +bza +bza +bza +bza +bza +bza +bNu +bNu +bGx +bGx +bGx +bGx +bGx +bGx +bGx +bGx +bON +cjY +bHZ +bLi +caN +cfk +bLi +cfM +cfo +cfo +cfo +cfo +cfA +cnH +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +aal +aal +aal +aal +aal +aal +acO +brL +cAM +cAQ +ctQ +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(80,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +byU +beT +bAn +byU +bBR +bBR +bBR +bBR +byU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +acM +acM +adi +adk +acM +acM +aeb +adk +adk +adi +adD +adk +ahF +acM +aiH +aiH +aiH +ajI +ajV +akt +aiH +akP +aiG +aiG +alH +ama +alH +alH +ama +alH +adx +adx +adx +adH +adH +adH +adH +adH +adH +adH +adH +adH +adH +aal +aal +aal +acO +aFq +aGl +aQG +aUm +aVo +aQG +aFK +bdE +bdS +bgn +brI +bDp +bDp +bWz +brN +bDQ +buM +bDp +bDp +bqf +bWz +bhh +bij +aoX +aoX +aoX +aoX +aoX +aMw +aPJ +aQs +aRp +aRQ +aSt +aSY +aTK +aUa +aUa +aVa +aVs +aVK +aWa +aWO +aVs +aZO +aYd +aYd +aYd +bfE +aVv +bFs +bHZ +bNw +bkG +blE +bmR +boe +bpo +bqL +boe +buk +bvw +bkH +bxl +byg +byW +bzJ +bAp +bBf +bBW +bCU +bDT +bEy +bxl +bxl +bGx +bIj +bJM +bLj +bIj +bIj +bPk +bGx +cjm +cki +bHZ +bLi +caO +cfl +bLi +cfO +cfH +cfI +cfN +cfo +cfB +cnH +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +aal +aal +aal +aal +aal +aal +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(81,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +byU +sgh +bAo +beT +bBR +bCS +bDS +bEx +byU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +acM +acM +adi +adk +adi +adi +aeF +adk +adk +adk +adi +adi +acM +acM +aiG +aiG +aiG +aiG +aiG +aiG +aiG +aiG +aiG +aiG +alB +alB +amJ +amJ +alB +alB +adx +adx +adx +adH +adH +adH +adH +adH +adH +adH +adH +adH +aal +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +anG +bDp +bDp +bWz +bWz +bWz +bWz +bWz +bWz +bWz +bWz +bhh +bij +aoX +aoX +aoX +aUM +aoX +aMw +aPJ +aQt +aRq +aRR +aSu +aSZ +aTL +aUb +aUb +aVb +aVs +aVJ +aWb +aVJ +aVs +aZP +aYd +aYd +ben +bfF +aVv +bFs +bHZ +bNu +bkH +blF +bmS +bmU +bmU +bqM +bsu +bul +bvx +bkI +aVt +byh +byX +bzK +bAq +bBg +bBX +bCV +bDU +byW +aVt +bsB +bGx +bIk +bJN +bLk +bMx +bNG +bPm +bSE +cjn +ckS +cqs +bLi +caN +cfm +bLi +cfQ +cfI +cfJ +cfI +cfo +cfB +cnH +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +aal +aal +aal +aal +aal +aal +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(82,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +byU +byU +byU +byU +byU +byU +byU +byU +byU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +acM +acM +adh +adJ +adk +aeq +adk +adk +afA +adJ +adi +acM +acM +acM +aiG +aiG +aiG +aiG +aiG +aiG +aiG +aiG +aiG +aiG +alB +anC +akm +akm +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgo +brI +bDp +bDp +bWz +brN +btw +buM +bDp +bDp +bqg +bWz +bhh +bij +aoX +aoX +aoX +aoX +aoX +aMw +aPJ +aQu +aRq +aRR +aSv +aTc +aTc +aTc +aUF +aVc +aVu +aVL +aWc +aWP +aYc +aZQ +aYd +aYd +beo +bfG +aVv +bFs +bHZ +bNu +bkI +blG +bmT +bmU +bpp +bqM +bsv +bum +bvy +bwB +aVt +byi +byY +bzL +bAr +bBh +bBY +bCW +bDV +bEz +aVt +aVt +bGy +bIl +bJO +bJO +bJO +bNH +bQW +bRf +bFs +bHZ +bLi +bLi +caP +bLi +bLi +cfR +cfH +cfK +cfN +cfo +cfB +cnH +bdS +coU +aFK +aVo +aQG +aUm +aVo +ckP +cpF +aal +aal +aal +aal +aal +aal +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(83,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +acM +acM +acM +acM +acM +acM +acM +acM +acM +acM +acM +acM +acM +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +acO +aal +aal +akm +akm +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aRT +aFK +bdE +bdS +bgl +bWz +bDp +bDp +bwc +brJ +cjX +brJ +bDp +bDp +bHx +bWz +bhh +bij +aoX +aoX +aoX +aoX +aoX +aMw +aPJ +aQv +aRr +aRR +aSz +aTd +aTM +aUc +aUG +aUG +aVv +aVM +aWd +aWQ +aYd +aZR +aYd +aYd +bep +bfH +aVv +bFs +bHZ +bNu +bkJ +blH +bmU +bmU +bmU +bqN +bsw +bun +bvz +bwC +bxm +byj +byZ +bzM +bAs +bBi +bBZ +bCY +bDW +bEA +bEX +bEX +bGz +bIm +bJP +bJP +bJP +bJP +bQX +bRg +bFs +bHZ +bLi +bTZ +caQ +bLi +cfw +cfS +cfS +cge +cgm +cfo +cfC +cnH +bdS +coU +aUY +aVo +aQG +aFK +aVo +aGl +cpF +aal +aal +aal +aal +aal +aal +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(84,1,1) = {" +qfa +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +ckH +ckH +bxT +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +acM +acM +acM +acM +acM +acM +acM +acM +acM +acM +acM +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +acZ +acO +aal +amb +akm +akm +aal +amb +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +bWz +bDp +bDp +bWz +btu +brJ +bWz +bDp +bEW +bHU +bWz +bhh +bij +aoX +aoX +aUM +aoX +aKQ +aMw +aPJ +aQw +aRs +aRS +aZV +aTe +aTN +aUd +aUd +aUd +aVw +aVN +aWe +aWR +aYe +aYe +aYe +aYe +aYe +bfI +aVv +bFs +bHZ +bNu +bkG +blI +bmV +bof +bpq +bqO +bsx +buo +bvA +bkF +bVr +aVt +bza +bza +bza +bBj +bCa +bCZ +bDX +bEB +aVt +aVt +bGA +bIn +bJQ +bLl +bMy +bNI +bPn +bRg +bFs +bHZ +bLi +bUa +caR +cfn +cfx +cfx +cfx +cgf +cgn +cfP +cfD +cnI +cou +coW +aFK +aVo +aQG +aFK +aVo +aGl +cpF +aal +aal +aal +aal +aal +aal +acO +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(85,1,1) = {" +qfa +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +ckH +ckH +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +acO +aal +aal +akm +akm +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +bWz +bWz +bWz +bWz +bWz +bWz +bWz +bDp +bWz +bWz +bWz +bhh +bik +aoX +aoX +aoX +aoX +aoX +aMw +aPJ +aPJ +aPJ +aPJ +bbB +aPJ +aPJ +aPJ +aPJ +aPJ +aVv +aVv +aVv +aVv +aVv +aVv +bbw +bcO +bbw +aVv +aVv +bFs +bHZ +bNu +bkF +blJ +bmU +bmT +bpr +bqP +bsy +bup +bvB +bvB +bvB +bvB +bvB +bvB +bvB +bBk +bCb +bDa +bku +bku +bku +bFv +bGx +bGx +bGx +bGx +bGx +bNJ +bPo +bRg +bFs +bHZ +bLi +bLi +bLi +bLi +cfy +cfT +cfY +cgg +cgo +cgx +cgB +cnJ +cov +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cxf +cxI +cyA +cxf +cxf +cxf +cxf +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(86,1,1) = {" +qfa +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +ckH +ckH +bxT +bxT +bxT +bxT +aEK +bxT +bxT +bxT +bxT +bxT +bxT +aad +lTb +aad +aad +aad +aad +aal +aal +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +aac +afC +afC +afC +afC +afC +afC +afC +afC +afC +aal +aal +acZ +aal +aal +aal +adw +amF +ajl +akm +akm +ajl +amF +amF +amF +amF +amF +amF +asL +atu +amF +amF +amF +amF +amF +asL +amF +amF +amF +adw +aFq +aLG +aRT +aFK +aVo +aQG +aFK +bdE +bdT +bgm +aGk +bWz +bwV +bWz +btt +bsp +bWz +bDp +bDp +bGj +bWz +bhY +ckb +awo +ckb +aMr +aLW +aLW +aoD +aLW +aLW +aLW +aLW +bbM +bgB +bgB +bgB +bgB +bgB +bIG +cdw +aLW +aLW +aLW +cdw +aLW +aoD +aLW +cdw +cdw +bFu +bFu +bNb +bkK +blK +bXz +bmT +bps +bqQ +bsz +buq +bvC +bkv +bkv +bkv +bkv +bkv +bkv +bBl +bCc +bDb +aVq +aZB +aZB +aZB +bku +bku +bku +bku +bku +bDj +bPp +bRh +bFs +bFu +bTi +bLi +caS +bLi +cfz +cfU +cfZ +cgh +cgp +cfS +cfS +cnK +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +aGl +cxg +cxJ +cxN +cxf +czu +cAa +cxf +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(87,1,1) = {" +qfa +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +ckH +ckH +aEK +aEK +bxT +bxT +aEK +bxT +bxT +bxT +bxT +bxT +bxT +aad +aad +aad +aad +aad +aal +aal +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +afC +afZ +agC +ahj +ahG +aig +agC +agC +afC +akC +alU +akg +aBV +aCF +aCF +aCF +aCF +aCF +act +act +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aCF +aHg +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aGk +bWz +bjq +cyK +aEQ +aEQ +brI +bDp +bDp +bGi +bWz +bhY +bdO +bdO +biE +aMs +aNd +aNd +aNd +aNd +aNd +aNd +aNd +aNd +aNd +aNd +aNd +aNd +aNd +cdX +aNd +aNd +aNd +aNd +aNd +bbx +aNd +aNd +aNd +aNd +bFY +bFu +bNx +bkL +blK +bmU +bog +bog +bqS +bsA +aZB +aUh +bwD +bwE +bwE +bzb +bbR +bAt +bBm +bCd +bDc +bbR +aTt +aZB +bkv +bkv +aZB +bJR +bLm +bLm +bNK +bPq +bRi +bMZ +bFu +bHZ +bLi +bLi +bLi +bLi +bLi +bLi +bLi +bLi +bLi +bLi +cnH +bdS +coS +aFK +aWt +aQG +aFK +aVo +aGl +aGl +cxh +cxK +cxN +cxf +cxN +cyE +cxf +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(88,1,1) = {" +qfa +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +ckH +ckH +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +aad +aad +aad +aal +aal +aal +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +afC +aga +agD +ahk +ahH +aiK +aiL +ajB +aAd +aBg +aCh +bcm +bNA +bQV +bTF +bTF +bTF +bTF +aCP +aCP +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +bTF +cuD +cuD +cvq +cvs +cvv +cvq +cvy +cvA +cvF +bgC +aGk +bWz +bwW +bWz +aER +buL +bWz +bDp +boN +bGi +bWz +bhY +bdO +bdO +ckb +aMt +aNe +aNe +aNe +aNe +aNe +aNe +aNe +aoX +aoX +bTd +aoX +aoX +aoX +bgE +aVO +aWf +aWS +aYf +aVO +bby +bbA +bbA +bbA +bbA +bFZ +bHZ +bNu +bkM +bkM +bkM +boh +bpt +bqT +aVt +aTt +aUh +bwE +bxn +byk +bzc +bzN +bAu +bBn +bCe +bDd +bbR +aTt +aUh +bnJ +bGB +bIo +bJS +bGB +bnJ +bNL +bPr +bRj +bnJ +bFs +bFu +cua +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +bgn +bdS +coX +aTV +bci +aTV +aTV +cpv +aGl +cpF +cxi +cxL +cyB +cxf +cxN +cAb +cxf +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(89,1,1) = {" +qfa +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +ckH +ckH +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +aad +aal +aal +aal +aal +aal +aad +aad +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +afC +agb +agE +ahl +ahI +aii +aiM +ajk +afC +akE +aso +akg +aaW +bSA +bTG +cur +cur +cur +aCQ +adp +cur +cur +cur +cur +cur +cur +cur +cur +cur +cur +cur +cur +cur +cur +cur +cur +cur +cur +cur +cvg +cvh +cvr +cvt +cvw +cvx +cvt +cvB +bdS +bgm +aGk +bWz +bWz +bWz +bWz +bWz +bWz +bWz +bWz +bWz +bWz +bhh +bim +bim +aNi +ckd +aNe +aNP +aNe +aPK +aNe +aRt +aNe +aNe +aNe +aNe +aNe +aNe +aNe +bgE +aVP +aWg +aWT +aYg +aZS +bbz +bcP +beq +bfJ +bbA +bFZ +bHZ +bNu +bkM +blL +bmW +boi +bpu +bqT +aVt +aTt +aUh +bwE +bxo +byk +bzd +bzO +bAv +bBo +bCf +bDe +bbR +aTt +aUh +bFw +bGC +bIp +bJT +bLn +bFw +bNM +bPs +bRk +bnJ +bTk +akc +cub +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +bgn +cow +coU +aUm +aVo +aZH +aFK +bdM +aGl +cpF +cxj +cxM +cxN +cyZ +cxN +cxN +cxf +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(90,1,1) = {" +qfa +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +aQS +aUs +bmv +bnw +brH +brH +brH +brH +brH +brH +sSV +guZ +xck +aaE +aaE +ntI +aal +aal +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aad +aad +aad +aad +afC +agc +agF +agF +ahJ +agF +ajj +akD +aAp +aBx +aCS +bdF +bOZ +azd +bTH +aDu +aDu +aDu +aEd +aDu +aDu +aDu +aDu +aDu +aDu +aDu +aDu +aDu +aDu +aDu +aDu +aDu +aDu +aDu +aDu +aFc +aDu +aDu +aDu +aHb +aFK +aFK +aFK +aWs +aQG +aFK +bdE +bdS +bgn +bmH +aZp +aZp +aZp +aZp +aZp +aZp +aZp +aZp +aZp +aZp +bhZ +bdO +bdO +ckb +ckh +aNe +aNQ +aNe +aPL +aNe +aPL +aNe +aSD +aTf +aSG +aUe +aUH +aNe +bgE +aVQ +aWh +aWU +aYh +aZT +bbA +bcQ +bcR +bfL +bhe +bFZ +bHZ +bNu +bkM +blM +bmX +boj +bpv +bqU +aVt +aTt +aUh +bwE +bxn +byk +bzd +bzP +bAw +bBp +bCg +bDf +bbR +aTt +aUh +bFx +bGD +bIq +bJU +bLo +bFx +bNN +bPt +bRl +bSH +ctW +aGE +aGE +aGE +clc +aGE +aGE +aGE +aGE +aGE +aGE +aGE +cnL +chq +coY +aFK +aYV +aSw +aFK +aVo +aGl +cpF +cxk +cxL +cxJ +cza +czv +cxN +cxf +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(91,1,1) = {" +qUb +ckH +ckH +ckH +ckH +ckH +ckH +ckH +ckH +ckH +aSx +aRV +aSL +aYX +bbm +bnC +bJa +pYF +uOf +aQU +feR +aRJ +eqs +ajw +aaP +alv +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +afC +agd +agG +ahm +afC +aij +ajm +amr +afC +akE +aso +akg +aaW +bSA +cul +aDu +adC +ajM +aCR +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aGW +aHl +aIO +aPv +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aGk +aRa +bdO +bdO +bdO +bdO +bdO +bdO +bdO +bdO +bdO +bdO +bdO +bdO +biE +aMt +aNe +aNR +aOP +aOP +aOP +aOP +aNe +aSE +aTg +aTg +aUf +aUI +beI +aTm +aVR +aWi +aWV +aYj +buS +bzZ +bFE +ber +bfM +bhe +bFZ +bHZ +bNu +bkM +blO +bmY +bok +bpw +bqT +aVt +aTt +aUh +bwD +bxn +byk +bze +bzQ +bAx +bBq +bCh +bDg +bbR +aTt +aUh +bFy +bGG +bIr +bJV +bLp +bFy +bNN +bPt +bRl +bSH +ctX +ctZ +aFK +aFK +aFK +aFK +aFK +aFK +aFK +aUm +aFK +aFK +cnM +cht +ceP +aFK +aFK +aFK +aFK +aVo +ckP +cpF +cxl +cxf +cyC +cxf +cxf +cAc +cxf +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(92,1,1) = {" +tml +bio +bio +bio +bio +bio +bio +bio +bio +bio +aSx +aRV +alv +aYY +afJ +bnE +bJb +afJ +oNc +bEY +bEY +bEY +bEY +bEY +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aeY +afC +afC +afC +afC +afC +afC +ajA +azn +afC +akE +aso +akg +aaW +bSA +cul +aDu +ajt +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +aGl +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aGk +aGk +aOi +awo +awo +awo +awo +awo +awo +awo +awo +awo +awo +awo +aLT +aMu +aNf +aNS +aOQ +aKg +aKg +aKg +aNe +aSF +aTg +aTg +aTg +aUJ +aNe +bgE +aVO +aWj +aWW +aWW +buV +bbA +bGL +bcR +bfN +bhe +bFZ +bHZ +bNu +bkN +blP +bmZ +bos +bpx +bqV +aVt +aTt +aUh +bwD +bxp +byl +bzf +bzR +bAy +bBr +bCi +bDh +bDY +aTt +aUh +bFz +bGH +bIt +bJW +bLq +bFz +bNN +bPt +bRl +bSH +ctY +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +aIO +bdR +cnN +cox +coZ +aFK +aVe +aPv +aFK +aVo +aGl +cpF +cxf +cxN +cxN +cxN +cyE +cyE +cxf +brL +cAM +cAQ +ctQ +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(93,1,1) = {" +tml +bio +bio +bio +bio +bio +bio +bio +bio +bio +aSx +aRV +alv +bnB +afJ +bnE +bJb +jDv +afJ +aFS +afJ +afJ +afJ +aFS +aaP +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aeY +afD +age +age +ahn +ahK +aik +ahM +ahM +ajD +akG +atH +akU +aaW +bSA +cul +aDu +ajt +act +act +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aGl +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aGk +aGk +aCH +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aoX +aCH +aMv +aNg +aIU +aKg +aPM +aNe +aKg +aRU +aSG +aTg +aTO +aTO +aUK +aNe +cva +bfi +bib +bnv +bnv +bvX +bbA +bcT +bes +bfO +bbA +bFZ +bHZ +bON +bkN +blQ +bna +bot +bpy +bqV +bsB +aTt +aUh +bwD +bxu +bym +bbR +bzS +bAy +bBr +bCi +bDi +bDY +aTt +aUh +bFA +bGI +bIp +bJX +bLr +bMz +bNO +bPy +bRm +bnJ +bTl +akc +cub +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +bgn +coy +coS +aFK +aWt +aQG +aFK +aVo +aGl +cpF +cxf +cxO +cxN +cyE +czw +cxN +cxf +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(94,1,1) = {" +tml +bio +bio +bio +bio +bio +bio +bio +bio +bio +aSx +aRV +alv +aYZ +afJ +bnE +bJb +afJ +afJ +rSr +afJ +afJ +iKG +bEY +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aeY +afE +agf +agH +ahn +ahL +ail +ahM +ajn +aeY +aaW +act +aca +act +bSA +cul +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aRT +aFK +bdE +bdS +bgl +aGk +aRa +aCH +aoX +aCn +aCn +aCn +aCn +aCn +aCn +aCn +aCn +aCn +aoX +aCH +aMw +aNe +aNT +aOR +aPN +aNe +aNR +aRW +aSH +aTi +aTP +aUg +aUL +aNe +bgE +aVO +aWl +aWY +aYk +aWX +bbA +bcU +bcU +bfP +bcU +bFZ +bHZ +bNu +bkN +blR +bnb +bou +bpz +bqW +aVt +aTt +bvD +bwD +bxv +bxv +bbR +bbR +bAz +bBs +bCj +bDc +bbR +aTt +bvD +bnJ +bGB +bIu +bJY +bGB +bnJ +bNL +bPr +bRj +bnJ +bFs +bFu +cuc +bff +bff +bff +aGl +aGl +bff +bff +bff +bff +bgn +bdS +coX +aVd +aTV +aTV +bci +bcr +aGl +cpF +cxl +cxP +cyD +czb +cxP +cAd +czb +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(95,1,1) = {" +tml +bio +bio +bio +bio +bio +bio +bio +bio +bio +aSx +aRV +alv +bEY +afJ +bnE +bJc +bJb +bJb +bEY +bEY +afJ +bEY +bEY +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aeY +afF +agg +agI +aho +ahM +ahM +ahM +ahM +ajE +adp +adp +adp +adp +bSB +cum +aDu +ajt +act +aEq +aal +aal +amb +aal +aal +aal +aal +aal +amb +aal +aal +aal +aal +aal +amb +aal +aal +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aGk +aGk +aCH +aoX +aCn +aGA +aGA +aGA +aIL +aGA +aGA +aGA +aCn +aoX +aCH +aMw +aNh +aNU +aNh +aNh +aNh +aNU +aNh +aNh +aNe +aNe +aNe +aNe +aNe +bgE +aVO +aWm +aVO +aYl +aWX +aWX +aVS +bet +bfQ +bhf +bGk +bHZ +bNu +bkN +bkN +bkN +bov +bpA +bqV +aVt +bur +aZB +bku +aZB +aZB +bku +bku +bAA +bBt +bCk +bDj +aVp +aZB +aZB +bku +bku +aZB +bJZ +bvB +bvB +bNP +bPp +bRh +cjo +bFs +bHZ +bUd +bUd +bUd +bUd +bXJ +bYt +bmu +acg +bmu +acg +cnO +bdS +coU +aFK +aVo +aZH +aFK +bdM +aGl +cpF +cxf +cxN +cxN +cxf +cxN +cxN +cxf +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(96,1,1) = {" +tml +bio +bio +bio +bio +bio +bio +bio +bio +bio +aQT +aRV +aaP +aFS +afJ +afJ +afJ +afJ +afJ +bEY +jBv +afJ +afJ +bEY +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aeY +afG +agh +agJ +ahn +ahN +ahM +ahM +ahM +ajF +ajM +ajM +ajM +ajM +bSC +cun +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aLG +aQG +aFK +aVo +aQG +aFK +bdE +bdT +bgm +aGk +aGk +aCH +aoX +aCn +aGB +aHx +aDU +aDU +aDU +aDU +aKF +aCn +aoX +aCH +aLp +aNh +aNV +aOS +aOU +aQx +aRu +aRX +aNh +aoX +aoX +aoX +aoX +aoX +bgE +aKQ +aoX +aWZ +aYm +aZW +bbC +bcV +beu +bfR +bhf +bGk +bHZ +bjZ +bjZ +bjZ +bjZ +bkU +bpB +bqX +bsC +bjZ +bvE +aZB +aZB +aZB +aZB +aZB +bAA +bBt +bCl +bDk +aZB +aZB +aZB +aZB +bvC +aVq +aVq +aVq +bkv +bpV +brs +bRo +bNu +bFs +bHZ +bUd +bUK +bVU +bWQ +afJ +afJ +bYR +bZV +caT +bmu +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cxf +cxR +cyE +cxf +cxR +cyE +cxf +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(97,1,1) = {" +tml +bip +bip +bip +bip +bip +bip +bip +bip +bip +aQU +aSx +alv +bEY +afJ +bnH +bKz +cuv +afJ +bEY +ajZ +afJ +tRd +bEY +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aeY +afH +age +age +ahn +ahO +aim +aiN +ajo +aeY +aaW +act +act +act +bSA +cul +aDu +ajt +act +aEq +aal +aal +aal +apl +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +ayE +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aGk +aRa +aCH +aoX +aCn +aGA +aGA +aGA +aGA +aGA +aGA +aGA +aCn +aoX +aCH +aLp +aNh +aNW +aOT +aOU +aQy +aRv +aOU +aNh +aoX +aoX +aoX +aoX +aoX +bgE +aoX +aoX +aVO +aWf +aWS +aYf +aVO +aVO +aVO +aVO +bGo +bHZ +bjZ +bkO +blS +bnc +bow +bpC +bqY +bsD +bjZ +bvE +bvC +bkv +bkv +bkv +bkv +bAA +bBt +bCl +bDb +aVq +aVq +aVq +aZB +aUh +bqR +bqR +bqR +bqR +bLy +bPz +bMB +bNu +bFs +bHZ +bUd +bUL +bVV +bWR +bXK +bYu +bYu +bZW +caU +cbM +cnP +cov +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cxf +cxS +cyF +cxf +czx +cAe +cxf +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(98,1,1) = {" +tml +bip +bis +aat +bds +aDs +bgy +bhu +biq +aMe +aQV +aSx +alv +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aeY +aeY +aeY +aeY +aeY +aeY +aeY +aeY +aeY +aeY +aaW +act +act +act +bSA +cul +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aUY +bdE +bdS +bgm +aGk +aGk +aCH +aoX +aCn +aCn +aHy +aGA +aGA +aJA +aHy +aCn +aCn +aoX +aCH +aLp +aNh +aOa +aOU +aOU +aOa +aNh +aRY +aNh +aoX +aoX +aoX +aoX +aoX +aTo +aOc +aOc +aOc +aOc +aOc +aOc +aOc +bev +bfS +aCH +bFZ +bHZ +bjZ +bkP +blT +bnd +box +bpD +bqZ +bsE +bjZ +bvE +aUh +bdq +bdq +bdq +bdq +bAB +bBu +bCm +bDl +bdq +bdq +bdq +aTt +aUh +bIv +bKa +bLs +bqR +bNQ +bPA +bRp +bNu +bFs +bHZ +bUd +bUM +bVW +afJ +afJ +bYv +bYS +bZX +caV +cbN +cnQ +coz +coW +aFK +aVo +aZJ +aFK +aVo +aGl +cpF +cxf +cxf +cxf +cxf +cxf +cxf +cxf +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(99,1,1) = {" +tml +bip +bis +aau +aDi +beR +bir +bir +bir +bir +aQV +aSx +aaP +aaE +btv +btv +btv +btv +btv +btv +btv +btv +btv +btv +aaP +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aaR +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +act +act +act +act +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aUm +aVo +aQG +aFK +bdE +bdS +bgm +aGk +aGk +aCH +aoX +aCn +aGC +aHz +aIg +aIM +aJB +aKm +aKG +aCn +aoX +aCH +aLp +aNh +aNY +aOU +aOU +aOa +aNh +aMv +aLW +aOc +aOc +aOc +aOc +aOc +bbM +bgK +aoD +aNn +aNn +aNn +aNn +aNn +bex +bfS +aCH +bFZ +bHZ +bjZ +bjZ +bjZ +bjZ +boy +bpE +cax +bsF +bus +aTt +aUh +bdq +byn +bzg +bdy +bAC +bBv +bCn +bDm +bDZ +bEC +bdq +aTt +aUh +bIw +bKb +bLt +bMA +bNR +bPC +bRq +bNu +bFs +bHZ +bUd +bUN +bVU +bWS +bXL +cga +bYT +bZY +caW +cbO +cnR +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +aal +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(100,1,1) = {" +tml +bip +baE +bbY +baG +bis +bis +bis +bis +bis +aQW +aRV +aaP +alv +bcu +bcu +boQ +boQ +boQ +boQ +boQ +boQ +bcu +bcu +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aaW +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aGk +aRa +aCH +aoX +aCn +aGD +aHA +aIh +aIN +aJC +aKn +aGD +aCn +aoX +aCH +aLp +aNh +aNZ +aOU +aOU +aOa +aRw +aMv +aoD +aoD +aLX +aLX +aLX +aLX +aLX +aTn +aTj +aXa +aXa +aZX +bbD +aXa +aZX +bbD +aXa +bFZ +bHZ +bjZ +bkO +blS +bnc +bow +bpF +brb +bsG +bus +aTt +aUh +bdq +byx +bzh +bzT +bAD +bBw +bCo +bDn +bzh +bED +bdq +aTt +aUh +bIx +bKc +bLv +bMB +bNS +bPD +bRr +bNu +bFs +bHZ +bUd +bUd +bUd +bUd +bUd +acg +bYU +bmu +acg +bmu +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cna +cna +cna +cna +cna +cna +cna +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(101,1,1) = {" +tml +bip +baF +bis +aDi +beU +bit +bit +bit +aML +aQV +aSx +aaP +alv +bcu +bnI +bLN +esO +vyi +hTY +gpj +hTY +hzc +bcu +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aaW +acW +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +aCQ +aCU +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aGk +aGk +aCH +aoX +aCn +aGG +aHB +aHB +aIP +aHB +aHB +aKH +aCn +aoX +aCH +aLp +aNh +aOa +aOU +aPO +aQz +aRx +aMv +aoD +aTj +aKQ +aoX +aoX +aoX +aoX +aTo +aTj +aXb +aYn +aZY +bbE +bcW +bbE +bfT +aXa +bFZ +bHZ +bjZ +bkP +blT +bne +box +bpD +bqZ +bsH +bus +aTt +aUh +bdq +bdq +bdq +bdq +bAG +bBv +bCp +bDq +bdq +bdq +bdq +aTt +aUh +bIy +bKd +bLw +bMB +bNT +bPE +bRs +bON +bFs +bFu +cqw +cqw +cqw +cqw +cqO +bUd +acJ +bZZ +acJ +cbP +bgn +bdS +coU +aUY +aVo +aQG +aFK +aVo +aGl +cpF +cna +cxZ +cyI +cna +czA +coR +cAA +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(102,1,1) = {" +tml +bip +baG +bis +bdt +aDv +biu +bhx +biu +aMM +aQV +aSx +aaP +alv +boQ +bnK +bLO +qXY +ohM +dra +rkk +cpt +wxl +bcu +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aaW +adg +adC +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aCR +aDf +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +oIz +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +beA +bgG +aCl +aCl +aDS +aEz +aCo +aDT +aDT +aIi +aIQ +aIi +aDT +aDT +aKP +aoX +aCH +aLp +aNh +aOb +aOV +aPP +aQA +aNh +aMv +aoD +aTj +aoX +aoX +aoX +cgF +aoX +aTo +aTj +aXc +aYo +aZZ +bbF +bcX +beG +bfU +aXa +bFZ +bHZ +bjZ +bjZ +bjZ +bnf +boz +bpG +brc +bsI +bus +aTt +aUh +bdq +byy +bzi +bdy +bAH +bBx +bCq +bDm +bEa +bEC +bdq +aTt +aZB +bIz +bKe +bLx +bMC +bLx +bPF +bRt +bNu +bFs +bHZ +bUf +bUf +bUf +bUf +cqP +acg +bYV +bZZ +acJ +cbP +bgn +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cna +cya +cyJ +cna +czB +coR +cAB +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(103,1,1) = {" +tml +bip +bip +bip +bip +biv +biv +biv +biv +biv +aQV +aSx +aVF +alv +boQ +bnK +bLP +wWV +cpt +gAS +ako +cpt +hzc +bcu +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +abZ +adg +ajt +ajN +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +akf +akf +akH +akH +akf +act +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aUm +bdE +bdS +bgl +aGk +aRa +aCH +aoX +aCn +aCn +aCn +aCn +aIR +aCn +aCn +aCn +aCn +aoX +aCH +aLp +aNh +aNh +aOW +aNh +aNh +aRy +aMv +aoD +aTj +aoX +aoX +aUM +aoX +aoX +aTo +aTj +aXd +aYp +baa +bbG +bbG +baa +bfV +aXa +bFZ +bHZ +bjZ +bkQ +blU +bng +boA +bpH +bra +bsJ +bus +aTt +aUh +bdq +byx +bzh +bzT +bAI +bBy +bCr +bDn +bzh +bED +bdq +aTt +aUh +bqR +bqR +bLy +bMB +bNU +bPz +bMB +bqR +bFs +bHZ +bUf +bUO +bVX +bUf +cqP +bUd +acg +bUd +acg +bUd +cnS +bdS +coU +aFK +aVo +aQG +aFK +cpq +aGl +cpF +cna +cna +cyK +cna +czC +coR +cAC +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(104,1,1) = {" +tml +bio +baH +biw +biw +biw +biw +biw +biw +biw +byv +aRV +aaP +alv +boQ +cpD +bNc +sRS +tTL +tTL +bNc +ilI +afJ +bcu +fxy +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aba +acj +acj +aba +aba +aba +aeG +aeZ +afI +agi +aeG +aeZ +afI +agi +aeG +aeZ +afI +agi +aeG +akg +akg +akE +aso +akU +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +atv +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aGk +aGk +aCH +aoX +aoX +aoX +aoX +aCn +aIS +aCn +aoX +aoX +aoX +aoX +aCH +aMx +aNi +aKI +aKI +aKI +aKI +aOc +aLX +aLX +aTj +aoX +aoX +aoX +aoX +aoX +aTo +aTj +aXa +aYq +baa +baa +baa +baa +bfW +aXa +bFZ +bHZ +bjZ +bkR +bWG +bnh +boB +bpI +bqZ +bsK +bus +aTt +aUh +bdq +bdq +bdq +bzU +bAK +bBv +bCs +bDl +bdq +bdq +bdq +aTt +aUh +bqR +bKi +bLz +bMD +bNV +bPG +bRu +bqR +bFs +bHZ +bUf +bUP +bVY +bUf +cqQ +cqw +cqw +cqw +cqw +cqw +cnT +coA +coU +aFK +aVo +aQG +aFK +aVo +cpy +cpF +cxy +bDp +bDp +cna +cna +bDp +cAD +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(105,1,1) = {" +tml +bio +bdu +bdu +bdu +bdu +bdu +bdu +bdu +bdu +aRJ +aRV +aaP +alv +boQ +cpD +boO +boO +boO +boO +ipc +grV +hki +boQ +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +acP +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +bQh +aba +alT +alT +aba +alT +alT +aeG +adL +adM +adM +aeH +afa +afa +afa +agK +afa +afa +ain +aeG +akg +akg +akE +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aRT +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aCm +aCn +aCn +aCn +aCn +aCn +aCn +aCn +aIT +aCn +aCm +awo +awo +awo +aLU +aLU +aLU +aLU +aLU +aLU +aLU +aRz +aRZ +aLU +aLp +aoX +aoX +aoX +aoX +bTd +bhl +bjf +buh +aYr +baa +baa +baa +baa +bfX +aXa +bFZ +bHZ +bjZ +bkS +blU +bnk +aZI +bpE +brb +bsL +bjZ +bvE +aUh +bxw +byz +bzj +bzV +bAL +bBv +bCt +bDr +bEb +bEE +bxw +aTt +aUh +bIA +bKj +bLA +bME +bNW +cea +bRv +bqR +bFs +bHZ +bUf +bUQ +bVZ +bUf +bUf +bUf +bYW +bUf +bUf +bUf +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +aGl +cxz +bDp +bDp +bDp +bDp +bDp +cna +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(106,1,1) = {" +tml +bio +beV +beV +beV +beV +beV +beV +beV +beV +aak +aSx +aaP +alv +bcu +bnL +bNe +bNf +jqv +cZE +jdY +xbi +dkq +boQ +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aba +ack +alT +aba +ack +alT +adq +adM +adM +adM +aeG +afb +afK +afK +afK +afa +ahP +afa +aiO +akg +akg +akE +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aLG +aQG +aFK +aVo +aQG +aFK +bdE +bdT +bgm +aCn +aCW +aDT +aDT +aFk +aGH +aDT +aIj +aIQ +aJD +aCn +aoX +aoX +aoX +aLU +aMy +aNj +aNj +aOX +aPQ +aQB +aQH +aSa +aLU +aLp +aoX +aoX +aoX +aoX +aoX +aTo +aTj +aXa +aYs +baa +bbH +bcY +bcY +bfY +bhg +bGp +bHZ +bjZ +bkT +blU +blU +aZI +bpE +brb +bsM +bjZ +bvG +aUh +bxx +byG +bdy +bdy +bAM +bBy +bCu +bDs +bEc +bEF +bxx +aTt +aZB +bIB +bKk +bLB +cdZ +bNY +bPI +bRx +bqR +bFs +bHZ +bUf +bUR +bUS +bWT +bXO +bXO +bWT +caa +caa +bUf +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cxy +bDo +bDp +czf +czD +cAj +cna +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(107,1,1) = {" +tml +bio +beV +bcb +aDj +beW +beW +aFM +beW +beW +aak +aSx +aaP +aaP +bcv +boO +bNf +boO +boO +qzA +ipc +iIf +ukq +boQ +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aqg +ace +ace +acL +acL +acL +acL +acL +acL +acL +awM +aba +alT +alT +aba +alT +alT +aeG +adN +adM +adM +aeG +afc +afK +agj +afK +ahp +ahQ +aio +aiP +akg +akg +akE +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +anB +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +azm +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aCn +aCX +aDU +aDV +aFl +aGI +aHB +aHB +aIV +aCY +aGR +aKI +aKI +aLo +aLU +aMz +aNk +aNk +aLU +aLU +aQC +aRA +aSb +aLU +aLp +aTQ +aTQ +aTQ +aTQ +aTQ +aTo +aTj +aXb +aYr +baa +bbI +aKe +aKe +bfZ +aXa +bFZ +bHZ +bjZ +bkU +aZI +bnl +boC +bpJ +brd +bsN +bjZ +bvE +aUh +bxy +byH +bdy +bdy +bAL +bBv +bCw +bDt +bEd +bEG +bxy +aTt +aZB +bIC +bKl +bLC +bMG +bNZ +bPJ +bRy +bqR +bFs +bHZ +bUf +bUS +bWa +bWT +bWT +bWT +bWT +bWT +bWT +cbQ +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cna +cna +cna +cna +cna +cna +cna +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(108,1,1) = {" +tml +bio +beV +aav +aDk +beW +aEb +aFN +aIB +beW +aSy +aRV +aaP +aaP +bcz +boO +bOz +yez +boO +wlp +boO +ilI +eKm +bcu +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaG +acf +acf +aaS +acf +acf +acf +acf +aaS +acf +aba +alT +alT +aba +alT +alT +aeG +adP +adM +aes +aeG +afd +afK +afK +afK +afa +ahR +afa +aiQ +akg +akg +akE +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aoC +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aCn +aCY +aDV +aEB +aFm +aGJ +aDV +aDV +aIX +aCY +aKo +aoX +aKQ +aLp +aLU +aMz +aNk +aNk +aOY +aPR +aQD +aQD +aSc +aLU +aLp +aTQ +aUi +aUN +aUi +aTQ +aTo +aTj +aXc +aYt +baa +bbI +aKe +aKe +bga +aXa +bFZ +bHZ +bjZ +bkV +blV +bnm +bjZ +bpK +bre +bsO +bjZ +bvE +bvD +bxz +byI +bzk +bzW +bAN +bBz +bCx +bDu +bEe +byI +bEZ +aTt +bvD +bqR +bqR +bqR +bqR +bLy +bPK +bRz +bqR +bFs +bHZ +bUf +bUT +bWb +bWT +bXP +bXP +bWT +caa +caa +cbR +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +aGl +cpN +cpN +cpU +cpU +cpN +cpW +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(109,1,1) = {" +qUb +ckH +aak +aax +aDl +aDw +aEf +aFO +aIC +aDw +aak +aSx +aaP +aaP +bcv +boO +bOA +boO +boO +shm +ipc +nWq +rvH +boQ +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaH +aal +aal +aal +aal +aal +aal +aal +aal +aal +aba +ack +alT +aba +ack +alT +aeG +adQ +aeg +aet +aeG +afe +afL +agk +agL +ahq +ahS +aip +aeG +akg +akg +akE +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aUY +bdE +bdS +bgm +aCn +aCZ +aCn +aCn +aCn +aCn +aHC +aDV +aIX +aCY +aKp +aoX +aoX +aLp +aLU +aMA +aNl +aNk +aOZ +aPS +aQE +aRB +aSd +aLU +aLp +aTQ +aUj +aUO +aVg +aTQ +aTo +aTj +aXd +aYu +bab +bbJ +bcZ +bcZ +bgb +aXa +bFZ +bHZ +bjZ +bkW +aZI +bmh +bjZ +bpL +brf +bsP +bjZ +bvE +aZB +bku +bku +bku +bku +bAA +bBt +bCl +bDv +bEf +bEH +bku +aZB +aZB +bku +bku +bku +bMH +bOa +bPL +bRA +bqR +bFs +bHZ +bUf +bUU +bWc +bWU +bWU +bWU +bYX +bWT +bWT +cbR +cnU +bdS +coU +aUm +aVo +aQG +aFK +aVo +aGl +aGl +cpO +cpO +aFK +aFK +cpO +cpX +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(110,1,1) = {" +qUb +ckH +aak +aay +aDm +aDw +aEg +aFP +aJp +aDw +aak +aSx +bwZ +aZa +bqj +bwb +bOB +ikY +tXg +bOB +dmq +fBZ +pbB +boQ +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaL +aaL +aaL +aaL +aaL +aaL +aaL +aaL +aaL +alT +alT +aba +aEr +aEr +aeG +aeG +aeG +aeG +aeG +aeG +afM +agl +agM +aeG +aeG +aeG +aeG +akg +akg +akE +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +avP +aal +aal +aal +aal +aal +aal +aFq +aGl +aQG +aUm +aVo +aQG +aFK +bdE +bdS +bgm +aCn +aCY +aDV +aDV +aFn +aGK +aDV +aDV +aIX +aCY +aKp +aoX +aoX +aLp +aLU +aMz +aNm +aNk +aPa +aPT +aQD +aQD +aSe +aLU +aLp +aTQ +aUk +aUP +aVh +aTQ +aTo +aTj +aXa +aXa +aXa +aXa +aXa +aXa +aXa +aXa +bFZ +bHZ +bjZ +bkU +blW +bmi +boD +bpM +brg +bsQ +bjZ +bvE +aZB +bkv +bkv +bkv +bkv +bAO +bBA +bCy +bDx +bEg +bEI +bkv +bkv +bkv +bkv +bkv +aZB +aUh +bOa +bPM +bRA +bIA +bFs +bHZ +bUf +bUV +bUS +bWT +bXP +bXP +bYY +cab +caX +cbS +cnO +bdS +coU +aFK +aVo +aZJ +aFK +aVo +aGl +ckP +cpP +cpO +aFK +aFK +cpO +cpY +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(111,1,1) = {" +foB +aZh +bjg +bjg +bjg +bhI +bjg +bjg +bjg +bjg +aak +aSx +aWJ +aZa +bcA +bwT +bOJ +bOJ +bOJ +bOJ +vPw +pXv +fRf +boQ +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaL +aaT +aaY +abp +abh +abE +aaY +abR +aaL +alT +alT +alT +alT +alT +alT +alT +alT +cxb +aba +aff +afN +agm +agN +agm +ahT +agm +aiR +akg +akg +akE +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aCn +aCX +aDU +aDV +aFo +aGI +aHB +aHB +aIV +aCY +aKq +aoX +aoX +aLq +aLV +aMB +aNk +aNk +aLU +aLU +aQF +aVx +aSf +aLU +bbN +bbO +bcS +aUQ +aVi +aTQ +aTo +aoD +aOc +aOc +aOc +aOc +aOc +aOc +bgc +bEr +bGk +bHZ +bjZ +bkY +blX +bjZ +bjZ +bpK +brh +bsR +bjZ +bvE +aUh +bxA +bvO +bzl +bzl +but +bBB +bCz +bDy +bEh +bfm +bFa +bbc +bbc +bbc +bbc +aTt +aUh +bOb +bPN +bRA +bIA +bFs +bHZ +bUf +bUW +bWd +bWV +bXQ +bXQ +bYZ +bXQ +bXQ +cbT +cnV +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +aGl +cpO +cpO +aFK +aFK +cpO +cpY +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(112,1,1) = {" +foB +aZh +bjg +bcc +bdv +beX +bgz +bhG +bix +bjh +aTa +clY +bwZ +aZa +bcA +bwU +bTr +nzc +nzc +nzc +bTr +kda +vBV +bcu +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaL +aaU +abh +abq +abh +abq +abh +aaU +aaL +ack +alT +alT +alT +alT +alT +alT +alT +aeu +aba +afg +afO +afO +afO +afO +afO +aiq +aiR +akg +akg +akE +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +nSS +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aCn +aCY +aDV +aEB +aFp +aGJ +aDV +aDV +aIX +aJE +aCn +aoX +aoX +aLr +aLU +aMC +aNj +aNj +aPb +aPU +aQH +bIF +aSg +aLU +aTl +aTQ +bdb +aUR +aVj +aTQ +bhl +bjf +buE +buE +buE +buE +bgK +aNn +bgd +bEM +bGk +bHZ +bka +bkZ +blY +bnn +boE +bpN +bri +bsS +bku +aZB +aUh +bfm +byJ +bdA +bdA +bdA +bBC +bCA +bDz +bEi +bEJ +cdP +bFB +bGJ +bID +bbc +aTt +aUh +bLy +bPO +bRB +bIA +bFs +bHZ +bUf +bUX +bUS +bWW +bUS +bUS +bZa +bUf +bUf +bUf +cnO +bdS +coU +aFK +aVo +aQG +aFK +aYV +aHk +aSw +aFK +aFK +aFK +aFK +cpO +cpY +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(113,1,1) = {" +foB +aZh +bjg +bcd +beX +beX +beX +bjg +biA +bjj +aRV +aRV +bwZ +aZa +bcA +bxS +bTs +jdD +nsX +nsX +bTs +bTs +hzc +bcu +alt +alv +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaL +aaV +abh +aaU +abw +aaU +abh +abS +aaL +alT +alT +alT +alT +alT +alT +alT +alT +cxb +aba +afh +afp +afp +agO +afp +afp +afp +aiR +akg +akg +akE +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +anj +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aCn +aCZ +aCn +aCn +aCn +aGL +aDV +aDV +aIX +aCY +aKo +aoX +aoX +aLr +aLU +aLU +aLU +aLU +aLU +aLU +aLU +bGM +aRZ +aLU +aTl +aTQ +aUn +aUS +aVk +aTQ +aTo +aTj +aoX +aXf +aXf +aXf +bda +aXf +aXf +aXf +bFZ +bHZ +bka +bla +blZ +bno +boF +bpO +brj +bsT +bkv +bkv +bwF +bfm +byM +bzm +cdL +bAP +btc +bCB +bDz +bEi +bEK +cdQ +bFC +bGK +bGK +bbc +aTt +aUh +bLy +bPz +bRC +bqR +bFs +bHZ +bUf +bUY +bWe +bWX +bXR +bXR +bZb +bUf +cnx +cnB +cnO +bdS +coU +aFK +aVo +aQG +aUY +aVe +aHl +aPv +cpO +cpO +aFK +aFK +cpO +cpZ +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(114,1,1) = {" +foB +aZh +bjg +bce +beX +beX +beX +bhI +bjj +bjj +aRV +aRV +bwZ +aZa +bcA +bxS +bxV +bxV +bxV +dnQ +bty +bxV +wxl +bcu +alt +alv +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +acZ +aaL +aaX +abh +abh +abx +abh +abh +abT +aaL +alT +alT +alT +alT +acX +adr +adR +aeh +aev +aba +afh +afp +afp +afp +afp +afp +afp +aiS +akg +akg +akT +akm +aBz +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +apn +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aGl +aGl +aQG +aFK +aVo +aZJ +aFK +bdE +bdS +bgl +aCn +aCY +aDV +aDV +aFu +aGM +aDV +aDV +aIX +aCY +aKp +aoX +aoX +aLs +aLW +aLW +aLW +aOc +aOc +aOc +aOc +aTn +aOc +aOc +aTm +aTQ +aTQ +aTQ +aTQ +aTQ +aTo +aTj +aKQ +aXf +bac +bbK +bGX +beH +bge +aXf +bFZ +bHZ +bka +blb +bma +bka +aTt +bpQ +brk +bsU +but +buz +bfm +bxB +byN +bzn +bzX +bzn +btc +bCC +bDz +bEj +bEL +cdR +cdT +cdV +cvb +bbc +aTt +aZB +bDj +bri +bRD +bxL +bFs +bHZ +bUf +bUZ +bUS +bWX +bXR +bYx +bZc +bUf +cny +cnC +bgn +bdS +coU +aFK +aVo +aZH +aFK +bdM +aGl +aGl +xkz +cpO +aFK +aFK +cpO +cpY +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(115,1,1) = {" +foB +aZh +bjg +bcf +beX +aDx +bgA +bjg +biA +bjj +aRV +aRV +bwZ +aZa +bqj +bxU +bxV +bty +bxV +voP +bxV +bxV +hzc +bcu +alt +alv +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaL +aaY +abh +aaU +aaU +aaU +abh +aaY +aaL +aaM +acq +acq +acN +acq +acq +acq +acq +acq +acq +afi +afl +agn +agP +ahr +ahU +afl +aiT +akg +akg +akg +atI +akm +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +avO +aEZ +aEZ +aEZ +aEZ +aEZ +aEZ +aEZ +aGl +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aCn +aCX +aDU +aDV +aFv +aGI +aHB +aHB +aIV +aCY +aKp +bTd +aoX +aLs +aLX +aLX +aNn +aOd +buE +buE +buE +cuB +cuS +cuS +cuZ +aLW +aLW +aLW +aLW +aLW +aTn +aTj +aoX +aXf +bad +bal +bdc +aKh +bgf +aXf +bFZ +bHZ +bjZ +bjZ +bmb +bjZ +aTt +bpQ +brl +bsV +buu +bvH +bwG +bxD +byO +bzo +bzY +bAQ +bBD +bCD +bDA +bEk +cdO +cdS +cdU +cdU +cvc +bbc +bLD +bkv +bpU +brs +btd +bSI +bFu +bHZ +bUf +bVa +bWf +bWX +bXR +bYx +bZd +cac +cnz +bkl +cnW +coB +coU +aFK +aVo +aQG +aFK +aVo +cpy +aGl +cpO +cpO +aFK +aFK +cpO +cpX +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(116,1,1) = {" +foB +aZh +bjg +bjg +bjg +bjg +bjg +bjg +biA +bjj +aRV +aRV +bwZ +aZa +bqj +bqj +bcA +bcA +bcA +bcA +bcA +bcA +bcu +bcu +alt +alv +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaM +aaM +aaM +aaM +aby +aaM +aaM +aaM +aaM +acl +acq +acu +acz +acz +ads +adS +acz +aew +acq +afj +afl +afl +agQ +ahs +afl +afl +aiT +akg +akg +akU +akg +akE +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aLG +aQG +aFK +aVo +aQG +aFK +bdE +bdT +bgm +aCn +aCY +aDV +aEB +aFw +aGJ +aDV +aDV +aIX +aCY +aKq +aoX +aoX +aLt +aLY +aLY +aNo +aOe +aNo +aLY +aSI +cuQ +cuT +cuV +aTo +aoD +aNn +aLX +aLX +aLX +aTn +aWn +aoX +aXf +bae +bal +bdc +aKh +bgg +aXf +bFZ +bFu +bPH +blc +bmc +bjZ +aTt +bpQ +brm +bsW +buv +bvI +bwH +bxE +byP +bzp +cdM +bAR +bBE +bCE +cdN +bEl +bEQ +bFi +bFF +bGO +cvd +bbc +bLE +bLE +bOc +bPP +bRE +bLE +bFs +bHZ +bUg +bVb +bWg +bWY +bXS +bYy +bZe +cad +cnA +cnD +cnX +coz +coW +aFK +aVo +aQG +aFK +aVo +aGl +aGl +cpO +cpO +aFK +aFK +cpO +cpY +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(117,1,1) = {" +foB +aZh +bdz +bdz +bdz +bdz +bdz +bdz +biB +bjj +aRV +aRV +bwZ +bwZ +bcB +bcB +bcB +bcB +bcB +bcB +bcB +bcB +aaE +aaE +aaP +alv +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaM +aaZ +abi +abr +abs +abr +abL +abU +acb +acb +acq +acv +acz +acz +acz +acz +acz +aex +acq +afk +afl +agn +agR +aht +ahU +afl +aiU +akl +akl +akl +akl +akE +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +azl +aal +iFP +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aCn +aCZ +aCn +aCn +aCn +aCn +aDV +aCW +aIY +aJG +aCn +aoX +aoX +aLt +aLY +aMD +aNp +aPV +aQI +aQJ +aSJ +aRC +aSh +cuW +aTo +aTj +aUo +aUo +aUo +aUo +aVT +aUo +aXf +aXf +baf +bbL +bdc +aKh +bgh +aXf +bFZ +bFu +bQL +blc +bmd +bjZ +aTt +bpQ +brn +bsX +bdA +cdH +bvJ +bfm +bfm +bfm +bfm +bAS +bBF +bCF +bDD +bfm +buz +bFj +bFG +bGP +bIH +bbc +bLE +bMI +bOd +bPQ +bRF +bLE +bFs +bHZ +bUf +bVc +bWh +bWX +bXR +bYx +bZf +bUf +cny +cnE +bgn +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +aGl +cpQ +cpO +aFK +aFK +cpO +cpX +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(118,1,1) = {" +foB +aZh +bhK +bhK +bhK +bhK +bhK +bhK +bhK +aMN +aTB +aUt +bnS +bnS +bnS +bnS +bnS +bnS +sYT +eRU +bwZ +bwZ +hMn +aaP +aaP +alv +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaN +abb +abj +abs +abs +abs +abM +abj +acc +acm +acq +acx +acz +acY +adt +acY +acz +acz +aeI +afl +afl +afl +agS +afl +afl +air +aiR +akm +akm +akV +akV +akm +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aCn +aCY +aDV +aDV +aFx +aGN +aDV +aCY +aIZ +aCn +aCn +aCn +awo +aLu +aLZ +aME +aNq +aOf +aPc +aPW +aSK +aRD +aPW +cuX +aTp +aTj +aUo +aUT +aVl +aVy +aVl +aWo +aXg +aYv +bag +bal +bdc +aKh +bgi +aXf +bFZ +bHZ +bjZ +bjZ +bme +bjZ +aTt +bpQ +bro +bsY +buw +bvK +bwI +bxF +bVy +cju +cju +cju +cqm +crj +crx +cju +csc +bFb +bFH +bGQ +bII +bbc +bLE +bMJ +bOe +bPR +bRG +bLE +bFs +bHZ +bUf +bVd +bWi +bWX +bXR +bXR +bZg +bUf +cny +cnB +cnO +bdS +coU +aFK +aVo +aQG +aUm +aVo +aGl +aGl +cpR +cpR +cpV +cpV +cpR +cqa +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(119,1,1) = {" +foB +aZh +bfa +bfa +bfa +bfa +aEh +bhL +biD +biA +aSL +aUu +brS +brS +brS +brS +brS +kPU +buU +bwZ +bwZ +bwZ +aaP +aaP +aaP +alv +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaH +aal +aaO +abc +abk +abs +abs +abs +abN +abV +acd +abV +acq +acy +acz +ada +adu +adT +acz +acz +aeJ +afl +afl +ago +agT +ahu +afl +afl +aiV +akm +akm +akX +akX +akm +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aGl +aQG +aUm +aVo +aQG +aFK +bdE +beA +bgS +aCo +aDa +aDU +aDV +aFy +aGI +aHB +aIl +aJa +aJH +aKr +aCn +aKR +aLv +aLY +aMF +aNr +aOg +aPd +aPX +aSM +aRE +aSi +cuY +aTq +aTj +aUo +aUU +aVm +aVm +aVm +aWp +aXh +aYw +bal +bDC +bdc +bMF +bgj +aXf +bFZ +bHZ +bjZ +bld +bmf +bnn +boG +bpR +brp +bsZ +bux +bvL +bwJ +bxG +bVz +ckO +ckO +ckO +cqm +crj +cli +ckO +csd +bFc +bFI +bGR +bIJ +bbc +bLE +bMK +bOf +bPS +bRH +bLE +bFs +bHZ +bUf +bUS +bWj +bWZ +bUS +bUS +bZa +bUf +bUf +bUf +cnO +bdS +coU +aUm +aVo +aQG +aFK +aVo +aGl +cpG +cxm +cxm +cxm +cxm +cxm +cxm +cxm +cAI +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(120,1,1) = {" +foB +aZh +bfa +aaz +bdD +bfa +aEi +aFQ +aJU +biA +aSL +aUu +aWK +aZb +brS +byw +cut +jPT +buU +bwZ +gkg +gkg +ajw +ajw +ajw +aVB +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaO +abd +abl +abt +abz +abs +abs +abz +abs +abs +acr +acz +acz +adb +adu +adU +acz +acz +aeJ +afl +afl +agp +agU +ahv +afl +afl +aiW +akm +akm +akX +akX +akm +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aCn +aCY +aDV +aEB +aFz +aGJ +aDV +aCY +aJb +aJI +aKs +aCn +aKS +aLv +aLY +aLY +aNs +aOh +aPe +aLY +bGw +cuR +aSj +aSN +aTr +aTT +aUo +bdi +aVm +aVm +aVm +aWp +aXi +aYx +bxC +bal +bdc +aKh +bgk +aXf +bFZ +bHZ +bjZ +ble +bmg +bno +boF +bpS +brq +bta +buw +bvM +bvM +bxH +bVz +ckO +oUj +clP +cqo +crk +cry +ckO +csd +bFk +bFD +bGT +bIK +bKn +bLE +bML +bOg +bPT +bRI +bLE +bFs +bHZ +bUf +bUf +bUf +bUf +bXT +bWT +bYY +bWT +bWT +bUf +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpH +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(121,1,1) = {" +aac +aad +aam +aaA +aDn +aam +aEj +aFR +aJV +alt +alv +aam +aaA +aDn +aam +aaC +aDp +vAA +eoy +alv +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaO +abe +abm +abs +abA +abF +abA +abF +abA +abs +acq +acA +acz +adc +adu +adV +acz +acz +aeJ +afl +afl +agq +agV +ahw +afl +afl +aiV +akm +akm +akX +akX +akm +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aUm +bdE +bdS +bgm +aCn +aCZ +aCn +aCn +aCn +aCn +aDV +aCY +aJc +aJI +aKt +aCn +aKS +aLv +aws +aws +bTt +aOj +byt +bzq +bzq +bzq +bGg +bzq +bPW +bTe +aUo +aUV +aVm +aVm +aVm +aWq +aXf +aYy +bam +bam +bde +aKh +bgq +aXf +bFZ +bHZ +bjZ +blf +bmh +bnp +aZB +bpQ +brr +btb +buy +bvN +bdA +bxJ +bVz +ckO +clP +cpe +cqp +crl +crz +crH +bQG +csw +bNb +bNb +bNb +bNb +bNb +bFu +ciW +cje +cjj +bNb +bFu +bHZ +bUf +bVe +bWk +bUf +bXU +bWT +bYY +cae +cae +cbQ +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpH +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(122,1,1) = {" +aac +aad +aam +aam +aDo +aam +aEk +aFR +aJW +alt +alv +aam +aam +aDo +aam +byK +aDp +dNy +eoy +alv +bEY +adl +adl +cqe +cqI +sYK +bEY +rcW +sQo +hXd +hXd +snc +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaQ +abf +abj +abs +abA +abG +abO +abW +abA +abs +acq +acB +acz +acY +adv +acY +acz +acz +aeK +afl +afl +afl +agS +afl +afl +air +aiR +akm +akm +alc +alc +akm +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apl +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqf +ayE +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aCn +aCY +aDV +aDV +aFA +aGO +aDV +aCY +aIZ +aJJ +aKu +aCn +aKS +aLv +aMa +aws +aws +aOj +byu +bzr +bzr +bzr +bGg +bGg +bPW +bTe +aUo +aUW +aVl +aVz +aVl +aWr +aXj +aYz +ban +aKh +bdf +ban +bgr +bhj +bGp +bHZ +bjZ +blg +bmi +bnq +aZB +bpT +bro +btc +buz +bvO +but +bxK +bVz +ckO +cmv +bQG +cqq +crm +crA +crb +bQG +csx +bNt +bNt +bNt +bNt +bNt +bFu +cjd +cjf +cjl +bNx +bFu +bHZ +bUf +bVf +bWk +bXa +bWT +bWT +bYY +bWT +bWT +cbR +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpH +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(123,1,1) = {" +aac +aad +aam +aaB +aDp +aam +aam +afJ +aJX +alt +alv +aUv +afJ +afJ +aam +aam +cuu +aJX +eoy +alv +bEY +adl +adl +cqf +cqI +ssY +bEY +kfz +rxa +fwK +fwK +cIt +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaM +abg +abn +abs +abA +abH +abA +abH +abA +acn +acq +acz +acz +acz +acz +acz +acz +aey +acq +afm +afl +agn +agW +agY +ahU +afl +aiS +akB +akB +akB +akB +akE +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aRT +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aCn +aCX +aDU +aDV +aFB +aGI +aHB +aIm +aJd +aJK +aCn +aCn +aKS +aLv +aws +aMG +aMG +aMG +aPg +aMG +aMG +aMG +bGu +bLb +bQf +bTI +aUp +aUX +aVn +aUo +aVU +aUo +aXf +aYA +bao +bEN +bdg +beJ +aIW +aXf +bFZ +bHZ +bjZ +bjZ +bjZ +bjZ +aTt +bpU +bri +bsS +bku +bku +bku +bxL +bVz +ckO +cmv +bQG +cqp +crl +crA +crb +ckO +csd +bNd +bNd +bNd +bNd +bNd +bMM +bOh +bPU +bRJ +bNd +bFs +bHZ +bUf +bUf +bUf +bUf +bXU +bWT +bYY +cae +cae +cbR +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpH +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(124,1,1) = {" +aac +aad +aam +aaC +aDp +afJ +afJ +afJ +aam +alt +aaP +aFS +afJ +afJ +afJ +afJ +afJ +aam +eoy +alv +bEY +adl +adl +adl +adl +adl +fqI +phV +fwK +cHq +tmZ +kZN +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aaM +aaM +abo +abu +abB +abI +abP +abX +abB +aco +acq +acC +acz +acz +ady +acz +aei +aez +acq +afn +afl +afl +agX +agY +afl +afl +aiT +akg +akg +akU +akg +akE +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aCn +aCY +aDV +aEB +aFD +aGJ +aDV +aIo +aJe +aJL +aKv +aKo +aKS +aLv +aws +aMG +aNt +aOk +aPh +aPh +aQK +aMG +bBU +bFg +bQz +bFg +bzu +bzu +bzu +bzu +bFg +ccA +aXf +aYB +bap +bEO +bdh +beK +bgs +aXf +bFZ +bFu +bNb +blh +blh +blh +bkv +bpV +brs +btd +bkv +aZB +bkv +bxM +bXp +ckO +cmv +bQG +cqT +crn +crA +crb +ckO +csd +bFJ +bGU +bGU +bGU +bLF +bMN +bOi +bPV +bRK +bNd +bFs +bHZ +bUf +bVg +bWk +bXb +bWT +bWT +bYY +bWT +bWT +cbS +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpI +cxn +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(125,1,1) = {" +aac +aad +aam +aaD +aDp +aam +aEJ +afJ +aam +alt +alv +aUv +aWL +afJ +bcC +byL +cuv +aam +eoy +hMn +jdx +adl +adl +adl +adl +adl +bEY +qvZ +fwK +rxa +fwK +ruk +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaH +aal +aal +aaM +aaM +abv +abC +abJ +abQ +abY +ach +acp +acq +acq +acR +acq +acq +acq +acq +acq +acq +afo +afl +agn +agY +agY +ahU +afl +aiT +akg +akg +akg +ald +akm +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aCn +aCZ +aCn +aCn +aCn +aGL +aDV +aIp +aJf +aJM +aKw +aKq +aKS +aLv +aws +aMG +aNu +aOl +aOl +aOl +aQL +aMG +cuU +bFg +bQz +bTV +bVm +bVm +cag +bFg +bFg +ccB +aXf +aXf +aXf +bFd +aXf +aXf +aXf +aXf +bFZ +bFu +bHZ +bli +bli +bli +bli +bpW +brt +bte +buA +bvP +buA +bxN +bVz +ckO +cmv +cpf +cqT +crn +crA +crb +ckO +csd +bFJ +bGV +bGY +bGY +bLG +bMO +bOj +bPX +bRL +bNd +bFs +bHZ +bUf +bVh +bWk +bUf +bXU +bWT +bZh +caf +caf +bUf +cnO +bdS +coU +aFK +aVo +aQG +aUm +aVo +aGl +cpH +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(126,1,1) = {" +aac +aad +aam +aam +aam +aam +aam +aFS +aam +alt +alv +aam +aam +aam +aam +aam +aam +aam +eoy +alv +bEY +adl +adl +adl +adl +adl +bEY +wuG +rKc +rbl +mkV +dTR +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aal +aal +aaM +aaM +abD +abK +abK +abK +aci +aaM +acs +acD +acD +add +adz +adW +add +acD +aeL +afp +afp +agr +agZ +afp +afp +afp +aiU +akg +akg +akg +akE +aBR +aCi +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aLG +aQG +aFK +aVo +aQG +aFK +bdE +bdT +bgl +aCn +aCY +aDV +aDV +aFE +aGP +aDV +aIq +aJg +aJN +aKx +aCn +aKS +aLv +aws +aMG +aNv +aOl +aPi +aOl +aQM +aMG +bBU +bFg +bQA +bTc +bVn +bSd +bVq +cag +bFg +bFg +cdu +aYC +aOc +aTn +aOc +aOc +aOc +bhk +bFZ +bFu +bFu +blj +bmj +bnr +bmj +bpX +bru +bti +bvQ +bvQ +bwL +bto +bVz +ckO +cmv +bQG +cqT +crn +crA +crb +ckO +csd +bNd +bGW +bGY +bGY +bLH +bMP +bOk +bPY +bRM +bNd +bFs +bHZ +bUf +bUf +bUf +bUf +bXV +bXV +bZi +cah +bUf +bUf +cnO +coA +coU +aFK +aVo +aQG +aFK +aVo +cpy +cpH +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(127,1,1) = {" +aac +aad +btv +btv +btv +btv +btv +ajw +aKB +aaP +aaP +btv +btv +btv +btv +btv +btv +btv +hlN +alv +bEY +adl +adl +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaI +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +acs +acE +acS +acS +acS +acS +acS +acD +acs +afq +afq +afq +afq +afq +afq +afq +afq +akg +akg +ald +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +oIz +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aFK +aWs +aQG +aFK +bdE +bdS +bgl +aCn +aCX +aDU +aDV +aFF +aGI +aHB +aIr +aJh +aJO +aKw +aKo +aKS +aKT +aws +aMH +aNw +aOm +aPj +aOl +aQN +aRF +bBU +bFg +bQH +bAF +bVq +bTc +bAF +bWE +bFg +bFg +cdu +aYD +aNn +bFh +bIE +buE +buE +bPx +bHr +bIa +bFu +blj +bmk +bns +bmj +bpY +brv +btj +buC +buC +buC +bxP +bVz +ckO +cmv +bQG +cqT +crn +crB +crb +ckO +csd +bFK +cdW +bGY +bGY +bLH +bMS +bOl +bPX +bRN +bNd +bFs +bFu +bNb +bNb +bNb +bNb +bFu +bFu +bNb +bNb +bNb +bNb +cnT +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpH +cxo +cdB +bvU +bvU +bvU +bEY +cAx +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(128,1,1) = {" +aac +aad +aal +aal +aal +aal +aal +aal +aal +alt +alv +aam +aam +aam +aam +aam +aam +uAY +eoy +alv +bEY +adl +adl +bEY +cqG +jCx +crM +adO +adl +adl +cor +cnh +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aaF +aaJ +aaK +acw +acw +acw +acw +aaK +acw +acw +acw +acw +acw +acs +acD +acS +acS +acS +acS +acS +acD +acs +afr +afP +afq +aha +ahx +ahV +ais +afq +akg +akg +akE +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aUm +aVo +aQG +aFK +bdE +bdS +bgm +aCn +aCY +aDV +aEB +aFG +aGQ +aHD +aIs +aJi +aJP +aKy +aKq +aKS +aLv +aws +aMI +aNx +aOn +aPk +aOl +aQN +aMI +bBU +bFg +bQH +bAF +bVK +bSd +bAF +bWE +bFg +ccD +aHR +aHR +aHR +aHR +bKm +aHR +aHR +aHR +aHR +bIb +bQM +bli +bli +bli +bli +bpW +brw +btk +cdF +bvR +buC +bxP +bVz +ckO +cmv +bQG +cqT +crn +crA +crb +ckO +ckO +bFL +bGY +bGY +bGY +bLH +bMT +bOm +bPX +bRO +bMM +bFu +bFu +bNt +bNt +bFu +bFu +bNt +bNt +bNt +bNt +cud +cui +cnY +cov +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpH +cxp +cxT +bvU +czc +czy +cxT +cxp +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(129,1,1) = {" +aac +aad +aan +aan +aal +aal +acZ +aal +aal +alt +alv +aam +aWM +bah +aam +aaB +aDp +nGO +eoy +alv +bEY +adl +adl +duE +olL +cqI +cqI +oYk +adl +adl +bEY +orN +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aqg +acK +acK +acK +acK +acK +acK +acK +acK +acK +acK +acK +ayG +acs +acF +acT +acD +acD +acD +acD +acD +acs +afs +afQ +ags +aft +ahy +ahy +aft +aiX +akg +akg +akE +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aCn +aCZ +aCn +aCn +aCn +aCn +aHE +aIt +aJj +aJQ +aKz +aCn +aKS +aLv +aws +aMJ +aNy +aOl +aOl +aOl +aQN +aMJ +bBU +bFg +bQH +bAF +bWE +bQJ +bAF +bWE +bFg +ccD +aHR +aYE +baq +bbP +bdj +beL +baq +bhm +aHR +bIb +bHZ +aWA +bml +bnt +boH +bpZ +brx +btk +buC +bvS +buC +bxP +bVz +ckO +cmv +bQG +cqT +crn +crA +crb +ckO +ckO +bFL +bGY +bGY +bGY +bLH +bMU +bOk +bPZ +bRP +bNd +bFs +bHZ +bUh +bUh +bWl +bWl +bUh +bUh +bUh +bUh +cbc +bUh +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpH +cxq +bvU +bvU +bvU +czy +bvU +cxq +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(130,1,1) = {" +aac +aad +aao +aze +aal +aal +aal +aal +aal +alt +alv +aam +aaA +aDn +aam +aaC +aDp +vAA +eoy +aaP +jdx +adl +adl +bEY +cqJ +ptp +crO +adl +adl +adl +bEY +cnj +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +acs +acs +acs +acs +adA +adX +aej +aeA +acs +afq +afq +afq +ahb +ahy +ahy +ait +aiY +akg +akg +akE +aso +aBS +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgm +aCp +aDb +aDW +aDW +aSk +aTR +aHI +aIu +aJk +aJR +aKA +aCn +aKS +aLv +aws +aMG +aNz +aOo +aPl +aOo +aQO +aMG +bBU +bFg +bQH +bAF +bWE +bQJ +bAF +bWE +bFg +ccD +aHR +aYF +aAT +aAT +aKj +aAU +aAU +bhn +bic +bIc +bHZ +aWA +bmm +bnt +bnt +bqa +brx +btk +buD +bvT +bwM +bxP +bVz +ckO +cmv +bQG +cqT +crn +crA +crb +ckO +csd +bFK +bGZ +bGY +bGY +bLH +bMS +bOl +bPX +bRQ +bNd +bFs +bHZ +bUh +bVi +bCT +bCT +bXW +bUh +bZj +cai +cbd +bUh +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpH +cxp +bvU +bvU +bvU +czy +bvU +cxp +cAJ +cAM +cAQ +ctQ +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(131,1,1) = {" +aac +aad +aap +aap +aal +aal +aEK +aFU +aEK +btJ +bAk +bsf +bsf +bai +aam +byK +aDp +dNy +eoy +alv +bEY +adl +adl +adl +adl +adl +adl +adl +bEY +bEY +bEY +bEY +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +alg +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +bQU +acs +acG +acU +adf +acD +adY +acD +acD +aeM +aft +afR +aft +aft +ahy +ahW +aiu +aiZ +akg +akg +fZZ +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +apm +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aUY +bdE +bdS +bgl +aCq +aDc +aDX +aDX +aSA +aCn +aCn +aIv +aJl +aCZ +aCn +aCn +aKS +aLv +aws +aMG +aNA +aOq +aPm +aOq +aNA +aRG +bBU +bFg +bQH +bAF +bWE +bQJ +bAF +bWE +bFg +ccD +aHR +aYG +bar +aOp +bdk +aOp +bar +bho +aHR +bIb +bHZ +aWA +bmn +bnu +bYo +bpZ +bry +btl +cdG +bvW +bwN +bxP +bVz +ckO +cmv +bQG +cqT +crn +crA +crb +ckO +csd +bNd +bHa +bIL +bKo +bNd +bMV +bOn +bQa +bRR +bNd +bFs +bHZ +bUi +bVj +bWm +bWm +bVj +bUh +bZk +bCT +cbe +bUh +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpH +cxq +cxU +bvU +bvU +czy +cxU +cxq +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(132,1,1) = {" +aac +aad +aal +aal +aal +aal +aEK +aEK +aKV +btJ +bAk +aUw +aXP +bxh +aam +aam +cuu +aJX +eoy +alv +bEY +adl +oin +bEY +pcj +adl +adl +adl +bEY +oju +jZF +cqI +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +acs +acH +acH +acs +acD +adZ +aek +aeB +acs +afu +afS +aft +aft +aft +ahX +aiv +afq +akg +akg +akE +aso +akg +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +anB +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +aqh +azm +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aCn +aDd +aDX +aDX +aSC +aDW +aDX +aDX +aJm +aJS +aDW +aCn +aKS +aLv +aws +aMK +aNB +aOr +aOr +aOr +aQP +aMK +bBU +bFg +bQH +bAF +bWE +bQJ +bAF +bWE +bAF +bAF +aXk +aYH +bas +bas +bas +bas +bas +bhp +bid +bIY +bHZ +aWA +bmo +bnu +bnu +bpZ +brz +btm +buF +cdI +bwO +bxP +bVz +ckO +cmv +bQG +cqT +cro +crA +crb +ckO +csd +bFM +bHb +bIM +bIM +bLI +bMW +bOo +bQb +bRS +bSJ +bFs +bHZ +bUh +bVk +bWn +bXc +bXX +bUh +bZl +bCT +cbf +bUh +cnO +bdS +coU +aFK +aWs +aQG +aUY +aVo +aGl +cpH +cxr +cdC +bvU +bvU +bvU +bEY +cAy +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(133,1,1) = {" +aac +aad +btv +btv +btv +btv +bse +bqq +bse +aLD +aLD +bwj +bxh +bxh +afJ +afJ +afJ +aam +eoy +fVP +bEY +adl +adl +bEY +ium +adl +adl +adl +bEY +qwr +adl +adl +bEY +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +acs +acI +acV +acs +acs +aea +ael +acs +acs +afq +afq +agt +ahc +ahz +afq +afq +afq +akg +akg +ale +awY +akU +aaW +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgT +aFH +aFI +aRH +aRH +aTk +aDW +aDX +aDX +aJm +aJS +aDW +aCr +aKT +aLv +aws +aMK +aNC +aOr +aTS +aOr +aQP +aUl +bFg +bFg +bQH +bAF +bWE +bQJ +bAF +bWE +bAF +bAF +aXl +aYH +bas +bas +bas +bas +bas +bhp +bie +bIY +bHZ +aWA +bmp +bXA +boI +bpZ +brA +btn +buG +bvY +bwP +bto +bVz +ckQ +cmv +bQG +cqT +crn +crA +crb +ckQ +csd +bFM +bHc +bIN +bKp +bLJ +bMX +bOp +bPX +bRT +bSJ +cla +bHZ +bUh +bVk +bWo +bXd +bXX +bUh +bZm +caj +cbi +bUh +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpH +wQO +bvU +bvU +bvU +bvU +bvU +wQO +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(134,1,1) = {" +aac +aad +aam +aam +aam +aam +bsf +bwj +bsf +btJ +bAk +aUw +aXQ +bxh +bcC +byL +cuv +aam +eoy +aaP +jdx +adl +adl +bEY +mrd +wcL +uBB +adl +heG +adl +adl +euK +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajC +adg +ajt +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +aca +act +act +aca +act +act +adg +aDu +ajt +act +aEq +aal +aal +amb +aal +aal +aal +aal +aal +amb +aal +aal +aal +aal +aal +amb +aal +aal +aal +aal +aal +aFq +aGl +aQG +aFK +aVo +aQG +aFK +bdE +bdS +bgl +aCn +aDe +aDY +aDY +aDY +aDY +aDY +aIw +aJn +aJT +aDW +aCn +aKS +aLv +bTt +aMK +aND +aOu +aPn +aQa +aQQ +aMK +bBU +bFg +bQH +bAF +bWE +bQJ +bAF +bWE +bFg +ccD +aHR +aYI +bat +bbQ +bdl +beM +bgt +bhq +aHR +bIb +bHZ +aWA +bmq +bmq +bmq +bpZ +brB +bto +buH +bto +bto +bxQ +bVz +ckO +cmv +cpg +cqT +crn +crA +crb +ckO +csd +iMm +bNd +bNd +bNd +bNd +bNd +bOq +bQc +bRU +bNd +clf +bHZ +bUh +bVl +bWp +bXe +bVj +bUh +bZn +cak +cbj +bUh +cnO +bdS +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpH +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(135,1,1) = {" +aac +aad +aam +aaB +aDp +aam +aEL +bxh +bsf +btJ +bAk +bsf +bsf +bsf +aam +aam +aam +aam +eoy +alv +bEY +adl +adl +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aaW +adg +ajt +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +adg +aDu +ajt +act +aEq +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aFq +aGl +aSB +aFK +aWt +aQG +aFK +bdE +beB +bjO +aCs +aCn +aDZ +aEI +aFJ +aCn +aCn +aDZ +aJo +aFJ +aCn +aCm +aKU +aLw +aMb +aMK +aMK +aOv +aPo +aQb +aQR +aRI +bBU +bFg +bQI +bAF +bXj +bQJ +bAF +bWE +bFg +ccD +aHV +aHR +aHR +aHR +aHR +aHR +aHR +aHR +aHR +bJj +bQN +acg +acg +acg +acg +bqb +brC +acg +buI +acg +acg +bxR +bVz +ckO +cnZ +cpf +cqU +crn +crA +crb +ckO +csd +bxR +acg +acg +acg +acg +acg +bqb +brC +buI +acg +cmC +cqt +bUh +bUh +bWq +bXf +bUh +bUh +bZo +bUh +bUh +cdA +cnO +bdS +coS +aFK +aVo +aQG +aFK +aVo +aGl +cpI +cxn +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(136,1,1) = {" +aac +aad +aam +aaC +aDp +afJ +bxh +bxh +bsf +btJ +aLD +bse +bse +bse +btv +btv +btv +btv +hlN +alv +bEY +adl +adl +bEY +cqG +jCx +crM +adO +adl +adl +cor +cnh +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aaW +adg +akd +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +adp +aSr +bdJ +bdJ +bTf +cuo +cus +cuy +aDQ +aDQ +aEC +aEC +aEC +aEC +aEC +aEC +aEC +aEC +aEC +aEC +aEC +aEC +aEO +aEO +aEO +aEO +aEO +aEO +aEO +aEO +afB +afB +aHe +aIn +aIn +aTx +cvz +cvC +cvG +cvJ +aEO +aEO +aEO +aEO +aEO +aEO +aEO +aEO +bxs +aEO +bxI +bxI +aHF +aHF +aEO +aEO +aEO +aEO +aEO +aEO +aGi +aEO +bDK +bjU +bwK +byR +byR +bBG +byR +bBJ +bjU +bDK +aEO +aEO +aEO +aEO +aEO +aEO +aEO +aEO +aEO +cfd +cgG +aEO +aEO +aEO +aEO +cku +cky +aEC +ckF +aEO +aEO +aEO +bXq +ckR +coa +cph +cqV +crp +crC +crI +ckR +ckR +aEO +aEO +aEO +aEO +aEO +aEO +cmH +cky +ckF +aEO +aEO +aHF +aEO +aEO +cnq +cnt +cnu +cnu +cnw +cnu +cnu +cnu +ctt +cvQ +cvR +ctD +ctu +cty +ctu +ctE +ctH +ctJ +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(137,1,1) = {" +aac +aad +aam +aCt +aDp +aam +bsf +bxh +aLx +btJ +bAk +bxj +bxj +bxj +aXS +aXS +aXS +aXS +eoy +alv +bEY +adl +adl +duE +olL +cqI +cqI +oYk +adl +adl +bEY +orN +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aaW +ajW +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aUx +aBT +aBT +bTg +cup +cuw +cuz +aDR +aEA +aEA +aEA +aEA +aEA +aEA +aEA +aEA +aEA +aEA +aEA +aEA +aEA +aEW +aEA +aEA +aEA +aEA +aEA +aEA +aEA +alL +aDh +aHi +aIy +aSX +aUy +aIy +cvD +cvH +bdK +aEA +aEA +aEA +aEA +aEA +aEA +aEW +aEA +aEA +aEA +aEA +aEA +aEA +aEA +aEW +aEA +aEA +aEA +aEA +aEA +aGj +aEA +bDL +cvj +bxa +bzx +bAh +bBH +bzx +cvp +bCJ +bDL +aEA +aEA +aEA +aEA +aEA +aEA +aEW +aEA +aEA +aGj +cgJ +aEA +aEA +aEA +aEW +aGj +aEA +aEA +ckG +aEA +aEA +aEA +bXr +bkc +cob +cpi +cqW +crq +crD +crL +cse +csy +aEA +aEA +aEA +aEA +aEA +aEA +cmI +aEA +ckG +aEA +aEA +aEA +aEA +aEA +ckG +cmI +aEA +aEA +ckG +aEA +aEA +aEA +csQ +csY +cth +ctq +ctv +ctz +cts +ctF +ctH +pVt +wQO +bvU +bvU +bvU +bvU +bvU +wQO +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(138,1,1) = {" +aac +aad +aam +aam +aDo +aam +aEM +bqu +aLy +btJ +bAk +bxj +aXR +baj +bdL +aaC +nTN +aXS +eoy +alv +bEY +adl +adl +bEY +cqJ +ptp +crO +adl +adl +adl +bEY +cnj +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aaW +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +act +alh +aUB +aBU +aBU +aBU +cuq +cux +cuA +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +amp +aDL +aHj +aNX +aTs +aHj +aNX +cvE +cvI +bdU +aOs +aEa +aEa +aEa +aEa +aEa +aEa +aFd +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +bEm +cvk +bnV +bzy +bAT +bxd +bzy +bAT +bCK +bEm +aOs +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aEa +cgN +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aFd +aEa +aEa +aEa +bXs +ckT +coc +cpm +cqX +coc +cpm +crP +csf +csz +aOs +aEa +aEa +aEa +aEa +aEa +aEa +aEa +aFd +aEa +aEa +cnd +aEa +aEa +cnr +aEa +aEa +aEa +aFd +aEa +aEa +aEa +csR +csZ +cti +ctr +ctw +ctA +cts +ctG +ctH +ctJ +cxo +cdB +bvU +bvU +bvU +bEY +cAx +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(139,1,1) = {" +aac +aad +aam +aCu +aDn +aam +aEN +bqu +aLz +btJ +aLD +aVA +bxh +bxh +bdN +aDp +mok +aXS +eoy +alv +bEY +adl +adl +adl +adl +adl +adl +adl +bEY +bEY +bEY +bEY +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +acZ +aal +aal +ajL +aka +aka +aka +akf +akf +akf +akf +akf +akf +akf +akf +akf +aka +aka +aka +aka +aka +aka +alu +aWk +akf +act +aCT +aDg +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +amK +aEe +aEe +aEe +aEe +aEe +aEe +aEe +aEe +bew +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aFb +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +cuC +bCL +boX +bqn +bqn +bqn +bqn +bqn +bCL +bEn +aDE +aDE +aDE +aDE +aDE +aFb +aDE +aDE +ceM +aDE +cgQ +aDE +aDE +aDE +aDE +aFb +aDE +aDE +aDE +aDE +aDE +aDE +bYi +ckV +cod +cod +cod +cod +cod +cod +csg +csA +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +ceM +aDE +aDE +aDE +aFb +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +csS +cta +ctj +cts +cts +cts +cts +ctG +ctH +ctJ +cxp +cxT +bvU +czc +czy +cxT +cxp +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(140,1,1) = {" +aac +aad +aam +aCv +aDr +aam +aEP +bqu +aLA +btJ +bAk +bxj +bxi +bxh +bdP +aDp +jep +aXS +eoy +aaP +jdx +adl +adl +bEY +pcj +adl +adl +adl +bEY +oju +jZF +cqI +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +ahA +ahA +ahA +ahA +ahA +ahA +alw +aWu +akU +aCj +aCT +aDg +aDE +aDJ +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aqT +aEH +aHG +aEe +aEe +aEe +aEe +aTu +aFC +bey +aOt +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +bER +cvl +btG +bqn +bqn +bqn +bqn +bAU +bCM +bER +aOt +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +cgW +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +ckL +bZt +ckW +coe +cod +cod +cod +cod +cqY +cle +csA +aOt +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +cnv +aDG +aDG +aDG +aDG +csT +ctb +ctk +cts +cts +cts +cts +ctG +ctH +ctJ +cxq +bvU +bvU +bvU +czy +bvU +cxq +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(141,1,1) = {" +aac +aad +aam +aam +aam +aam +aES +aFV +aLB +btJ +bAk +bxj +bxj +bxj +aXS +aXS +aXS +aXS +eoy +alv +bEY +adl +adl +bEY +aQc +adl +adl +adl +bEY +qwr +adl +adl +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +acZ +aal +aal +ahA +ahY +aiw +aja +ajp +ahA +alw +aWu +akg +aCj +aCT +aDg +aDE +aDI +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aGX +aqT +aFt +aHW +aOA +aEe +aEe +aEe +aWE +bcn +bey +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aGX +bER +cvm +bxZ +bAa +bqn +bqn +bqn +bCG +bDE +bER +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +chj +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aGX +bZt +cld +cof +cod +cod +cod +cpn +crQ +csh +csA +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +cmU +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aEc +aGX +csT +ctc +ctl +cts +cts +cts +cts +ctG +ctH +ctJ +cxp +bvU +bvU +bvU +czy +bvU +cxp +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(142,1,1) = {" +aac +aad +aaq +aaE +aaE +aaE +bqq +bqq +aLC +aLD +aLD +bqq +bqq +bqq +aaE +aaE +aaE +aaE +hlN +alv +bEY +adl +adl +bEY +mrd +wcL +uBB +adl +heG +adl +adl +euK +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +ahA +ahZ +aiz +ajb +ajq +ahA +alw +aWu +akg +aCj +aCT +aDg +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aFb +aDE +aDE +aDE +aDE +aDE +aqT +aEe +aEe +aEe +aEe +aEe +aEe +aEe +aEe +bey +aDE +aDE +aDE +aDE +aFb +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aFb +aDE +aDE +aDE +aDE +aDE +bER +bCL +boX +bqn +bqn +bqn +bqn +bqn +bCL +bER +aDE +aDE +aFb +aDE +aDE +aDE +ceM +aDE +aDE +aDE +cgQ +aDE +aDE +aDE +aFb +aDE +aDE +ceM +aDE +aDE +aDE +aDE +bZt +ckV +cod +cpn +cod +cod +cod +cod +ckV +csA +aDE +aDE +aDE +ceM +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +aDE +ceM +aDE +aDE +aDE +aDE +ceM +csT +cta +ctj +cts +cts +cts +cts +ctG +ctH +ctJ +cxq +cxU +bvU +bvU +czy +cxU +cxq +cAJ +cAM +cAQ +ctQ +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(143,1,1) = {" +aac +aad +aar +ajw +ajw +ajw +boW +aGS +aLD +aLD +aLD +aLD +aLD +aLD +aaP +aaP +aaP +aaP +hlN +tyL +bEY +jdx +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +ahA +aia +aiA +ajc +ajr +ahA +alw +aWu +akg +aCj +aCT +aDt +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aGY +aBy +aFC +aHG +aEe +aTu +aHG +aEe +aTu +bdG +beC +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aGY +bES +bCM +btG +bqn +bAU +byb +bqn +bAU +bDH +bES +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +cgW +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aGY +caB +cle +coe +cod +cqY +coe +cod +cqY +csi +csB +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aDG +aGY +csU +ctd +ctm +ctr +ctx +ctB +cts +ctG +ctH +ctJ +cxr +cdC +bvU +bvU +bvU +bEY +cAy +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(144,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +alt +aaP +aaP +aaP +aaP +ajw +aaP +aaP +ajw +ajw +ajw +ajw +ajw +oKt +aVB +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +acZ +aal +aal +aad +aad +aad +ahA +aib +aiB +ajd +ajs +ahA +alw +aWu +akg +aCj +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aFa +aCT +aCT +aCT +aCT +aCT +aCT +aCB +aFT +aHX +aEe +aTv +aUz +aEe +aXe +bdH +beD +aCT +aCT +aCT +aCT +aCT +aCT +buQ +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aFa +aCT +aCT +aCT +aCT +aCT +aCT +bFl +cvn +bya +bqn +bAV +bBI +bqn +bCH +bDI +bFl +aCT +aCT +aCT +aCT +aCT +aCT +buQ +aCT +aCT +aCT +chl +aCT +aCT +aCT +aFa +aCT +aCT +aCT +aCT +aCT +aCT +aCT +caY +bkd +cog +cod +cqZ +crr +cod +crR +csj +clh +aCT +aCT +aCT +aCT +aCT +aCT +buQ +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aCT +aFa +aCT +aCT +aCT +aCT +aCT +aCT +csV +cte +cwT +cts +ctv +ctC +cts +ctG +ctI +ctJ +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(145,1,1) = {" +aac +acg +acg +acg +acg +acg +acg +alt +ajw +ajw +ajw +aVB +aXS +bak +bak +aXS +aXS +aXS +aXS +aXS +aXS +aXS +aXS +rni +rni +rni +rni +rni +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aac +ahA +aic +aiC +aje +aje +ahA +alw +aWu +akg +aCj +aCT +aCT +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aCB +aCB +aHY +aSO +aTw +aTw +aUA +aYi +aCB +beD +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +bFl +bDJ +byc +bAb +bAW +bAW +bAW +bCI +bDJ +bFm +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +aDH +chl +aDH +aDH +aCT +aCT +aDH +aDH +aDH +aDH +aDH +aDH +aDH +caY +bke +coC +cpr +cra +cpr +crE +crS +clh +csC +clt +clt +clt +clt +clt +clt +clt +clt +aCT +aCT +clt +clt +aCT +clt +clt +clt +clt +clt +clt +clt +clt +clt +cvN +ctH +cvT +ctu +cty +ctu +ctD +ctE +ctH +ctJ +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(146,1,1) = {" +aac +bBP +bHy +bJe +bJe +bJe +bBP +bsb +cgU +cgU +cgU +cgU +cgU +bDp +bDp +bUr +cjB +cjB +cjB +cgU +css +bDp +cgU +rni +rni +rni +rni +rni +rni +rni +rni +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aad +aad +aad +aad +aad +aac +aac +ahA +aid +aiC +ajf +ajf +ahA +alw +aWu +aal +aal +aal +aal +alm +alO +amc +alo +aED +aED +aEG +aED +aED +aED +aED +aED +aEG +aED +aED +aED +aED +aED +aED +alo +akz +akQ +azH +aGk +aFq +aGl +aQG +aUY +aVo +aZH +aFK +bdM +aGl +biG +giH +alJ +alJ +alJ +ueO +alJ +alJ +alJ +hPL +alJ +alJ +hOo +bmw +bmw +bmw +bmw +bmw +bmw +bmw +bmw +bmw +bmw +bGv +ccu +byp +bAF +bWE +bYH +bTW +caZ +ccu +ccI +aXz +pCQ +aXz +aXz +aXz +aXv +aXv +aXv +aXv +aXw +cjU +aXz +aXz +aSx +aRV +aRV +bVo +bVo +bVo +cgY +chf +iLC +cbW +cli +coD +bQG +crb +crs +bQG +bQE +cli +csd +boV +fao +boV +boV +boV +boV +boV +boV +aSx +aSL +ccV +ccV +ccZ +ccV +ccV +ccV +ccV +cdj +cjP +csP +ccV +csW +cnO +aGl +aQG +aFK +aVo +aZH +aFK +bdM +aGl +cpK +cxn +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(147,1,1) = {" +aac +bBP +bHz +bJe +bJe +bJe +bKA +bAk +cgU +ciL +cjB +cjB +cgU +bDp +bDp +cgU +ciM +cjB +cjB +cgU +cst +bDp +cgU +rni +rni +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aeC +aeC +aeC +aeC +aeC +aeC +ahA +aix +aiD +ajg +ajg +ahA +alw +aWu +aal +aal +aal +aal +akJ +akR +ame +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +ame +akR +akJ +aGk +aFq +aGl +aQG +aFK +aVo +aQG +aFK +aVo +aGl +biG +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +oyS +qPQ +bmw +bnM +boR +bmw +brO +boR +bmw +bnM +boR +bmw +bGv +ccu +byp +bAF +bWE +bQJ +bAF +bWE +ccu +ccI +aXw +boo +clr +bMb +clE +cma +cma +cma +cma +cmc +ckk +cly +aXz +cmr +aRV +aRV +bVo +cgO +cgT +cgZ +chg +bVo +cbW +cli +coD +bQG +crb +crt +bQG +cqT +cli +csd +boV +bJd +ciK +bMQ +boV +bOL +ccE +boV +aSx +aSL +ccV +wJY +ccW +ccV +cda +ccV +cde +cde +cde +cde +cde +csX +cnO +aGl +aQG +aFK +cpq +aQG +aFK +aVo +aGl +cpH +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(148,1,1) = {" +aac +bBP +bHA +bJe +bKB +bLR +bBP +bOD +cgU +ciM +cjB +cjB +bUr +bDp +cmT +cgU +ciL +ciN +cjB +cgU +csu +bDp +cgU +rni +rni +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aeC +aeN +afv +afT +agu +ahd +ahA +aiy +aiE +ahA +ahA +ahA +alw +aWu +aal +aal +aal +aal +aln +alP +amf +alR +ank +ank +ank +apo +ank +ank +ank +ank +ank +ank +aur +ank +ank +ank +ank +axZ +ayH +alP +aln +aGk +aFq +aGl +aQG +aFK +aVo +aQG +aFK +aWs +aGl +biG +pBd +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +qPQ +bmw +bmw +boS +bmw +bmw +boS +bmw +bmw +boS +bmw +bGv +ccu +byp +bAF +bWE +bQJ +bAF +bWE +ccu +ccL +bom +bop +bor +clD +clJ +clQ +clS +clV +cls +cmd +ckk +cko +aXz +aSx +aRV +aRV +bVo +cgP +cgV +bJv +chh +bVo +ccj +cli +coD +bQG +crb +cmv +bQG +crT +clj +csD +ciw +ciC +ciQ +bNg +bOC +caq +bOT +boV +aSx +aSL +ccV +wJY +ccW +ccV +cdb +cdd +cdf +cdf +cjQ +cde +cde +ctf +cnO +bdS +aQG +aFK +aVo +aQG +aFK +aVo +aGl +cpH +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(149,1,1) = {" +aac +bBP +bBP +bBP +bBP +bBP +bBP +bOD +cgU +ciN +cjB +cjB +cgU +bDp +bDp +cgU +cgU +cgU +cgU +cgU +csv +bDp +cgU +rni +rni +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeC +aeO +afw +afU +agv +ahe +ade +aih +aiF +ade +ade +bGs +alx +baL +aal +aal +aal +aal +alo +alo +amg +alo +alo +amm +amM +app +aqi +aqi +arw +aqi +aqi +atC +aus +amM +avQ +amm +alo +alo +amg +alo +alo +aGk +aFq +aGl +aQG +aFK +aVo +aQG +aFK +aVo +aGl +biG +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +qPQ +bmw +bnN +bnP +bqh +brP +bnP +buN +bwe +bnP +bnU +bGv +ccu +byp +bTW +bWE +bQJ +bAF +bWE +ccv +ccU +bxW +bxX +bKN +bMd +clJ +cma +cma +cma +cma +cmd +ckl +ckp +clC +clY +clY +clY +clF +clG +clH +clI +cmt +clK +cco +bmO +coD +bQG +crb +cmv +bQG +cqT +cli +csd +boV +ciD +ciR +bOs +boV +cbu +ceU +boV +aSx +aSL +ccV +wJY +ccW +ccV +ccV +ccV +rxL +cdh +cjR +cde +cde +ccV +cnH +bdS +aQG +aFK +aVo +aQG +aUY +aVo +aGl +cpH +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(150,1,1) = {" +aac +bGb +bHB +bJf +bJf +bJf +bJf +bAk +cgU +cgU +cgU +cgU +cgU +bDp +bDp +cgU +cjB +cpS +cjB +cgU +csr +bDp +cgU +rni +rni +rni +rni +rni +rni +rni +aad +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aal +aal +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aeC +aeP +afx +afV +agw +ahf +aie +aie +ajG +ahC +ahC +ajH +alz +baW +aal +aal +aal +aal +aal +alo +amh +alo +anl +anl +anl +anl +aqj +aqj +aqj +aqj +aqj +aqj +aqj +anl +anl +anl +anl +alo +amh +azp +aGk +aGk +aFq +aGl +aQG +aFK +aVo +aQG +aFK +aVo +aGl +biG +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +qPQ +bmw +bnO +boT +boT +boT +btx +buR +bwf +bnP +bnU +bGv +ccu +byp +bAF +bWE +bQJ +bUc +bWE +bFg +ccI +aXv +byE +bdw +bdx +clJ +clR +clT +baS +clX +cmd +ckm +ckq +aXz +aSx +aSL +bVo +bVo +bVo +bVo +chc +cmu +bVo +ccp +cli +coD +bQG +crb +cmv +bQG +cqT +cli +csd +boV +ciE +ciR +boV +boV +ccC +boV +boV +aSx +aSL +ccV +wJY +ccW +ccW +ccW +ccV +fCF +cdh +cjS +cdf +cdf +ctg +cvO +aGl +aQG +aUm +aVo +aQG +aFK +aVo +aGl +cpH +bvU +bvU +bvU +bvU +bvU +bvU +bvU +cAJ +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(151,1,1) = {" +aac +aTz +aTz +aTz +aTz +aTz +aTz +bOD +cgU +ciO +bDp +bDp +bDp +bDp +bDp +bUr +cjB +cjB +cjB +cgU +cst +bDp +cgU +rni +rni +rni +rni +rni +rni +aad +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aac +aad +aad +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeC +aeQ +afy +afW +agx +ahg +ahB +ahB +akn +bGr +bGr +bGt +alI +aso +aal +aal +aal +aal +aal +alo +amh +amm +anl +anD +anD +apq +anD +anD +arx +anD +arx +anD +anD +apq +anD +anD +anl +amm +amh +azp +aGk +aGk +aFq +aGl +aQG +aFK +aVo +aQG +aFK +aVo +aGl +biG +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +qPQ +bmw +bnP +boT +bqi +biF +bkb +bkX +blt +blu +bmA +bmG +bni +byA +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +aXv +byE +bdx +beY +clJ +cma +cma +cma +cma +cmd +ckn +aZg +aXz +cms +aSL +bVo +bVw +cgR +cgX +chd +bLU +bMc +ccq +clj +cmv +bQG +crb +cmv +bQG +cqT +cli +csd +boV +cqx +cmp +bxf +bva +bqt +bqt +boV +aSx +aSL +ccV +wJY +ccX +ccY +ccW +ccV +fCF +cdh +cdi +cdi +cdi +cto +bgn +aGl +aQG +aFK +aVo +aQG +aFK +aVo +aGl +cpL +cos +cos +cos +cos +cos +cos +cos +cdn +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(152,1,1) = {" +aac +aTz +bXZ +bZJ +cbg +ccx +aTz +bOD +cgU +ciP +bDp +ckx +bDp +bDp +bDp +cgU +ciM +cjB +cjB +cgU +css +bDp +cgU +rni +rni +rni +rni +rni +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aac +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeC +aeR +afz +afX +agy +aeC +aeC +aeC +aeC +aeC +aeC +aeC +akE +aso +aal +aal +aal +aal +aal +alo +amh +amL +anl +anD +aoE +apr +apr +apr +apr +asa +asM +asM +asM +asM +avR +anD +anl +amW +amh +azp +aGk +aGk +aFq +aGl +aQG +aUm +aVo +aQG +aFK +aVo +aGl +biG +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +qPQ +bmw +bnQ +boT +vyu +bjp +boT +eYQ +bwg +blN +bmE +cvi +cvo +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +aXv +bLS +clu +bUk +clZ +cmb +clU +clW +biC +cme +cmd +clA +aXz +aSx +aSL +bVo +cgL +cgS +bVo +che +ckr +bVo +ccr +cli +cnZ +bQG +crc +cmv +bQG +cqT +csk +csE +cix +cqy +cmq +cmA +cmA +cqL +bxg +boV +aSx +aSL +ccV +wJY +ccX +ccY +ccW +ccV +fCF +cdh +cdi +cde +cde +ccV +cnO +aGl +aQG +aFK +aVo +aQG +aFK +aVo +aGl +cpF +aal +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(153,1,1) = {" +aac +aTz +bYa +bZK +cbh +cbh +aTz +bOD +cgU +cgU +cgU +cgU +cgU +bDp +cmT +cgU +ciL +ciN +cjB +cgU +csu +bDp +cgU +rni +rni +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aac +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeC +aeC +aeC +aeC +aeC +aeC +aad +aad +aal +aal +aal +aal +alt +alv +aal +aal +aal +aal +aal +alo +ami +amM +anl +anE +aoF +aps +aqk +apt +apt +asa +apt +apt +aut +avf +avS +awN +anl +aya +ayI +azp +aGk +aGk +aFq +aGl +aQG +aFK +aVo +aQG +aUY +aVo +aGl +biG +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +qPQ +bmw +bnR +boT +bqk +brR +btz +vyu +boT +bnP +bnU +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +aXz +aXz +aXz +aXz +aXz +aXz +aXz +aXz +aXz +aXw +bfb +aXz +aXz +aSx +aSL +bVo +cgM +cgM +bVo +bVo +bVo +bVo +ccr +cli +coE +cpz +cqk +cqk +crF +crU +cli +csd +boV +cqz +cqA +bqt +bqt +cqM +bqt +boV +aSx +aSL +ccV +wJY +ccX +ccY +ccW +ccV +fCF +cdi +cdi +cde +cde +csX +cnO +bdS +aQG +aFK +aVo +aQG +aFK +aVo +aGl +aGl +bAd +bAd +bAd +bAd +bAd +bAd +byv +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(154,1,1) = {" +aac +bGc +aTz +aTz +bKC +cbh +apa +bAk +cgU +ciL +cjB +cjB +cgU +bDp +bDp +cgU +cgU +cgU +cgU +cgU +bDp +bDp +cgU +rni +rni +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aac +aad +aal +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +acZ +alt +alv +aal +aal +aal +aal +aal +alo +amh +amN +anm +anD +aoH +apt +aqk +apt +apt +asb +apt +apt +auu +apt +avT +anD +axB +ayb +ayJ +azp +aGk +aGk +aFq +aGl +aQG +aFK +aVo +aQG +aFK +aVo +aGl +biG +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +qPQ +bmw +ecE +boT +boT +boT +boT +boT +boT +bnP +bqm +ajx +avu +bys +bxq +bRw +bYE +bxq +bRw +avu +ccH +cdy +cdy +cdy +cdy +cdy +cdy +cdy +cdy +cdy +cdy +cef +ckB +cdy +cef +cef +cdy +ckI +clm +cdy +cdy +cdy +cdy +clw +coH +crf +cpc +crW +cso +cpc +csH +cre +ctO +boV +boV +boV +boV +bqt +cqN +bQt +boV +aSx +aSL +ccV +wJY +ccX +ccY +ccW +cdc +cde +cde +cde +cde +cde +ctp +cnO +bdS +aQG +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cxA +cxA +cxA +cxA +cxA +cxA +aSx +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(155,1,1) = {" +aac +bGd +aDq +bJg +cbh +cbh +aTz +bOD +cgU +ciM +cjB +cjB +bUr +bDp +bDp +bDp +bDp +boM +bDp +bDp +bDp +bDp +cgU +rni +rni +rni +rni +rni +rni +rni +rni +rni +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aac +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +alt +alv +aal +aal +aal +aal +aal +alo +amh +amO +anm +anD +aoI +apu +aqk +apt +apt +asa +apt +apt +auu +asN +avU +anD +axB +ayc +amh +azp +aGk +aGk +aFq +aGl +aQG +aFK +aVo +aQG +aFK +aVo +aGl +biG +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +qPQ +bmw +bnP +bnP +bnP +bnP +bnP +bnP +bnP +bwY +bmw +ajx +boq +bys +bOE +bSe +bYI +bxq +bRw +cct +ccH +cef +cef +cef +cef +cef +cef +ckf +cef +cef +cef +cef +cef +cef +cef +ckf +cef +ckZ +cln +cef +cef +cef +cef +clw +cpa +crf +cpc +crX +crg +cpc +csI +cre +ctO +boV +ciH +chu +bwl +bqt +bqt +cqS +boV +aSx +aSL +ccV +wJY +ccX +ccY +ccW +ccZ +cde +cde +cde +cde +cde +ctf +cnO +coI +aQG +aFK +aVo +aQG +aFK +bdM +bfc +cpF +cxA +cyb +cyL +czg +cyc +cxA +aSx +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(156,1,1) = {" +aac +bGe +bHC +aTz +bKD +bLT +aTz +bOD +cgU +ciN +cjB +cjB +cgU +bDp +bDp +bDp +bDp +bDp +bDp +bDp +bDp +bDp +cgU +rni +rni +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aac +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +alt +alv +aal +aal +aal +aal +aal +alo +amh +amP +anm +anF +aoJ +apv +apv +apv +apv +asa +asN +asN +asN +asN +avY +awO +axB +ayd +amh +azp +aGk +aGk +aFq +aGl +aQG +aFK +aVo +aQG +aFK +aVo +aGl +biG +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +alJ +qPQ +bmw +bnT +miw +bql +bnP +bnP +scv +bwh +pCu +bmw +ajx +avu +bys +bxq +bSf +cba +bxq +bSf +ccy +cdg +ceK +cjW +cjW +cjW +cjW +cjW +cjW +cjW +cjW +cjW +cjW +cjW +cjW +cjW +cjW +cjW +clk +clo +ceK +cjW +cjW +cjW +clx +cpb +crg +cpc +cpc +cpc +cpc +csI +cre +ctO +boV +bwk +bwk +boV +bqt +bqt +bqt +boV +aSx +aSL +ccV +wJY +ccW +ccW +ccW +cdc +evB +evB +evB +evB +evB +ccV +cnO +aGl +aQG +aFK +aVo +aQG +aFK +aVo +aGl +aGl +cxB +cyc +cyc +cyc +cyc +cxA +aSx +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(157,1,1) = {" +aac +bGf +aTz +bJh +cqn +coN +bNh +bOF +cgU +cgU +cgU +cgU +cgU +bUr +bUr +cgU +bXw +bYj +bYL +bYL +car +bXw +cgU +rni +rni +rni +rni +rni +aad +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +alt +alv +aal +aal +aal +aal +aal +alo +amh +amQ +anm +anH +anD +anD +anD +aql +aql +aql +aql +anD +anD +anD +anD +awR +axB +ayd +amh +azp +aGk +aGk +aFq +aGl +aQG +aFK +aVo +aQG +aFK +aVo +aGl +biG +kAo +alJ +alJ +alJ +nEs +alJ +alJ +alJ +iaE +alJ +alJ +lpy +bmw +bnU +bnU +bqm +brT +brT +bnU +bnU +bnU +bmw +ajx +avu +bys +bxq +bxq +bxq +bxq +bxq +bxq +cdk +ceL +ceL +ceL +ceL +ceL +ceL +ceL +ckz +ceL +ceL +ceL +ceL +ceL +ceL +ceL +ckD +ceL +ceL +ceL +ceL +ceL +ceL +clL +cpc +cpc +cpc +cpc +cpc +cpc +csI +cre +ctO +boV +bxY +bxY +boV +boV +bwn +boV +boV +aSx +aSL +ccV +cdj +cjP +csP +ccV +ccV +ccV +ccV +ccV +ccV +ccV +ccV +cnO +bdS +aSB +aFK +aWt +aQG +aFK +aVo +aGl +aGl +cxB +cyc +cyc +cyd +cyd +cxC +aSx +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(158,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +alt +alv +aal +aal +aal +aal +aal +alo +amh +amR +anm +anI +anD +anD +aql +asd +ary +asc +asO +aql +anD +anD +avZ +awS +axB +aye +amh +azp +aGk +aGk +aFq +aGl +aQG +aFK +aVo +aQG +aFK +aVo +aGl +biS +beE +beE +beE +beE +beE +beE +beE +beE +beE +beE +beE +beE +beE +beE +beE +beE +bfw +bfw +beE +beE +beE +beE +avu +avu +bys +bxq +bOE +bxq +bxq +bUA +ccz +cdl +cfe +cfe +cfe +cfe +cfe +cke +cfe +cfe +cfe +cfe +cfe +cfe +ckC +cfe +cfe +ckE +cfe +cfe +cfe +cfe +cfe +ckE +clM +cpJ +crh +cpc +cpc +cpc +cpc +crW +coH +coH +clv +cmk +cmw +clv +clv +clz +clv +clv +clz +clz +clv +clv +clv +clv +clv +clv +clv +clv +clv +clv +clv +clv +cvP +aHh +cwU +cwZ +cwZ +cxc +cxd +cxe +aGl +cpF +cxC +cyd +cyc +cye +cye +cxD +aSx +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aad +aad +aad +aad +aad +aad +aac +"} +(159,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aGT +aGT +aGT +aad +aad +aad +aad +aad +aad +aad +aad +rni +aad +rni +rni +rni +rni +rni +aad +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +alt +alv +aal +aal +aal +aal +aal +alo +amh +amR +anm +anJ +aoK +anD +aql +aqU +arz +asd +asd +aql +auv +anD +awa +awT +axB +ayf +ayK +azp +aGk +aGk +aFq +aLG +aQG +aFK +aWt +bbv +aFK +aVo +bfc +biS +bfw +bfw +bfw +bfw +bfw +bfw +bht +bfw +bfw +bfw +bfw +bfw +bfw +bfw +bht +bfw +bfw +bfw +bfw +bfw +bfw +bfw +avu +boq +bys +bxq +bxq +bxq +bxq +bRw +ccF +ccH +cef +cef +cef +cef +cef +cef +ckg +cef +cef +cef +cef +cef +cef +cef +ckg +cef +cef +cef +cef +cef +cef +cef +clw +cqj +crf +cpc +cpc +cpc +cpc +crW +ctK +coH +clz +cml +cmx +clz +clz +clz +cmJ +clz +clz +clz +clz +clz +clz +clz +clz +cmJ +clz +clz +clz +clz +clz +clz +bgn +coI +aQG +aFK +aVo +aZH +aFK +bdM +beB +cpF +cxD +cye +cyc +czh +czh +cxD +aSx +btg +cAM +cAQ +ctQ +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(160,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aGT +aGT +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +alt +alv +aal +aal +aal +aal +aal +alo +amh +amR +anm +anK +anD +anD +anD +aql +aql +aql +aql +anD +anD +anD +awb +awU +axB +ayg +amh +azp +aGk +aGk +aFq +aGl +aQG +aFK +aYV +aSw +aFK +aYV +aGE +biU +bgp +bgW +bgW +bgW +bgW +bgW +bgW +bgW +bgW +bgW +bhA +bgW +bgW +bgW +bgW +bgW +bgW +bgW +bgW +bgW +bgW +bgW +boa +bvV +bFe +bPu +bPu +bPu +bPu +cbU +ccG +cdm +chk +chk +chk +chk +chk +chk +chk +chk +chk +ckA +ckA +ckA +ckA +chk +ckA +ckA +ckA +ckA +ckA +clp +ckA +ckA +clN +crd +cri +crG +crY +crY +csG +csJ +ctL +ctP +cmf +cmm +cmy +cmB +cmB +cmB +cmB +cmB +cmP +cmB +cmB +cne +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +coh +aMl +aSw +aFK +aYV +aSw +aFK +aVo +beB +cpF +cxE +cyf +cyc +cyc +cyc +cxE +aSx +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(161,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aGT +aGT +aGT +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +aad +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajv +aaP +ake +aal +aal +aal +aal +aal +alo +amj +amS +anl +anK +anD +apw +anD +anD +arA +anD +anD +atD +anD +avg +awc +awV +anl +ayh +amh +azp +aGk +aGk +aFq +aGl +aQG +aFK +aFK +aFK +aFK +aFK +aFK +bjn +bgP +bgP +bgP +bgP +bgP +bgP +bgP +bgP +bgP +bgP +bgP +bgP +bgP +bgP +bgP +bgP +bhC +bgP +bgP +bgP +bgP +bhD +boc +bxq +bxq +bxq +bxq +bxq +bxq +bRw +avu +cdo +bFN +bHd +bIO +bKq +bLK +bFS +bOr +bQd +bRV +bRV +bRV +bRV +bRV +bRV +bRV +bXg +bXY +bQd +bZp +cal +bYb +cdz +xJM +cre +crf +cpc +cpc +cpc +cpc +cpc +cpc +ctS +cmg +cmg +cmg +cmg +cmg +cmg +cmg +cmM +cmg +cmg +cmg +cmg +cmg +cmg +cmg +cmg +cmg +cmg +cmM +cmg +cmg +cmg +cnM +aFK +aFK +aFK +aFK +aFK +aFK +aVo +beB +cpF +cxA +cxA +cyM +czi +czi +cAk +aSx +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aac +"} +(162,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aGT +aGT +aGT +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajv +aaP +ake +amb +aal +aal +aqg +aqf +bQh +alo +amh +amm +anl +anl +aoM +anl +anl +aqV +anl +anl +asP +anl +auw +anl +anl +anl +anl +ayi +ayJ +azp +aGk +aGk +aFq +aGl +aQG +aFK +aFK +aFK +aFK +aVe +bdR +bjo +bgQ +bgQ +bgQ +bgQ +bgQ +bgQ +bhy +bgQ +bgQ +bgQ +bhB +bgQ +bgQ +bgQ +bgQ +bgQ +bgQ +bgQ +bgQ +bgQ +bgQ +bhN +bon +bxr +bFf +bxq +bUA +bFf +bxq +bRw +avu +cdo +bFO +bHe +bIP +bKr +aqp +bMY +bFS +bQe +bRW +bSL +bQe +bTK +bSL +bQe +bRW +bSL +bYb +qkz +bYz +bYz +bYz +bYb +coF +cre +crf +cpc +csl +crh +cpc +csl +ctM +ctT +cmh +cmh +cmh +cmh +cmh +cmF +cmh +cmh +cmh +cmh +cmh +cmh +cmh +cmh +cns +cmh +cmh +cmh +cmh +cmh +cmh +cnF +cnN +aIO +aPv +aFK +aVe +aPv +aFK +aVo +beB +cpF +aGk +cxA +cyM +cyM +cyM +cxA +aSx +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aac +"} +(163,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aGT +aad +aGT +aGT +aGT +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajv +aaP +ake +aal +aal +aqg +cdq +aqg +aqg +ayF +alo +amh +amm +anl +anL +anD +anl +aqm +anD +anl +ase +anD +anl +aux +aux +awd +awW +anl +ayj +amh +azp +aGk +aGk +aFq +aGl +aSB +aFK +aFK +aFK +aFK +aVo +bfd +bgo +bfw +bfw +bfw +bfw +bfw +bfw +bhz +bfw +bfw +bfw +bfw +bfw +bfw +bfw +bhz +bfw +bfw +bfw +bfw +bfw +bfw +bfw +avu +byo +bHM +bxq +bSe +bys +bxq +bRw +avu +cdo +bFP +bHf +aHO +aHO +aqp +bck +bFS +bQg +bRX +bSK +bTm +bRW +bSK +bTm +bRW +bXh +bYb +bYA +bYz +bYz +bYz +cbY +coG +coH +cru +cpc +csm +crf +cpc +crW +ctN +ctU +clz +clz +clz +clz +clz +clz +cmK +clz +clz +clz +clz +clz +clz +clz +clz +cmK +clz +clz +clz +clz +clz +clz +bgn +coJ +aSB +aFK +aWt +aQG +aFK +aVo +cxs +cpF +aGk +cxA +cyN +czj +cyM +cxA +aSx +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aac +"} +(164,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aGT +aGT +aGT +aGT +aad +aGT +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +rni +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajv +aaP +ake +aal +aal +aqg +aqg +aqg +aqg +aqg +ayF +alo +amh +amm +anl +anM +aoN +anl +anM +aoN +anl +anM +aoN +anl +auy +avh +anl +anl +anl +ayk +amh +azp +aGk +aGk +aAe +bnX +bol +bqI +bqJ +brY +bqJ +brZ +bnX +bBK +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +bgR +avu +avu +bJs +bQK +bUB +bUB +bUB +ccs +avu +cdo +bFQ +bHg +bIQ +bKs +aqp +bcs +aBn +bvs +bRY +bvs +bvs +bRY +bvs +bvs +bRY +bvs +bYc +bYz +bYz +bYz +bfv +bjR +cuE +cuF +cuG +cuH +cuI +cuJ +cuH +cuK +cuF +cuL +cuM +cuM +cuO +cuP +cmz +cmi +cmi +cmN +cmi +cmi +cmi +cmz +cmz +cmz +cmi +cmi +cmi +cmi +cmi +cmi +cmi +cmi +coi +aGl +aTy +cpo +aTV +aTV +aTV +cpw +beB +cpF +aGk +cxA +cyO +cyM +cyM +cxA +aSx +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(165,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aGT +aGT +aGT +aad +aGT +aGT +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aac +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajv +aju +aaP +ake +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amh +amm +anl +anN +anD +anl +aqn +anD +anl +asf +anD +anl +auz +aux +awe +awX +anl +amm +amh +azp +aGk +aGk +aAf +aGl +aQG +aFK +aFK +aFK +aFK +bdM +aGl +bjO +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bzs +bBU +bFg +bQJ +bAF +bWE +bYH +bAF +caZ +bFg +ccI +bFR +bHh +aqp +aqp +aqp +bct +bcx +bmI +bmI +bmI +bmI +bmI +bmI +bXB +bYp +bYp +cdD +cdE +cdE +cdE +bjz +cbZ +cbW +ckO +cmv +bQG +crb +crs +bQG +crZ +cli +csL +bGh +bGh +bJi +bKF +bJi +bGh +bGh +cmO +cmQ +cmQ +cmQ +cnf +cng +cnn +bWy +bWy +bWy +bWy +bWy +bYN +bWy +tBN +coj +bdS +coU +aFK +aVo +aZH +aFK +bdM +beB +cpF +aGk +cxA +cxA +czk +cxA +cxA +aSx +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(166,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aGT +aGT +aGT +aad +aad +aGT +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +rni +aac +aad +aad +aad +rni +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aac +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aac +aac +aad +aad +aaw +ajw +ake +amb +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amh +aod +anl +anl +aoO +anl +anl +aqW +anl +anl +asQ +anl +anl +anl +anl +anl +anl +alo +ayM +azp +aBP +aGk +aAf +aPf +aQG +aFK +aFK +aFK +aFK +aVo +bff +bjP +bgV +bgV +aEl +aEU +aFW +aHo +aHM +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +bgV +aoe +aPp +aHo +aQX +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +bFS +bHi +bIR +bKt +aqp +aqp +bFS +bQi +bRZ +bRZ +bRZ +bRZ +bRZ +bui +bvs +bvs +bQj +bSM +bSM +bSM +bSM +cca +cbW +ckO +cmv +bQG +crb +cmv +bQG +crb +cli +csL +bGh +bHD +ciS +bKG +cjp +bNj +bGh +bOM +bSn +bOM +bOM +bDN +bEP +bQO +bWy +bXx +bYk +bWy +bZw +cas +cbv +bWy +coj +bdS +coU +aFK +aVo +aQG +aFK +aVo +beB +cpF +aGk +cxA +cyM +cyM +czG +cxA +cAE +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(167,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aGT +aGT +aGT +aGT +aGT +aad +aad +aad +aad +aad +aad +aad +aad +rni +aad +rni +rni +rni +aad +rni +aac +aad +aad +rni +rni +rni +rni +rni +aad +aac +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aac +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amh +amm +anl +anO +anD +anD +aqo +anD +anD +asg +anD +anD +auA +avi +avi +avi +auI +ayl +ayN +ayl +azI +azI +aHZ +alZ +aAA +aAP +aAP +aAP +aAP +aBl +cdt +aBW +aBQ +aBQ +aoe +aqp +aFX +aqp +aoe +aBQ +aBQ +aBQ +aBQ +aBQ +aBQ +aBQ +aBQ +aBQ +aBQ +aoe +auF +aQe +aQY +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +bFT +bFS +bFS +bFS +aEV +aEV +bOt +bQj +bSa +bSM +bSM +bSM +bUj +buB +bQj +bXi +bQj +bYB +bYB +bYB +cbk +ccb +cbW +ckO +cmv +bQG +crb +cmv +bQG +crb +cli +csL +bGh +bHE +bJk +bKH +bLV +bNk +bGh +bQu +bSo +bSP +bTu +bDN +bEP +bQO +bWy +bXy +bYl +bYM +bZx +bZx +cbw +bWy +coj +bdS +coU +aUm +aVo +aQG +aFK +aVo +beB +cpF +cpT +cxA +cyP +czl +czl +cxA +cAF +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(168,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aGT +aad +aGT +aGT +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +aad +rni +aad +rni +rni +rni +rni +rni +rni +rni +aad +rni +rni +aad +rni +aad +aGT +aad +aGT +aad +aad +aad +aad +aad +aal +aal +aad +aad +rni +aac +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqh +aqh +aqh +bQU +alo +amh +amT +anl +anP +anD +apx +aqq +aqX +arB +arB +arB +arB +auB +avj +awf +awZ +axC +aym +ayO +aym +aym +aAa +bjN +aAr +aAB +aAQ +aAQ +aAQ +aAQ +aBm +aBB +aBX +aCw +aAE +aEm +azo +aFY +azo +aEm +aAE +aAE +aAE +aAE +aAE +aKW +aAE +aAE +aAE +aAE +aOx +aPq +aQf +aQZ +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +bFO +bHj +bIS +bKu +aIF +aIF +bOu +bQk +bSb +aTh +aTh +aTh +aTh +bYd +bWr +aTh +bYe +bYB +bZq +cam +cbl +ccc +cbW +cli +cmv +bQG +crb +cmv +bQG +cqT +cli +csL +bGh +bHF +bJl +bKI +bLW +bNl +bOG +bQv +bSp +bSQ +bTv +bDN +bEP +bQO +bWy +bWy +bWy +bWy +bZy +bZx +bZx +cci +coj +bdS +coU +aFK +aVo +aQG +aFK +aVo +beB +cpF +aGk +cxA +cxA +cxA +cxA +cxA +cAG +btg +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(169,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aGT +aad +aGT +aGT +aGT +aad +aad +aGT +aad +aad +aad +aad +aad +aad +aad +rni +rni +aad +aGT +rni +aGT +rni +rni +rni +rni +rni +rni +rni +aad +aGT +aac +aad +aad +aGT +aad +aad +aal +aal +aal +aad +aad +rni +rni +rni +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +ayF +akz +akQ +alf +alo +alo +amk +alo +anl +anl +aoP +anl +anl +anl +arC +ash +ash +arC +arC +avi +awg +axa +auI +auI +auI +auI +auI +vgD +aAg +aAg +aVr +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aoe +aoe +aoe +aEV +aFZ +aEV +aoe +aoe +aJr +aJY +aJY +aKJ +aKJ +aLF +aLF +aJr +aoe +aoe +aPr +aoe +aoe +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +bFP +bHk +bIT +bKv +aIF +aIF +bOv +bQl +aTh +aTh +bTn +bTL +clB +buT +bWs +bWs +bWs +bWs +bWs +bWs +bWs +bWs +cbW +cli +cmv +bQG +crb +cmv +bQG +cqT +cli +csL +bGh +bHG +bJk +bKJ +bLX +bNm +bGh +bQw +bSq +bSR +bTv +bDN +bEP +bEV +cqC +cqC +cqR +bWy +bZz +cat +cat +ceZ +cok +coK +aQG +aFK +aVo +aQG +aFK +aVo +beB +cpF +aGk +aal +aal +aal +aal +aal +aal +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(170,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +rni +aGT +aGT +rni +rni +aGT +aGT +aGT +aGT +aGT +aGT +aal +aal +aad +aad +rni +rni +rni +aac +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aad +aad +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +ayF +akA +akR +ali +alp +alQ +amh +amm +anl +anQ +anD +apy +aqr +anl +arD +asi +asi +atE +arC +avk +awg +axb +axD +ayn +ayP +azq +azJ +aAb +aAg +aAg +aAD +aAS +aAS +aAS +aAS +aBp +aAg +aAg +aoe +aDz +aoe +aqp +ayu +aqp +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aPs +aBQ +bzs +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bTW +bWE +bFg +ccI +bFQ +bHl +bIU +bKw +aIF +aIF +bOw +bQm +aTh +aTh +bSb +btA +btF +bYn +bWt +buW +buX +bYC +bZr +can +cbm +ccd +cbW +cli +cmv +bQG +crb +cmv +bQG +crb +csp +csM +ciy +bHH +bJm +bKK +bLY +bNn +bOH +bQx +bSr +bSR +bTv +bDN +bQO +bSl +bSl +bSl +bTO +bYN +bZA +cau +cbx +bWy +coj +bdS +coU +aFK +aVo +aQG +aFK +cpq +beB +cpF +cvS +cvS +cvS +cvS +cvS +cvS +cvS +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(171,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +pqW +aGT +fkS +rni +rni +rni +rni +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aad +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +ayF +akA +akS +ali +ali +alQ +amh +amm +anl +anR +anD +anD +anD +aqY +arE +arE +asR +atF +auC +avj +awh +axc +axE +ayo +ayo +azr +azK +aAb +aAg +aAg +aAC +aAR +aAR +aAR +aAR +bfe +aAg +aAg +aoe +aDA +aoe +aoe +aGa +aoe +aoe +aID +aJs +aJZ +aKC +aKK +aKX +bLL +aMf +aMO +aoe +aJr +aPs +aBQ +bzs +bzs +bBU +bMn +bQJ +bAF +bWE +bQJ +bAF +bWE +ccw +ccI +bFT +bFS +bFS +bFS +bLM +bLM +bOt +bQj +bSa +bSN +bSM +btB +bSM +bVs +bWs +bXk +buY +bYg +bYg +cao +cbn +cce +cbW +ckO +cmv +bQG +crb +cmv +bQG +crb +cli +csL +bGh +bHI +bJn +bKG +bJk +bNo +bOI +bQy +bSs +bSR +bTw +bDN +bQO +bSl +cqK +bSl +bTO +bWy +bZB +cav +cby +bWy +coj +coL +coU +aFK +aVo +aQG +aFK +aVo +beB +cpF +cvS +czH +cyQ +czm +cyg +cAl +cvS +brL +cAM +cAQ +ctQ +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(172,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aGT +aal +aal +aGT +aal +aal +aal +aal +aal +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aGT +aal +aal +rni +rni +rni +rni +aad +rni +rni +rni +rni +rni +rni +rni +rni +fkS +fkS +ggz +aGT +aGT +fkS +rni +rni +rni +rni +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aal +aal +acZ +aal +aqg +aqg +aqg +aqg +aqg +aqg +ayF +akA +akW +ali +ali +alQ +amh +amm +anl +anQ +aoR +aLE +anQ +anl +baX +arE +asS +atG +auD +avl +awi +axd +axD +ayp +ayQ +azs +gIU +aAb +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aoe +aDB +aEn +aEX +aGb +azo +aHN +azo +azo +azo +azo +azo +azo +azo +aMg +aMP +aoe +aoh +aPs +aBQ +bzs +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +bFU +bHm +bHm +bKx +bHm +bHm +bOx +bQn +bSg +bSg +bSg +btC +bSg +bSg +bWs +bXl +buZ +bYD +bZs +cao +cbo +ccf +cbW +ckO +cmv +bQG +crb +cmv +bQG +crb +cli +csL +bGh +bHJ +bJo +bKG +bJk +bNp +bOI +bQy +bSs +bSS +bOM +bDN +bQO +bSl +bSl +bSl +bTO +bWy +bZC +caw +cbz +bWy +coj +bdS +coU +aFK +aVo +aQG +aFK +aVo +beB +cpF +cvS +cyh +cyR +cyR +czI +cwj +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(173,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aal +aGT +aal +aal +aal +aal +aal +aal +aal +aal +aal +aGT +aal +aGT +aal +aGT +aal +aal +aal +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +poQ +aGT +aGT +dgB +fkS +rni +rni +rni +aac +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aad +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +ayF +akF +akY +alj +alq +alR +aml +amU +ann +ann +ann +ann +ann +ann +arG +arE +asT +atJ +auE +avm +awj +axe +auI +auI +auI +auI +auI +ssr +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aCx +aqp +aEo +aqp +aqp +aqp +aHO +aIE +aqp +aqp +aqp +aqp +aqp +aqp +aqp +aMQ +aoe +aoh +aPs +aBQ +bzs +bzs +bBU +bFg +bQJ +bTW +bWE +bQJ +bAF +bWE +bFg +ccI +bFV +bHm +bIV +bIV +bIV +bHm +bOx +bQo +bQo +bQo +bQo +btD +bQo +bQo +bWs +bXm +buZ +bYG +bZs +cap +cbp +ccg +chm +ckO +cmv +bQG +crb +cmv +bQG +crb +cli +csL +bGh +bHK +bJp +bKL +bLZ +bNq +bGh +sol +bSs +bST +bOM +cqu +bEP +bDB +bDB +bDB +bQO +bWy +bWy +cwc +bWy +bWy +coj +bdS +coU +aFK +aVo +aQG +aUm +aVo +beB +cpF +cvS +cyi +cyR +cyR +cwa +cvY +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(174,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +rni +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +fkS +aGT +aGT +aGT +aGT +rni +fkS +rni +rni +rni +rni +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +ayF +akJ +akW +ali +ali +alQ +amm +amm +ann +anS +aoS +apz +aqs +aqZ +arH +arE +asS +atK +auG +avn +awg +axb +axD +ayq +ayP +azt +azJ +aAb +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aCy +aqp +aEo +aqp +aqp +aqp +aHP +aHO +aHO +aKa +aKD +aKL +aKY +aHO +aHO +aHO +aoe +aOy +aPt +aBQ +bzs +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +bFW +bHn +bIW +bIW +bIW +bHm +bOy +bQo +bQo +bQo +bTo +btD +bUl +bVt +bWs +bXn +buZ +bYg +bYf +bYg +cbq +cch +chn +ckO +cmv +bQG +crb +cmv +bQG +crb +cli +csL +bGh +bHL +bJq +bKM +bMa +bNr +bGh +bQy +caI +cec +coM +ctn +bSt +cvZ +cvZ +cvZ +cvZ +cue +cuj +cwd +cue +cuj +col +cov +coU +aUY +aVo +aQG +aFK +aVo +beB +cpF +cvS +cyj +cyS +czn +czK +cwl +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +aac +"} +(175,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +rni +rni +rni +rni +aad +rni +rni +rni +rni +rni +rni +rni +fkS +uSq +aGT +aGT +sgT +aGT +aGT +nlJ +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aad +aad +aad +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +ayF +akJ +akZ +ali +ali +alQ +amm +amm +ann +anT +aoT +apA +apF +ara +arE +arE +asS +atL +auH +avn +awk +axc +axF +ayo +ayo +azr +azK +aAb +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aCx +aqp +aEo +aqp +aqp +aqp +aqp +aqp +aqp +aqp +aqp +aqp +aqp +aqp +aqp +aMR +aoe +aOz +aPs +aBQ +bzs +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +bFU +bHm +bIX +bIX +bIX +bHm +bOy +bQo +bQo +bQo +bTp +btD +bUm +bSi +bWs +bXo +bvF +bwd +bwi +bwx +cbr +ccd +chn +ckO +cmv +bQG +crb +cmv +bQG +crb +ckO +csN +ciz +cuN +ciT +bCX +cjq +bJr +bOH +bQB +caJ +bSV +bTy +cqv +cqB +bVD +ced +cen +cev +ceC +crv +csF +cuf +cuk +com +beB +coU +aFK +aVo +aQG +aFK +aVo +cxs +cpF +cvS +cyk +cyT +cyT +czL +cAm +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +iAN +uMK +wxM +uMK +uMK +uMK +uMK +uMK +iAN +uMK +uMK +uMK +uMK +iAN +rvT +aac +"} +(176,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +rni +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +rni +nlJ +uZJ +aGT +aGT +dgB +aGT +uZJ +fkS +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aad +aad +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +ayF +akJ +akR +ali +alr +alQ +amm +amm +ann +anU +aoU +apB +apF +ara +arE +arE +asS +atM +auE +avn +awg +axd +axD +ayp +ayQ +azs +azL +aAb +aAg +aAs +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aoe +aDB +aEo +aFf +aFf +aFf +aFf +aIF +aIF +aKb +aIF +aqy +aqy +aqy +aqy +aMS +aoe +aOB +aPs +aBQ +bzs +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +bFV +bHm +bHm +bHm +bHm +bHm +mXT +bQp +bSh +bQo +bQo +btD +bUn +bVu +bWs +bWs +bYh +bWs +bWs +bwz +bWs +bWs +cho +ckO +cmv +bQG +crb +cmv +bQG +crb +ckO +csL +bGh +bHO +ciU +bKO +cjr +bNs +bOK +cjA +bSv +bSR +bOM +bDN +bQO +bVJ +cee +ceo +ceo +ceD +bWB +csK +cug +bDN +biS +beB +coU +aFK +aVo +aQG +aFK +aVo +cxt +bkl +cxu +cxv +cwl +cwl +czM +cAn +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +uMK +iAN +uMK +uMK +uMK +iAN +uMK +wxM +uMK +uMK +uMK +uMK +wxM +uMK +rvT +aac +"} +(177,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +acZ +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +rni +aac +aac +aac +rni +rni +rni +rni +rni +rni +rni +fkS +fkS +wjp +uZJ +aGT +ett +aGT +fkS +rni +rni +rni +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +ayF +akK +akQ +alf +alo +alo +amn +alo +ann +anV +aoU +apC +aqt +aqZ +arI +asj +asU +atN +auE +avn +awl +axf +auI +auI +auI +auI +auI +lcg +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aoe +aqp +aEo +aFg +aGc +aHp +aHQ +aIG +aJt +aKc +aKE +aKM +aKZ +aLH +aMh +aqp +aoe +aOC +aPs +aBQ +bzs +bzs +bBU +bFg +bQJ +bTW +bWE +bSw +bAF +bWE +bFg +ccI +bOx +bFr +bOx +bHp +bOx +bHq +bOx +bQq +suS +bQo +bQo +btD +bUl +bVt +bOx +bFn +bPw +bPw +bPw +bTX +bVx +bVx +chr +bQG +cmv +bQG +crb +cmv +bQG +crb +ckO +csL +bGh +bHP +ciV +bGh +cjs +bGh +bGh +cjC +bSv +bSR +bTu +bDN +bEP +ceb +ceg +ceg +ceg +ceE +bDP +ctV +cuh +bEV +biS +beB +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cvS +cym +cwl +cwl +czM +cAo +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +uMK +uMK +iAN +edV +uje +uMK +uMK +uMK +uMK +uMK +duf +uMK +uMK +iAN +rvT +aac +"} +(178,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +bKW +aal +aal +aal +aal +aal +aac +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +fkS +rni +fkS +rni +aGT +uZJ +rni +fkS +aad +rni +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqf +aqf +aqf +bQh +alo +amm +amV +ann +anW +aoU +apB +aqu +ann +arC +arC +arC +arC +arC +avn +awg +axb +axD +ayr +ayP +azu +azJ +aAb +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aoe +aDC +aEo +aFg +aGd +aHq +aHQ +aIG +aJu +aKd +aKE +aKM +aLa +aLI +aMh +aqp +aoe +aOD +aPs +aBQ +bzt +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +bOx +bFX +bOx +bFX +bOx +bFX +bOx +bQr +bSi +bQo +bQo +btD +bSi +bVv +bOx +bFo +bQF +bQF +bQG +bUx +bQG +bQG +ciF +bQG +cmv +bQG +crb +cmv +bQG +crb +ckO +csO +bWu +bWD +bZD +bWu +bWu +cfa +bOM +cjD +bSv +bSR +bTv +bDN +bQO +bVJ +ceh +cep +cew +ceF +bLu +caC +bLu +bLu +coj +beB +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cvS +cyn +cwl +cwl +czN +cAp +cvS +brL +cAM +cAQ +ctQ +aal +acZ +aad +aad +rvT +uMK +mrJ +uMK +edV +lNo +uMK +edV +txa +peF +uMK +edV +lNo +mrJ +uMK +rvT +aac +"} +(179,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aal +aan +aan +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aac +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +fkS +rni +rni +rni +rvZ +rni +rni +fkS +aad +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amm +ann +anX +aoU +apB +aqv +ann +arJ +ask +asV +atO +auI +avo +awm +axc +axG +ayo +ayo +azr +azK +aAb +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aoe +aDD +aEp +aFg +aGe +aHr +aHQ +aIG +aJv +aKf +aKE +aKM +aLb +aLJ +aMh +aqp +aoe +aOE +aPs +aBQ +bzs +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +bOx +bHo +bOx +bHo +bOx +bHo +bOx +bQs +bSk +bQo +bQo +chw +bUn +bSk +bOx +bGN +bQG +bQG +bQG +bUx +bQG +bQG +ciG +ckO +cmv +bQG +crb +cmv +bQG +crb +ckO +csd +bzz +bHR +ciX +bzz +bzz +bKV +bOM +cjE +caK +ceG +csn +cvV +cvW +cwb +cei +ceq +cex +bVJ +bZF +cwk +cwO +bLu +coj +beB +coU +aFK +cpq +aQG +aFK +aVo +aGl +cpF +cvS +cyo +cyU +cwl +czM +cAq +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +uMK +mrJ +uMK +edV +nRW +nRW +edV +txa +peF +iAN +edV +lNo +mrJ +uMK +rvT +aac +"} +(180,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aal +aao +aze +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aad +rni +rni +rni +rni +ryV +nlJ +rni +fkS +rni +rni +ryV +uZJ +fkS +fkS +rni +rni +rni +rni +rni +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amm +ann +anY +aoU +apD +apF +arb +arK +asl +asl +atP +auJ +avi +awg +axd +axD +ayp +ayQ +azs +azL +aAb +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aoe +aDD +aEp +aFg +aGf +aHs +aHQ +aIG +aJw +aKi +aKE +aKM +aLc +aLK +aMh +aqp +aoe +aOE +aPs +aBQ +bzs +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +bOx +bOx +bOx +bOx +bOx +bOx +bOx +bOx +bOx +bOx +qua +bOx +bOx +bOx +bOx +bFo +bQF +bQF +bQG +bUx +bQG +bQG +ciG +ckO +coE +cqk +cqk +cqk +cqk +csa +ckO +ckO +bGl +bHS +ciY +bKP +bMe +cgK +bOM +cjF +bSv +bSR +bTv +bDN +bQO +bVF +cej +cer +cey +bVJ +bZG +caE +cbD +bLu +coj +cwR +coU +aFK +aVo +aQG +aFK +cpq +aGl +cpF +cvS +cyp +cyV +czo +czO +cAn +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +uMK +mrJ +uMK +txa +uMK +iAN +uMK +uMK +uMK +uMK +duf +uMK +mrJ +uMK +rvT +aac +"} +(181,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aal +aap +aap +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aad +rni +rni +rni +rni +rni +oTd +aGT +rni +aGT +lUa +ryV +rvZ +aGT +aGT +ryV +aad +rni +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amm +ann +anZ +aoU +apB +aqw +arc +arK +asl +asl +atQ +auI +avn +awg +axg +auI +auI +auI +auI +auI +kWd +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aoe +aDD +aEp +aFg +aGg +aHt +aHQ +aIG +aJx +aKk +aKE +aKM +aLd +aLL +aMh +aqp +aoe +aOE +aPt +aBQ +bzs +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +bst +byB +byD +bDw +bDB +bDB +bDB +bDB +bDB +bHs +bDB +bEP +bDB +bDB +bDB +bSm +bMm +bRn +bSc +bQG +bUx +bQG +bQG +cjk +clO +cpd +cql +cql +crw +cql +csb +csq +clO +bGm +bHT +bJw +bKQ +bzz +bKV +bOM +cjG +bSv +bSR +bTw +bDN +bQO +bVG +cek +ces +cez +bVJ +bZH +caF +cbE +bLu +coj +beB +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cvS +cyq +cyw +cwl +czM +cAo +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +uMK +uMK +uMK +uMK +uMK +iAN +kge +uMK +wxM +uMK +uMK +uMK +uMK +uMK +rvT +aac +"} +(182,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aad +rni +rni +rni +ryV +aGT +dgB +lEt +aGT +uZJ +rvZ +uZJ +uZJ +dts +dgB +ryV +aad +aad +rni +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aal +aal +acZ +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amm +ann +aoa +aoV +apE +aqx +ann +arL +asm +asm +atR +auI +avn +awg +axb +axD +ays +ayP +azv +azJ +aAb +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aoe +aDD +aEp +aFg +aGo +aHu +aHQ +aIG +aJy +aKl +aKE +aKM +aLe +aLM +aMh +aMT +aoe +aoh +aPs +aBQ +bzs +bzs +bBU +bFg +bSw +bAF +bWE +bQJ +bAF +bWE +bFg +btE +byC +byQ +byQ +byQ +byQ +byQ +byQ +byQ +bHN +bJx +bEP +byQ +byQ +byQ +byC +bNi +bNi +bNi +bNi +bUx +bNi +bNi +cjt +bzz +bzz +bAX +bAX +bAX +bAX +bEo +bzz +bzz +ciA +ciI +ciZ +bKR +bzz +bKV +bOM +cjH +cjL +cjN +bOM +bDN +bQO +bVG +cel +cet +ceA +bVJ +bZI +caG +cbF +bLu +coj +beB +coU +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cvS +cym +cwl +cwl +czN +cAp +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +uMK +wxM +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +kge +uMK +rvT +aac +"} +(183,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aan +aan +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +rni +rni +rni +ryV +jIs +uZJ +uZJ +dgB +dgB +oTd +ryV +fKS +rvZ +aGT +ryV +rni +rni +rni +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amm +ann +aob +aoY +apF +aqz +ano +ano +ano +ano +ano +ano +avn +awk +axc +axH +ayo +ayo +azr +azK +aAb +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aoe +aDD +aEs +aFh +aFf +aFf +aFf +aIF +aIF +aIF +aIF +aqy +aqy +aqy +aqy +aqp +aoe +aoh +aPs +aBQ +bzs +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bUc +bWE +bFg +ccI +aZi +aZi +aZi +aZi +aZi +aZi +aZi +aZi +aZi +bDN +bQO +bTM +bTM +bTM +bTM +bTM +bTM +bTM +bTM +bxc +bTM +bTM +bKV +bzz +sMS +bgY +bgY +bgY +bgY +bAc +cha +cir +bzz +bHV +cja +bKS +bMf +chv +bDB +cjg +cbC +cjv +bDB +bEP +bQO +bVI +cem +ceu +ceB +bVJ +bLu +caH +bLu +bLu +coj +beB +coU +aUm +aVo +aQG +aFK +aVo +aGl +cpF +cvS +cyn +cwl +cwl +czM +cAq +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +uMK +uMK +uMK +edV +edV +edV +uMK +uMK +uMK +uMK +edV +lqC +uwi +iAN +rvT +aac +"} +(184,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aGU +aIA +aIA +aIA +aIA +aIA +aal +aal +aal +aal +aao +aze +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +rni +rni +rni +ryV +rni +ryV +rni +ryV +rni +rni +ryV +aGT +aGT +oTd +rni +rni +rni +rni +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amo +amW +ano +ano +ano +apK +ano +ano +arM +asn +asW +atS +auK +avn +awg +axd +axD +ayp +ayQ +azs +azL +aAb +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aoe +aoe +aEn +aFi +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aMi +aqp +aoe +aJr +aPs +aBQ +bzs +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccI +aZi +aZt +aXB +aXB +aZt +aXB +aXB +aZt +aZi +bDN +bQO +bTM +bUo +bVB +bWw +bXu +bTM +bYJ +bZu +cdJ +cbs +bTM +bKV +bzz +sMS +bgY +bgY +bCN +bgY +bAc +bAc +bAY +bzz +bHW +cjb +bKT +bMg +chv +bEP +cjg +cbC +cjv +bEP +bEP +bQO +bVJ +bVJ +bVJ +bVJ +bVJ +crV +cwm +cwP +cwP +cwQ +cwS +aQG +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cvS +cyr +cyQ +cyQ +czP +cAr +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +uMK +uMK +iAN +uMK +uMK +uMK +uMK +uMK +iAN +uMK +uMK +uMK +uMK +uMK +rvT +aac +"} +(185,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aGV +aIA +aIA +aIA +aIA +aIA +aal +aal +aal +aal +aap +aap +aal +aal +aal +wgK +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +ryV +nlJ +ryV +rni +ryV +rni +rni +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amW +ano +aoc +aoZ +apb +aqA +ano +arN +asp +arN +atT +auK +avn +awg +axh +auI +auI +auI +auI +auI +auI +aAg +aAg +aAC +aAR +aAR +aAR +aAR +aBo +aAg +aAg +aAg +aoe +aEt +aqp +aqp +aqp +aHS +aqp +aqp +aqp +aqp +aHS +aqp +aqp +aMj +aMU +aoe +aoe +aPu +aBQ +bzs +bzs +bBU +bMn +bQJ +bAF +bWE +bQJ +bAF +bWE +ccw +cdp +aXC +aZl +aZm +aZm +aZm +aZm +aZm +aZn +aZo +bJz +bJz +aZs +bWH +bWH +bWH +bWH +bWF +bWH +bWH +cdK +cbt +bTM +bKV +bzz +bAe +bAY +bBL +bAY +bBL +bAc +bAc +cis +bzz +bHX +cjc +bKU +bMh +chv +bEV +cjh +cbC +cjv +bEV +bEV +bEV +cqC +cqC +cqC +cqC +cqC +bEV +cww +bEP +bEV +con +beB +aQG +aFK +aVo +aQG +aFK +aVo +aGl +cpF +cvS +cys +cyW +cyW +czQ +cyW +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +uMK +iAN +uMK +uMK +uMK +uMK +mrJ +mrJ +mrJ +uMK +uMK +uMK +uMK +uMK +rvT +aac +"} +(186,1,1) = {" +aac +aad +aad +aad +aad +aad +aET +aET +aET +aET +aGV +aIA +aIA +aIA +aal +aal +aal +bKW +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aal +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +aad +rni +aad +rni +rni +rni +rni +rni +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aad +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amX +ano +arF +apb +apb +aqB +ard +aqB +asq +asX +atU +auL +avj +awn +avi +axI +ayt +ayR +azw +azM +axI +amy +amy +aAF +aAu +aAu +aAu +aAu +aBq +amy +amy +aAg +aoe +aoe +aoe +aoe +aoe +aoe +aCy +aJz +aJz +aCy +aoe +aoe +aoe +aoe +aoe +aoe +aAg +aPw +aBA +bzs +bzs +bBU +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccD +aXD +aJF +aly +aly +aly +aly +bbd +bsd +aZi +bDN +bQO +bTM +bUq +bVC +bWx +bXv +bTM +bYK +bZv +bUp +bUp +bTM +bKV +bzz +sMS +bAZ +bAZ +bAZ +bAZ +bAc +bET +cit +bzz +bHY +bJy +cdY +bzz +ciB +bDF +cjI +cjM +cjO +bTz +bTQ +bUt +bDF +bDF +bDF +bDF +bDF +bDF +cjO +bNy +bDF +coo +beB +aQG +aFK +aVo +aQG +aFK +aVo +aGl +aGl +cxF +cyl +cwl +cwl +czM +cAs +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +uMK +edV +lNo +uMK +wxM +uMK +uMK +uMK +uMK +uMK +edV +edV +nRW +edV +rvT +aac +"} +(187,1,1) = {" +aac +aad +aad +aad +aad +aad +aET +adl +adl +aNE +aTC +aIA +aXT +aIA +aIA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aal +aad +aad +aad +aad +aac +aad +aad +aad +rni +rni +rni +aad +aad +aad +rni +rni +rni +aad +aad +rni +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aad +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amX +ano +aof +apc +apL +aqC +ano +arO +asr +arN +atV +auK +avn +awp +avj +axJ +ayv +ayv +ayv +ayv +axJ +aAh +aAt +aAG +aAu +aAu +aAu +aAu +aBr +aBC +amy +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aPw +aQg +bzu +bzu +bFg +bFg +bQJ +bAF +bWE +bQJ +bAF +bWE +bFg +ccD +baT +baV +aly +aly +aXB +aly +bbe +aXB +aZi +bDN +bQO +bTM +bTM +bTM +bTM +bTM +bTM +bTM +bTM +bTM +bTM +bTM +bKV +bzz +sMS +bAc +bAc +bCO +bAc +bAc +bAc +cit +bzz +byD +bZE +cay +ceV +ciJ +bDF +cjJ +cck +bQQ +bQQ +bQQ +bQQ +bVM +bWI +bXC +bYq +bYO +bZM +cwx +bQQ +ccl +coj +beB +aQG +aFK +aVo +aZJ +aFK +aVo +aGl +cpF +cvS +cyt +cwl +cwl +czM +cyW +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +uMK +edV +lNo +lqC +peF +uMK +uMK +iAN +uMK +uMK +uMK +uMK +uMK +uMK +rvT +aac +"} +(188,1,1) = {" +aac +aad +aad +aad +aad +aad +aET +aHm +adl +aNF +aTC +aVC +aXU +bbk +aIA +aIA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aad +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amY +ano +ano +ano +ano +ano +ano +arP +ass +asY +atW +auK +avp +awq +avi +axI +ayw +ayS +ayS +azN +axI +aAi +aAu +aAH +aAu +aAu +aAu +aAu +aAu +aBD +amy +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aPx +alZ +bzv +bFg +bFg +bFg +bQJ +bUc +bWE +bQJ +bAF +bWE +bFg +ccD +bbb +bbg +aly +aly +aXB +aly +bbe +aXB +aXD +bDN +bEP +bDB +bDB +bDB +bDB +bDB +bDB +bDB +bDB +bDB +bDB +bDB +bMi +bzz +bzz +bzz +bzz +bzz +bzz +bEp +bEp +ciu +bzz +bDN +bEP +bUb +bMi +bDF +bDF +cjK +ccM +bQQ +bQQ +bQQ +bQQ +bQQ +bWJ +bXD +bYr +bYP +bZN +cwy +bQQ +ccm +coj +beB +aQG +aFK +aYV +aSw +aFK +aVo +bfd +cpF +cvS +cyn +cwl +cwl +czM +cAu +cvS +brL +cAM +cAQ +ctQ +aal +aal +aad +aad +rvT +uMK +edV +lNo +edV +peF +uMK +uMK +uMK +uMK +uMK +uMK +iAN +uMK +uMK +rvT +aac +"} +(189,1,1) = {" +aac +aad +aad +aad +aad +aad +aET +aHn +adl +cqI +aTC +aIA +aXV +aIA +aIA +aIA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aad +aal +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amY +anp +aog +apd +apM +aqG +ano +ano +ano +ano +ano +ano +avn +awg +axb +axK +ayx +ayT +azx +azO +axI +aAj +aAv +aAI +aAT +aAT +aAT +aAT +aAu +aBr +aBY +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aCz +aNG +bfh +aPy +aQh +bzw +bzw +bJA +bPv +bTc +bAF +bXj +bYH +bTW +bWE +bFg +ccD +bbb +baZ +aly +aly +aXB +aly +bbe +pOy +baT +bDN +bEP +bEP +bEP +bEP +bEP +bEP +bEP +bEP +bEP +bEP +bEP +bEP +bUb +bDB +bDB +bDB +bDB +bDB +bDB +bUE +bUH +bVE +bWv +bWv +bWv +cbb +cbb +cjw +cjx +bOQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +bWK +bXE +bYs +bYQ +bZO +cwz +bQQ +ccn +coj +beB +cpj +aIO +aIO +aIO +aIO +cpx +aGl +cpF +cvS +cyu +cyX +cyW +czR +cAv +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +edV +lNo +uMK +uMK +edV +lqC +edV +nRW +edV +peF +uMK +uMK +uMK +rvT +aac +"} +(190,1,1) = {" +aac +aad +aad +aad +aad +aad +aET +aHJ +adl +aOw +aTC +aIA +aIA +aIA +aIA +aIA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aad +aal +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amZ +anp +aoi +aol +aol +aqH +anp +arQ +arQ +asZ +atX +awP +avq +awr +axi +axK +ayx +ayU +azy +azP +axI +aAk +aAu +aAI +aAU +aAU +aAU +aAT +aAu +aAu +aAu +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aNH +aAR +aPz +aQi +bAF +bAF +bJD +bAF +bAF +bAF +bVq +bTc +bAF +bWE +bFg +ccD +aXD +bbh +bxb +aly +aXB +aly +bbe +aXB +aZi +bKy +bQP +bQP +bQP +bQP +bQP +bSG +bSW +bSW +bSW +bSW +bSW +bTN +bUe +bQP +bQP +bQP +bQP +bQP +bEU +bUF +bUI +bVH +bWA +bWA +bWA +cbA +ceW +bDF +cjy +bOR +bQQ +bSX +bQQ +bQQ +bQQ +bSX +bQQ +bQQ +bQQ +bSX +bQQ +bQQ +bQQ +bNy +biS +aGl +aGl +aGl +aGl +aGl +aGl +aGl +aGl +cpF +cvS +cyv +cyY +cyY +czS +cAw +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +uMK +iAN +uMK +uMK +iAN +uMK +uMK +uMK +uMK +uMK +ksx +uMK +uMK +rvT +aac +"} +(191,1,1) = {" +aac +aad +aad +aad +aad +aad +aET +aHK +adl +aET +aET +aVD +aET +bbl +aIA +aIA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aad +aal +aal +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amZ +anp +aoj +ape +apN +aqI +anp +arQ +ant +ata +atY +auM +avr +awt +axd +axK +ayx +ayx +azz +azQ +axI +aAl +aAv +aAI +aAU +aAU +aAU +aAT +aAu +aAu +aAu +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aNH +aAR +aPz +aQi +bAF +bAF +bIg +bAF +bAF +bAF +bAF +bAF +bAF +bWE +bFg +ccD +baT +bcy +byd +aly +aly +aly +bcE +tax +aZi +bKV +bSl +bSl +bSl +bnY +bnY +cqb +bnY +bnY +bnY +bnY +bnY +bTO +byT +byT +byT +byT +byT +byT +bUs +bUE +bUH +bUC +bDB +bDB +bDB +cbB +ceX +bDF +cjz +bQQ +bQQ +bQQ +bOR +bQQ +bOR +bQQ +bOR +bQQ +bOR +bQQ +bQQ +bQQ +ceH +ceJ +cop +aHh +kUD +coO +coO +coO +coO +coO +coO +cpM +cvS +cym +cwl +cwl +czM +cwl +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +kge +uMK +ksx +wxM +iAN +rvT +aac +"} +(192,1,1) = {" +aac +aad +aad +aad +aad +aad +aET +aHL +adl +adl +adl +adl +aYW +aGV +aIA +aIA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aac +aal +aal +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aad +aad +aal +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amo +ana +anp +aok +aol +apO +aqJ +anp +ant +ant +auQ +ant +awP +avs +awg +avi +axI +ayy +ayV +azA +azR +axI +aAk +aAu +aAI +aAU +aAU +aAU +aAT +aAu +aAu +aAu +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aAR +aNH +aAR +aPz +aQi +bAF +bAF +bKE +bAF +bAF +bAF +bAF +bAF +bAF +bWE +bFg +bFp +baU +bnj +bye +aly +aly +aly +aly +jzG +aZi +bKV +bSl +bSl +bSl +bnY +boY +bqw +bsg +btK +bvb +bwo +bnY +bTO +byT +bzA +bAf +bBa +bBM +bCP +bUC +bUE +bUH +bVL +bVL +bVL +bVL +cbX +bVL +bNy +bOQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +ceI +ccl +aGk +coP +cvS +cvS +cvS +cvS +cvS +cvS +cvS +ceQ +cvS +cym +cwl +cwl +czM +cwl +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +iAN +uMK +wxM +uMK +edV +edV +edV +uMK +uMK +uMK +ksx +uMK +iAN +rvT +aac +"} +(193,1,1) = {" +aac +aad +aad +aad +aad +aad +aET +aIk +aMc +aQc +aUq +aVE +aET +aGV +aIA +aIA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +ana +anp +aol +apf +apP +aqL +are +ant +ant +auQ +atZ +amz +avt +awu +axj +axI +axI +axI +axI +axI +axI +aAj +aAw +aAI +aAT +aAT +aAT +aAT +aAu +aBE +aAx +aCA +aCA +aCA +aCA +aCA +aCA +aCA +aCA +aCA +aCA +aCA +aCA +aCA +aCA +aCA +bfg +aNI +aCA +aPA +aQj +bAJ +bGa +bKZ +bAJ +bAJ +bAJ +bYF +bAJ +bAJ +cbV +bFg +ccD +aZi +bqv +byS +aXE +bAg +bSO +bVA +hlu +aZi +bKV +bSl +bSl +bSl +bnY +boZ +bqw +bqw +btL +bqw +bqw +bxk +bQO +byT +bzB +bAi +bBb +bBN +bCQ +bSt +bUG +bVp +bSu +bSu +bSu +bSu +bSx +bSu +bSU +bTx +caD +bQQ +bQQ +bOR +bQQ +bOR +bQQ +bOR +bQQ +bOR +bQQ +bQQ +bQQ +ceI +ccm +aal +hUp +cvS +ccJ +cvY +cwj +cwo +cvS +cwG +cwl +cxG +cyl +cwl +cwl +czM +cwl +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +iAN +wxM +uMK +ksx +uMK +uMK +rvT +aac +"} +(194,1,1) = {" +aac +aad +aad +aad +aad +aad +aET +aET +aET +aET +aET +aET +aET +bbl +aIA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +ana +anp +anp +anp +anp +anp +anp +arR +ast +atb +aua +amz +awz +awv +axk +axL +ayz +ayW +azB +azS +amd +aAm +aAu +aAH +aAu +aAu +aAu +aAu +aAu +aBD +amy +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAg +aAs +aAg +aAg +aAg +aAg +aAg +aAg +aPw +cdv +bBU +bFg +bFg +bFg +bFg +bFg +bPa +bFg +bAF +bAF +bFg +ccD +aZi +aZi +aZi +caA +aZi +aZi +skd +aZi +aZi +bKV +bSl +bSl +cqK +bnY +bpa +bqw +bqw +bqw +bqw +bqw +bxk +bTP +byT +bzC +bAi +bBc +bAi +bCR +bUD +bEV +bEV +bEV +bEP +bEP +bEP +bUb +bQO +bDF +bOS +bQQ +bQQ +bSX +bQQ +bQQ +bQQ +bSX +bQQ +bQQ +bQQ +bSX +bQQ +bQQ +ceI +ccn +aal +oWw +shJ +cwl +cxa +cvU +cwp +cwA +cwH +cvU +cvU +cyw +cwl +cwl +czM +cAo +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +uMK +edV +edV +uMK +uMK +wxM +uMK +uMK +uMK +uMK +ksx +uMK +uMK +rvT +aac +"} +(195,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aIx +aMd +aQd +aUr +aIA +aIA +aIA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +ayF +alo +amm +amm +amz +apG +ant +ars +ars +amz +atw +ant +auQ +avV +awP +avv +aww +awz +awz +awz +awz +awz +awz +amd +aAn +aAx +aAJ +aAV +aAZ +aBe +aBh +aAx +aBF +amz +amz +aDF +aDF +aDF +aDF +aHv +amz +aHv +aDF +aDF +aDF +aDF +amz +amz +aAg +aAg +aAg +aAg +aPw +aQg +bDG +bDG +bFg +bFg +bFg +bFg +bFg +bFg +bAF +bAF +bFg +ccD +bzs +aZi +bcj +baY +aZj +aZi +bDN +bDB +bDB +bMi +bSl +bSl +bSl +bnY +bpb +bqw +bqw +bqw +bqw +bwp +bnY +bSl +byT +bzD +bAi +bBd +bBO +byT +byT +byT +byT +byT +bDN +bEP +bEP +bUb +bQO +bDF +bOU +bQR +bSy +bSY +bTA +bTA +bUu +bUu +bTA +bXF +bUu +bUu +bZP +caL +cbG +bDF +cve +xSI +cvS +ccK +ccN +ccR +cwo +cvS +cwI +cwI +cwI +cwI +cwI +czp +czM +cAp +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +kge +uMK +uMK +iAN +uMK +uMK +uMK +uMK +edV +uMK +uMK +uMK +wxM +rvT +aac +"} +(196,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aIA +aIA +aIA +aIA +aIA +aIA +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aal +aal +acZ +aal +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +bQU +alo +amm +alo +amz +apG +aqD +ans +ans +asJ +ans +ans +auR +avW +awQ +avw +awx +awz +axM +amd +amd +amd +amd +amd +amd +amd +amd +amd +amd +amd +amd +amd +amd +amz +aCC +aDK +aEu +aEu +aEu +aEu +aHT +aEu +aEu +aEu +aEu +aEu +aLf +amz +aAg +aAg +aAg +amz +aPB +amz +bzs +bzs +bBU +bFg +bAF +bAF +bAF +bAF +bAF +bAF +bFg +ccD +bzs +aZi +bcl +aly +bFt +aZi +bDN +bEP +bEP +bMi +bSl +bSl +bSl +bnY +bpc +bqx +bqw +bqw +bvc +bwq +bnY +bSl +byT +bzE +bAj +bBd +bOP +byT +bQD +bQD +bQD +civ +bDO +bQP +bEU +ccT +bQO +bDF +bOV +bQS +bQS +bQS +bTB +bTR +bUv +bTR +bWL +bXG +bXG +bXG +bZQ +caL +cbH +bDF +cve +aal +cvS +bSj +ccO +cwl +cwq +cwB +cwJ +cwV +cwV +cwV +cwV +czq +czT +cAq +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +iAN +iAN +nRW +uMK +mrJ +mrJ +mrJ +uMK +uMK +uMK +uMK +uMK +uMK +rvT +aac +"} +(197,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aIA +aIA +aIA +aIA +aIA +aIA +aal +aal +aal +aal +aal +bKW +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aqg +aqg +aqg +aqg +ayF +alo +alo +amt +alo +amz +apH +aqE +ant +aZq +amz +atx +atx +atx +atx +awP +avx +awy +axl +axl +ayA +axl +axl +axl +aAc +aAo +aAo +aAK +aAo +aBa +aAo +aAK +aAo +aAo +aBZ +aCD +aDM +aEv +aEv +aGp +aGp +aHU +aGp +aGp +aEv +aEv +aEv +aLg +aLN +aMk +aMV +amz +amz +aPC +amz +amz +beF +bBU +bFg +fls +bAF +bAF +bAF +bAF +bAF +bFg +ccD +bzs +aZi +bcp +aly +aZk +aZi +bDN +bEP +bEP +bMi +bSl +bSl +bSl +bnY +bpd +bqy +bsh +btM +bvd +bwr +bnY +bSl +byT +bzF +bAi +bBe +bzG +bzG +bQD +bQD +bQD +byT +bWB +bXt +bZL +cdx +ceY +bDF +bOW +bQT +bSz +bSZ +bTC +bTS +bUw +bVN +bWM +bXH +bSz +bSz +bSz +bSz +cbI +bDF +cvf +amF +cvS +cvS +ccP +cwl +cwr +cwC +cwK +cwK +cxH +cyx +cwK +czr +cwl +cAn +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +uMK +uMK +nRW +uMK +uMK +uMK +uMK +uMK +uMK +iAN +uMK +edV +edV +rvT +aac +"} +(198,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aal +aad +aad +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aal +aal +aal +aal +aqg +aqg +aqg +aqg +ayF +alm +alS +alq +alR +aoL +ans +aqF +art +ant +amz +aty +aue +aty +avX +amz +avy +awz +awz +awz +amd +ayX +awz +azT +amd +aAy +aAy +aAy +aAy +aAy +aAy +aAy +aAy +aAy +amz +aCE +aDN +aEw +aEw +aGq +aHw +aIa +aIH +bba +aEw +aEw +aDN +aLh +amz +aAg +aMW +aNJ +aOF +aPD +amA +aRb +cdu +bBU +bFg +bAF +bAF +bAF +bAF +bAF +bAF +bFg +ccD +bzs +aZi +bcp +aly +bcD +aZi +bDN +bEP +bEP +bMi +bSl +bSl +bSl +bnY +bpe +bqz +bsi +btN +bve +bws +bnY +bSl +byT +bOO +bzG +bAi +bzG +bzG +bQD +bQD +chb +byT +bDN +bXM +aal +aal +aal +aal +bOX +bOX +bOX +bTa +bTD +bTT +bOW +bTT +bWN +bTa +bOX +bOX +bOX +bOX +bOX +aal +aal +aal +aal +cvS +ccQ +cwl +cws +cvS +cwL +cwK +cwK +cwK +cwK +czr +cwl +cwl +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +edV +uMK +uMK +iAN +uMK +wxM +uMK +uMK +uMK +uMK +iAN +uMK +uMK +rvT +aac +"} +(199,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aal +aal +aal +aal +aal +aal +aal +acZ +aan +aan +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aal +aal +aal +aal +aal +apm +aqg +aqg +ayF +akJ +akR +ali +alo +amz +amz +amz +amz +amz +amz +amz +amz +amz +amz +amz +amd +awA +amd +amd +amd +ayY +amd +amd +amd +amd +amd +aAL +aAW +aAL +aAW +aAL +amd +amd +amz +amz +amz +amz +amz +amz +amz +amz +amz +amz +amz +amz +amz +amz +amz +alZ +alZ +amz +amz +aPE +amB +aRc +cdu +bBU +bFg +bAF +bAF +bAF +bAF +bAF +bAF +bFg +ccD +bzs +aZi +bcq +bbf +bNv +bTq +bDO +bEU +bEU +bMj +bSl +bSl +cqK +bnY +bnY +bnY +bsj +btO +bsj +bnY +bnY +bEq +byT +xyu +bzG +bzG +bzG +bzG +bQD +bQD +chi +byT +bWC +bXN +aal +aal +aal +aal +aal +aal +aal +bTb +bTE +bTU +bUy +bTU +bWO +bXI +aal +aal +aal +aal +aal +aal +aal +aal +aal +cvS +cwe +cwl +cwe +cvS +cwM +cwW +cwW +cwW +cwW +czs +cwl +cAo +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +edV +uMK +edV +lNo +uMK +uMK +uMK +uMK +xzs +uMK +uMK +uMK +uMK +rvT +aac +"} +(200,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aal +aal +aad +aal +aal +aal +aal +aal +aao +aze +aal +aal +aal +aal +aal +aal +aal +aal +aal +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aal +aal +aal +aal +aal +apm +aqg +aqg +ayF +akK +alV +alf +alo +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +ayL +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +amz +aPF +aQk +aRd +cdu +bBU +bFg +bFg +bFg +bFg +bFg +bFg +bFg +bFg +ccD +bzs +aZi +aZi +aZi +aZi +aZi +bDP +bEV +bEV +bNa +bSl +bSl +bSl +acO +aal +aal +bsj +btP +bsj +aal +aal +aal +byT +bzH +bAl +bEs +bQC +byT +bQD +bQD +bQD +byT +bSl +bYm +aal +aal +aal +aal +bOY +aae +aae +aae +aae +bTY +aae +aae +aae +aae +aae +aae +aae +aae +cbJ +aal +aal +aal +aal +cvS +cwf +ccS +cwf +cvS +cwN +cwl +cwl +cwl +cwl +czt +czU +cAp +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +edV +uMK +edV +lNo +mrJ +mrJ +mrJ +uMK +edV +uMK +uMK +uMK +iAN +rvT +aac +"} +(201,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aap +aap +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aZu +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +btg +btg +btg +ctQ +aal +aal +aal +aal +aal +apm +aqg +aqg +aqg +bQh +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +bso +bLa +bPB +bPB +bPB +bPB +bPB +bPB +bPB +bPB +cdr +bFq +amF +amF +amF +amF +amF +bEq +bEq +bEq +bEq +bEq +bEq +bEq +cvM +aal +aal +bsj +btQ +bsj +aal +aal +aal +byT +byT +byT +byT +byT +byT +byT +byT +byT +byT +bEq +bXt +aal +aal +aal +aal +brL +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +ctQ +aal +aal +aal +aal +cvS +cvS +cvS +cvS +cvS +cvS +cvS +cvS +cvS +cvS +cvS +cvS +cvS +cvS +brL +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +uMK +uMK +edV +lNo +uMK +uMK +uMK +uMK +lqC +uMK +wxM +uMK +uMK +rvT +aac +"} +(202,1,1) = {" +irN +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +aZu +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +aac +btg +btg +btg +btg +aae +aae +aae +aae +bxO +bxO +bxO +bxO +bxO +bxO +bxO +aae +aae +aae +apI +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +apI +aae +aae +aae +aae +aae +aae +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +apI +aae +aae +btg +bKf +btg +aae +aae +aae +apI +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +apI +aae +aae +aae +aae +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +btg +cAM +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +wxM +uMK +edV +lNo +uMK +uMK +uMK +iAN +edV +uMK +iAN +uMK +uMK +rvT +aac +"} +(203,1,1) = {" +iug +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aZu +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +cAP +cAQ +ctQ +aal +aad +aad +aad +rvT +uMK +uMK +uMK +uMK +iAN +uMK +wxM +uMK +iAN +uMK +uMK +uMK +uMK +uMK +rvT +aac +"} +(204,1,1) = {" +iqa +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aZu +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +cAS +ctQ +aal +aad +aad +aad +rvT +uMK +iAN +iAN +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +edV +edV +rvT +aac +"} +(205,1,1) = {" +cGh +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +aZu +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +aac +btg +btg +btg +btg +aah +aah +aah +aah +bLQ +bLQ +bLQ +bLQ +bLQ +bLQ +bLQ +aah +aah +aah +apJ +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +apJ +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +apJ +aah +aah +aah +aah +aah +aah +aah +aah +apJ +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +apJ +aah +aah +aah +aah +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +btg +btg +btg +ctQ +aad +aad +aad +aad +rvT +uMK +edV +edV +uMK +uMK +nRW +nRW +nRW +uMK +edV +edV +peF +uMK +uMK +rvT +aac +"} +(206,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aZu +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +btg +btg +ctQ +aal +aal +aal +aal +aal +apm +aqg +aqg +aqg +ayF +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +brL +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +btg +ctQ +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +brL +btg +btg +ctQ +aad +aad +aad +aad +rvT +uMK +uMK +uMK +uMK +uMK +iAN +uMK +uMK +uMK +nRW +uMK +iAN +uMK +iAN +rvT +aac +"} +(207,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +bKW +aal +aal +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aal +aal +aal +aal +aal +apm +aqg +aqg +aqg +ayF +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +acO +aal +aal +aal +aal +cfE +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +chs +ctR +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +brL +vAa +btg +ctQ +aad +aad +aad +aad +rvT +uMK +uMK +wxM +uMK +edV +lqC +edV +lqC +edV +uMK +uMK +uMK +wxM +uMK +rvT +aac +"} +(208,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aal +aal +aal +aal +aal +aal +aal +bgI +bgI +bgI +bgI +hxw +hxw +hxw +bgI +bgI +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aad +aad +aal +aal +aal +apm +aqg +aqg +aqg +ayF +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +buO +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +acZ +bNX +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +cvK +cvK +cvK +aad +aad +aad +aad +aad +aad +aad +aad +aad +brL +btg +btg +ctQ +aad +aad +aad +aad +rvT +kge +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +uMK +rvT +aac +"} +(209,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aal +aal +aal +aal +aal +aal +aal +biO +bHt +nbP +nbP +nbP +adl +adl +adl +biO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aqg +aqg +aqg +aad +aad +aal +aal +aal +acO +amF +amF +amF +amF +amF +amF +amF +amF +amF +cvM +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cvK +cvK +cvK +cvK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +brL +btg +btg +ctQ +aad +aad +aad +aad +rvT +iAN +uMK +mrJ +uMK +uMK +iAN +iAN +iAN +kge +uMK +mrJ +uMK +uMK +uMK +rvT +aac +"} +(210,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aal +aal +aal +aal +aal +aal +aal +biO +bHu +nbP +nbP +nbP +adl +adl +adl +biO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aqg +aqg +aqg +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +aaj +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aal +aal +aal +aal +aal +aal +acO +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cvK +cvL +cvL +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +brL +btg +btg +ctQ +aad +aad +aad +aad +rvT +iAN +uMK +mrJ +uMK +uMK +uMK +uMK +uMK +uMK +uMK +mrJ +uMK +uMK +iAN +rvT +aac +"} +(211,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aal +aal +aal +aal +aal +aal +bgI +bHv +nbP +hHy +nbP +hqI +adl +cKl +bgI +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aqg +aqg +aqg +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +aaj +aaj +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cvL +cvL +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +brL +rvT +bMk +bMk +rvT +rvT +rvT +rvT +rvT +rvT +rvT +imW +rvT +rvT +rvT +lYj +lYj +rvT +rvT +rvT +rvT +rvT +rvT +rvT +aac +"} +(212,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aal +aal +aal +aal +aal +aal +bgI +bHw +nbP +hHy +nbP +hqI +adl +hqI +bgI +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aqg +aqg +aqg +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +aaj +aaj +rni +aad +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +aad +aad +aad +aad +aad +cvK +cvK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +brL +rvT +uvz +uvz +nRX +nRX +nRX +nRX +rvT +jIH +uvz +uvz +uvz +uvz +xri +xri +xri +xri +uvz +uvz +uvz +uvz +mWS +rvT +aac +"} +(213,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aal +aal +aal +acZ +aal +aal +aal +bgI +bHu +nbP +hHy +nbP +hqI +adl +hqI +biO +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +prz +cwh +cvK +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +cvK +cvK +cwt +cwD +cwD +cwD +twg +rni +rni +aaj +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bEY +cnh +bEY +adl +bEY +cqD +cqE +bEY +cpt +cpt +aad +aad +aad +aad +cvK +cvK +cwt +cwD +aad +aad +aad +aad +aad +aad +aad +aad +aad +brL +bMk +uvz +uvz +scn +uvz +scn +nRX +imW +mJQ +uvz +uvz +uvz +uvz +xri +mRx +mRx +xri +uvz +uvz +uvz +uvz +uvz +rvT +aac +"} +(214,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aal +aal +aal +aal +aal +aal +biO +bHv +nbP +hHy +nbP +hqI +adl +hqI +biO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwh +cvK +aqg +aqg +aqg +aqg +aqg +aqg +aqg +cvK +aqg +aqg +cvK +cvK +cwt +cwD +cwD +cwD +twg +rni +aaj +rni +aaj +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bEY +cni +cor +adl +cqd +cqE +crJ +bEY +cpt +cpt +cpt +aad +aad +aad +cwg +cvK +cwu +cwE +cvX +aad +aad +aad +aad +aad +aad +aal +aal +bKX +bMk +uvz +uvz +uvz +uvz +uvz +nRX +imW +uVF +uvz +uvz +uvz +rvT +reC +reC +reC +reC +rvT +wQd +uvz +uvz +oMD +rvT +aac +"} +(215,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aal +aal +aal +aal +aal +aal +biO +bHw +nbP +hHy +nbP +hqI +adl +hqI +bgI +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +aad +cwD +cwD +cwD +cwD +cwD +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwh +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +cvK +cwt +cwD +cwD +cwD +twg +aaj +aaj +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bEY +cnj +bEY +adl +bEY +cqF +crK +bEY +cpt +cpt +cpt +aad +aad +aad +cwh +cvK +cvK +cwF +cvX +cvX +aad +aad +aad +aad +aal +aal +aal +aad +rvT +iaA +scn +uvz +uvz +uvz +nRX +rvT +hER +uvz +uvz +uvz +pEX +rvT +rvT +rvT +rvT +rvT +wQd +uvz +uvz +uvz +rvT +aac +"} +(216,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aal +aal +aal +aal +aal +aal +bgI +bIZ +nbP +hHy +nbP +hqI +adl +hqI +bgI +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +lVW +cwD +cwD +ezz +cwD +cwD +aad +aad +aad +aad +aad +cwD +cwD +lVW +cwD +udo +cwh +cvK +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +cvK +cvK +aqg +cwt +cwD +cwD +cwD +twg +aaj +aaj +aaj +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bEY +bEY +bEY +adl +bEY +bEY +bEY +bEY +cpt +cpt +cpt +cpt +cvu +cvX +cwi +cwn +cvK +aad +cvX +cwD +cwX +aad +aad +aal +aal +aal +aad +aad +rvT +iaA +uvz +rhc +rhc +scn +nRX +rvT +uHF +uvz +uvz +uvz +ihe +uvz +scn +scn +uvz +ihe +uvz +scn +uvz +tRk +rvT +aac +"} +(217,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aal +aal +aal +aal +bKW +aal +biO +bHw +nbP +hHy +nbP +hqI +adl +hqI +biO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +vCH +cwh +cvK +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +cvK +aqg +aqg +cvK +cwt +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bEY +cnk +adl +adl +adl +adO +adl +adl +cpt +cpt +cpt +cvu +cvu +cvu +cvX +aad +cvK +aad +aad +cwX +aal +aal +aal +aal +aal +aad +aad +aad +rvT +iaA +uvz +pkQ +pkQ +uvz +nRX +rvT +oeX +uvz +scn +uvz +qcl +uvz +uvz +uvz +uvz +qcl +uvz +scn +uvz +iMq +rvT +aac +"} +(218,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aal +aal +aal +aal +aal +aal +biO +bHt +nbP +hHy +nbP +hqI +adl +hqI +biO +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +ezz +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +udo +cwh +cvK +aqg +aqg +aqg +aqg +aqg +aqg +aqg +cvK +aqg +cvK +cvK +cvK +cwt +cwD +cwD +cwD +twg +aaj +aad +aaj +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bEY +cnl +cnl +adl +adl +cqG +crM +bEY +cpt +cpt +cpt +cpt +rho +aad +aad +aad +cvL +cvL +aad +aad +cwv +aal +aal +aal +aad +aad +aad +aad +rvT +iaA +scn +gZg +gZg +uvz +nRX +rvT +hER +uvz +scn +uvz +jBF +uvz +uvz +uvz +uvz +qzd +uvz +uvz +uvz +nQw +rvT +aac +"} +(219,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aal +aal +aal +aal +aal +aal +bgI +bHu +nbP +hHy +nbP +hqI +adl +hqI +bgI +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +prz +cwD +cwD +cwD +cwD +cwD +bgI +bgI +bgI +bgI +biO +biO +bgI +bgI +bgI +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwh +cvK +aqg +aqg +cvK +aqg +cvK +aqg +cvK +aqg +cvK +aqg +cvK +cvK +cwt +cwD +cwD +cwD +twg +aaj +aaj +rni +aaj +rni +aad +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bEY +cnm +cnl +adl +cqe +cqH +cqI +bEY +cpt +cpt +cpt +aad +aad +aad +aad +aad +aad +cvL +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rvT +iaA +uvz +pkQ +pkQ +uvz +nRX +rvT +uHF +uvz +uvz +uvz +lPf +uvz +uvz +uvz +uvz +lPf +uvz +uvz +uvz +dpH +rvT +aac +"} +(220,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aal +aal +aal +aal +aal +aal +bgI +biO +bgI +bgI +bgI +bgI +bgI +biO +bgI +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +bgI +bgI +sqp +bgI +adl +adl +adl +cRE +adl +bgI +bgI +bgI +cwD +cwD +cwD +cwD +cwD +cwD +udo +cwh +cvK +cvK +aqg +aqg +aqg +cvK +aqg +cvK +aqg +aqg +cvK +cvK +cvK +cwt +cwD +lVW +cwD +twg +aaj +aaj +aad +aaj +rni +rni +rni +aaj +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bEY +cnl +cnl +adl +cqf +cqI +crN +bEY +cpt +cpt +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rvT +iaA +uvz +ior +gZg +uvz +nRX +rvT +oeX +uvz +scn +uvz +uvz +scn +scn +scn +uvz +uvz +uvz +scn +uvz +ldU +rvT +aac +"} +(221,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +ezz +cwD +bgI +bgI +biO +bgI +bgI +qUh +adl +qPh +adl +adl +adl +adl +adl +adl +adl +bgI +cwD +cwD +sSj +cwD +cwD +cwD +dzc +cwh +cvK +cvK +cvK +cvK +cvK +aqg +cvK +aqg +cvK +cvK +cvK +cvK +cvK +cwt +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +rni +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bEY +adl +adl +adl +adl +cqJ +crO +bEY +cpt +cpt +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rvT +iaA +uvz +pkQ +pkQ +scn +nRX +imW +mJQ +uvz +scn +uvz +uvz +scn +scn +scn +uvz +uvz +uvz +scn +uvz +uvz +rvT +aac +"} +(222,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +bgI +xVS +adl +tAq +bgI +cVb +adl +bgI +adl +mua +mua +mua +mua +mua +adl +biO +uZS +uZS +uZS +cwD +cwD +cwD +udo +cwh +cvK +cvK +cvK +cvK +aqg +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cwt +prz +cwD +cwD +twg +aaj +aaj +rni +rni +rni +rni +rni +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aad +aad +bgI +bgI +bgI +bgI +bgI +bgI +bgI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bEY +bEY +bEY +bEY +bEY +bEY +bEY +bEY +cpt +cpt +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rvT +iaA +uvz +gZg +gZg +uvz +nRX +rvT +mJQ +uvz +uvz +uvz +uvz +scn +scn +scn +uvz +uvz +uvz +uvz +jUo +mTn +rvT +aac +"} +(223,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +acZ +aal +aal +aal +aal +aal +aal +aal +aal +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +aad +aad +aad +aad +cwD +cwD +cwD +bgI +kTw +adl +uSp +bgI +nvy +adl +oCy +lde +mua +mua +mua +mua +mua +adl +qPh +uZS +uZS +uZS +cwD +cwD +cwD +vsn +cwh +cvK +cvK +cvK +cvK +cvK +aqg +aqg +cvK +cvK +cvK +cvK +cvK +cvK +cwt +cwD +vzt +cwD +twg +aaj +aaj +aaj +aaj +aaj +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +bgI +iwy +ycr +adl +sEK +adl +bgI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cpt +cpt +cpt +cpt +cpt +cpt +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rvT +iaA +uvz +scn +uvz +uvz +nRX +qVq +mJQ +uvz +scn +uvz +lPf +uvz +uvz +uvz +uvz +lPf +uvz +scn +lzS +pRU +rvT +aac +"} +(224,1,1) = {" +aac +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +bgI +adl +adl +adl +bgI +oud +adl +hbB +lde +mua +mua +mua +mua +mua +adl +biO +uZS +uZS +uZS +cwD +cwD +cwD +udo +cwh +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cwt +cwD +cwD +cwD +twg +aaj +aaj +aaj +aad +aaj +aaj +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aal +aal +gMa +oNL +sEK +lIt +eGN +euK +bgI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rvT +iaA +uvz +uvz +uvz +uvz +uvz +uvz +uvz +uvz +scn +uvz +jBF +uvz +uvz +uvz +uvz +qzd +uvz +scn +oMB +huk +rvT +aac +"} +(225,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +bgI +rRn +qRm +adl +qPh +vLq +adl +hbB +lde +adl +adl +adl +adl +adl +jvh +bgI +uZS +uZS +uZS +cwD +cwD +cwD +ePE +cwh +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cwt +cwD +cwD +cwD +twg +aaj +aaj +aaj +aad +aaj +rni +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aal +aal +gMa +eGN +adl +dSL +rxI +adl +bgI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rvT +iaA +scn +uvz +uvz +uvz +uvz +uvz +uvz +uvz +uvz +uvz +qcl +uvz +uvz +uvz +uvz +qcl +uvz +scn +lzS +pRU +rvT +aac +"} +(226,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +bgI +bgI +bgI +bgI +bgI +bgI +hbB +xGM +hbB +adl +adl +adl +adl +adl +adl +hie +bgI +bgI +bgI +bgI +bgI +bgI +cwD +udo +cwh +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cwt +cwD +cwD +cwD +twg +aaj +aaj +aaj +aad +aaj +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +bgI +oua +adl +adl +adl +sEK +bgI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rvT +iaA +nRX +nRX +nRX +nRX +xri +ylJ +xri +uvz +uvz +uvz +ihe +uvz +oiv +oiv +uvz +ihe +uvz +uvz +oMB +wcS +rvT +aac +"} +(227,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +bgI +euK +fsH +ryU +eEU +bgI +bgI +adl +adl +mua +mua +mua +mua +adl +adl +bgI +bgI +eEU +ryU +fsH +euK +bgI +cwD +lYe +cwh +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cwt +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +rni +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +bgI +olL +rxI +adl +hqN +adl +bgI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +rvT +aac +"} +(228,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +biO +adl +adl +adl +adl +pwQ +bgI +adl +adl +tRM +mdc +tPA +uWR +adl +adl +cNG +adl +adl +adl +adl +adl +biO +cwD +cwD +cwh +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cwt +cwD +cwD +cwD +twg +aaj +aaj +aaj +rni +rni +rni +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +bgI +adl +adl +adl +lyO +adl +bgI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(229,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +biO +adl +adl +adl +nbP +nbP +cNG +adl +adl +tRM +tPA +gzG +uWR +adl +adl +bgI +cMJ +aDp +adl +adl +adl +biO +cwD +cwD +cwh +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cwt +cwD +cwD +cwD +twg +aaj +aaj +aaj +rni +rni +rni +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +xAC +emA +adl +uma +adl +adl +bgI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(230,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +ezz +cwD +cwD +biO +wsC +adl +adl +nbP +fNO +bgI +adl +adl +tRM +gCJ +tPA +uWR +adl +adl +bgI +psQ +yij +adl +adl +adl +biO +cwD +cwD +cwh +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cwt +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +aaj +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +bgI +adl +egT +adl +sEK +eGN +bgI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(231,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +bgI +pEv +adl +adl +msV +fWp +bgI +adl +adl +tRM +loi +tPA +uWR +adl +adl +bgI +tbd +aDp +adl +wsC +hji +bgI +cwD +cwD +cwD +cwn +cwn +cwn +cwn +cwn +cwn +cwn +cwn +cwn +cwn +cwn +cwn +cwn +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +bgI +bgI +bgI +gMa +gMa +bgI +bgI +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(232,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +bgI +bgI +bgI +dWP +bgI +bgI +bgI +bgI +adl +mua +mua +mua +mua +adl +bgI +bgI +bgI +bgI +dWP +bgI +bgI +bgI +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +vzt +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aad +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(233,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +bgI +xao +mmZ +bgI +mmZ +kSC +bgI +hYa +adl +adl +adl +adl +ezY +bgI +kSC +mmZ +bgI +mmZ +xao +bgI +cwD +cwD +cwD +cwD +cwD +cwD +cwD +prz +cwD +cwD +lVW +cwD +vzt +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(234,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +ezz +cwD +cwD +ezz +cwD +cwD +bgI +mmZ +pXS +bgI +qXb +mmZ +bgI +adl +adl +adl +adl +adl +adl +bgI +mmZ +qXb +bgI +pXS +mmZ +bgI +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +prz +cwD +cwD +cwD +cwD +cwD +cwD +twg +aaj +aaj +aad +aaj +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aal +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(235,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +bgI +bgI +bgI +bgI +bgI +wKa +bgI +bgI +bgI +adl +adl +bgI +bgI +bgI +wKa +bgI +bgI +bgI +bgI +bgI +cwD +cwD +cwD +cwD +cwD +cwD +vzt +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aqg +aqg +aqg +aqg +aqg +aal +aal +cpt +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(236,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +bgI +ovH +adl +adl +mWJ +pwQ +bgI +adl +adl +bgI +xEb +kXA +adl +wsC +hji +bgI +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +rni +rni +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +cpt +cpt +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(237,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +prz +cwD +cwD +cwD +cwD +cwD +biO +wsC +adl +adl +mWJ +uja +bgI +adl +adl +bgI +uja +kXA +adl +adl +adl +biO +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +ezz +ezz +cwD +lDE +wpT +wpT +wpT +wpT +wpT +wpT +wpT +wpT +wpT +lDE +aaj +aaj +aaj +rni +rni +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aad +aad +aad +aad +aad +aad +aad +rni +aad +aad +aad +aad +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(238,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +biO +adl +adl +adl +adl +adl +cNG +adl +adl +cNG +adl +adl +adl +adl +adl +biO +cwD +cwD +cwD +frM +lLu +lLu +lLu +lLu +kwB +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aad +aaj +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +aqg +aqg +aqg +aqg +aqg +aqg +aad +aad +aad +aad +rni +rni +rni +aad +rni +aad +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(239,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +biO +adl +adl +adl +adl +adl +bgI +adl +adl +bgI +adl +adl +adl +adl +adl +biO +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aal +aal +cpt +aqg +aqg +aqg +aqg +aqg +cvK +cvK +cpt +cpt +cpt +rni +rni +rni +rni +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(240,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +ezz +cwD +cwD +cwD +lVW +cwD +cwD +bgI +klL +sVS +ryU +dlA +bgI +bgI +adl +adl +bgI +bgI +dlA +ryU +sVS +klL +bgI +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +ezz +twg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +aad +aad +aad +aad +aad +rni +rni +aad +rni +aal +aal +aal +cpt +aqg +aqg +aqg +aqg +aqg +cvK +cvK +cvK +cpt +cpt +rni +rni +rni +rni +rni +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(241,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +bgI +bgI +bgI +bgI +bgI +bgI +cqe +mua +mua +sZL +bgI +bgI +bgI +bgI +bgI +bgI +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aad +aad +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +aad +rni +rni +aad +rni +rni +rni +rni +rni +cpt +cpt +cvK +aqg +aqg +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cpt +cpt +rni +cpt +cpt +rni +rni +rni +rni +aad +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(242,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +biO +edx +mua +mua +fZm +biO +cwD +cwD +cwD +cwD +cwD +cwD +cwD +lVW +sIJ +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +cpt +rni +cpt +cpt +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cpt +uIG +cpt +cpt +rni +rni +rni +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(243,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +ezz +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +biO +cqf +mua +mua +sYK +biO +cwD +cwD +cwD +cwD +cwD +prz +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aad +aad +rni +aad +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +cpt +rni +rni +uIG +cpt +cpt +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cpt +cpt +cpt +lLT +cpt +rni +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(244,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +ezz +cwD +cwD +cwD +bgI +bgI +adl +adl +bgI +bgI +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +sIJ +viT +viT +viT +viT +viT +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aad +aaj +aaj +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +rni +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cvK +cpt +qaU +cpt +cpt +cpt +cpt +rni +rni +aad +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(245,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +bgI +biO +biO +bgI +cwD +cwD +cwD +cwD +cwD +cwD +ezz +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +ezz +twg +aaj +aaj +aaj +aaj +rni +aaj +aaj +aad +aad +aaj +aaj +aad +aaj +aad +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +cpt +rni +cpt +cpt +cpt +cUs +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cvK +cvK +cvK +cvK +cvK +cpt +cpt +cpt +cpt +rKC +cpt +cpt +rni +rni +aad +aad +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(246,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +ezz +cwD +cwD +cwD +cwD +cwD +ezz +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aad +aad +aad +rni +rni +aad +aaj +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +cpt +cpt +cpt +cpt +cpt +cpt +cpt +kyR +rKC +cpt +cpt +cpt +cpt +cpt +cvK +cpt +cpt +cvK +cpt +cpt +cpt +ohM +cpt +cpt +cpt +cpt +cpt +rni +aad +aad +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(247,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +rni +aaj +aaj +aad +rni +rni +rni +rni +aad +aad +aad +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +rni +cpt +qaU +cpt +rKC +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cvK +cpt +cpt +cpt +cpt +rKC +lLT +cpt +cpt +cpt +cpt +cpt +rni +cpt +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(248,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +ezz +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +rni +aad +aad +rni +aad +rni +aad +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +aad +rni +rni +rni +cpt +rni +rni +cpt +cpt +cpt +rkk +cpt +rKC +cpt +cpt +cpt +cpt +wIE +rKC +cpt +cpt +tUx +cpt +cpt +cpt +nII +cpt +cpt +cpt +cpt +cpt +cpt +rni +cpt +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(249,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +sIJ +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +rni +rni +rni +rni +rni +aad +rni +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +aad +rni +rni +rni +rni +cpt +rni +cpt +cpt +cpt +cpt +cpt +cpt +qaU +cpt +cpt +cUs +cpt +cpt +cpt +qaU +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cpt +qaU +cpt +cpt +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(250,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +xrZ +nij +nij +nij +nij +nij +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +aaj +aad +aad +rni +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +aad +aad +rni +rni +rni +rni +rni +rni +cpt +rni +cpt +cpt +cpt +cpt +cpt +cpt +cpt +rkk +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cpt +rKC +cpt +cpt +cUs +cpt +cpt +cpt +cpt +cpt +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(251,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +ezz +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +cwD +twg +aaj +aaj +aaj +aaj +rni +aaj +rni +rni +aad +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +rni +rni +rni +cpt +rni +cpt +cpt +qaU +cpt +rKC +cpt +cpt +cpt +cpt +cpt +qaU +cpt +cpt +cpt +cUs +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cpt +cpt +rni +rni +cpt +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(252,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +wpT +wpT +wpT +wpT +wpT +wpT +wpT +wpT +wpT +wpT +wpT +wpT +wpT +wpT +lYh +aaj +aaj +aaj +rni +rni +aad +aad +rni +aad +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +rni +aad +rni +rni +rni +rni +rni +rni +rni +rni +cpt +cpt +cpt +cUs +cpt +cpt +cpt +rni +cpt +cpt +rni +cpt +cpt +cpt +cpt +cpt +cpt +cpt +rni +cpt +cpt +rni +rni +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(253,1,1) = {" +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +cwD +cwD +cwD +cwD +cwD +cwD +ezz +cwD +cwD +aad +aad +aad +aaj +aaj +aaj +rni +aaj +aad +rni +rni +aad +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +aad +rni +rni +rni +rni +rni +rni +rni +rni +rni +cpt +cpt +rni +rni +rni +cpt +cpt +rni +rni +cpt +cpt +cpt +cpt +rni +cpt +cpt +rni +cpt +cpt +rni +cpt +rni +rni +rni +rni +rni +aad +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(254,1,1) = {" +aac +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aad +aaj +rni +rni +rni +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +rni +rni +rni +aad +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +rni +aad +aad +rni +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +"} +(255,1,1) = {" +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +"} diff --git a/_maps/map_files/FestiveBall/doorButtonOrganizer.dm b/_maps/map_files/FestiveBall/doorButtonOrganizer.dm new file mode 100644 index 0000000000..855126fd13 --- /dev/null +++ b/_maps/map_files/FestiveBall/doorButtonOrganizer.dm @@ -0,0 +1,10 @@ +// This will let me avoid having to edit all of these variables in every instance, while also avoiding var-editing. +/obj/machinery/button/door/dorms + name = "Dorm 1 Lock" + normaldoorcontrol = 1 + id = "dorm01" + specialfunctions = 4 + +/obj/machinery/door/airlock/wood/dorms + name = "Dorm 1" + id_tag = "dorm01" diff --git a/_maps/map_files/LambdaStation/lambda.dmm b/_maps/map_files/LambdaStation/lambda.dmm index e676dea0e5..c4d59b9a59 100644 --- a/_maps/map_files/LambdaStation/lambda.dmm +++ b/_maps/map_files/LambdaStation/lambda.dmm @@ -36662,31 +36662,31 @@ /area/service/library) "bxG" = ( /turf/closed/wall, -/area/service/library/lounge) +/area/commons/lounge) "bxH" = ( /obj/structure/table, /obj/item/storage/crayons, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bxI" = ( /obj/machinery/vending/games, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bxJ" = ( /obj/machinery/photocopier, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bxK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bxL" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bxM" = ( /obj/structure/grille, /turf/closed/wall/r_wall, @@ -36902,7 +36902,7 @@ /area/service/library) "byQ" = ( /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "byR" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -36920,14 +36920,14 @@ dir = 4 }, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "byT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ dir = 9 }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "byU" = ( /obj/structure/chair{ dir = 4 @@ -37071,18 +37071,18 @@ dir = 4 }, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bzP" = ( /obj/structure/table/wood, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bzQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bzR" = ( /obj/structure/cable{ icon_state = "1-2" @@ -37091,7 +37091,7 @@ dir = 4 }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bzT" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -37334,7 +37334,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bAP" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -37342,7 +37342,7 @@ pixel_y = 9 }, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bAQ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -37617,13 +37617,13 @@ dir = 4 }, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bBT" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bBU" = ( /obj/structure/table, /obj/machinery/light/small{ @@ -37935,22 +37935,22 @@ pixel_y = -24 }, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bCL" = ( /obj/machinery/camera/autoname{ dir = 1 }, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bCM" = ( /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bCN" = ( /obj/structure/cable{ icon_state = "1-4" }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bCO" = ( /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; @@ -38403,7 +38403,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bEb" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -39760,7 +39760,7 @@ icon_state = "1-2" }, /obj/machinery/power/apc{ - areastring = "/area/service/library/lounge"; + areastring = "/area/commons/lounge"; dir = 4; name = "Library Lounge APC"; pixel_x = 24 @@ -39769,7 +39769,7 @@ icon_state = "0-2" }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bHp" = ( /obj/structure/cable{ icon_state = "4-8" @@ -45616,7 +45616,7 @@ dir = 1 }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bWB" = ( /obj/machinery/requests_console{ department = "AI"; @@ -60035,7 +60035,7 @@ name = "library camera" }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "cNb" = ( /obj/machinery/light/small{ dir = 4; diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 154d6ec230..65e8e5e4d6 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -45848,7 +45848,7 @@ /obj/structure/window/reinforced/fulltile, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, -/area/service/library/lounge) +/area/commons/lounge) "cdW" = ( /obj/structure/reflector/box/anchored, /turf/open/floor/plasteel/dark, @@ -47328,7 +47328,7 @@ "ckp" = ( /obj/structure/closet/crate/bin, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "ckt" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating/asteroid/airless, @@ -47423,7 +47423,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "ckH" = ( /turf/open/floor/plasteel/dark, /area/service/library) @@ -47432,7 +47432,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "ckJ" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, @@ -47487,12 +47487,12 @@ }, /obj/machinery/libraryscanner, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "ckV" = ( /obj/effect/landmark/barthpot, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "ckW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47503,7 +47503,7 @@ /obj/structure/table/wood, /obj/machinery/computer/libraryconsole, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "clb" = ( /obj/structure/window/reinforced{ dir = 1; @@ -47556,7 +47556,7 @@ "clm" = ( /obj/machinery/photocopier, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "cln" = ( /obj/machinery/newscaster{ pixel_x = -32; @@ -47564,7 +47564,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "cls" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/closed/mineral, @@ -50542,7 +50542,7 @@ /area/maintenance/department/security/brig) "cwe" = ( /turf/closed/wall/mineral/iron, -/area/service/library/lounge) +/area/commons/lounge) "cwg" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -50617,7 +50617,7 @@ pixel_y = 26 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "cww" = ( /obj/structure/cable{ icon_state = "4-8" @@ -50711,7 +50711,7 @@ /obj/item/folder/yellow, /obj/item/pen, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "cxb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/effect/turf_decal/tile/purple, @@ -50794,7 +50794,7 @@ dir = 6 }, /turf/closed/wall, -/area/service/library/lounge) +/area/commons/lounge) "cxL" = ( /obj/machinery/door/window/eastright{ base_state = "left"; @@ -50828,7 +50828,7 @@ /obj/structure/window/reinforced/fulltile, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, -/area/service/library/lounge) +/area/commons/lounge) "cxX" = ( /obj/structure/table/wood, /obj/item/folder/red, @@ -50864,7 +50864,7 @@ dir = 5 }, /turf/closed/wall, -/area/service/library/lounge) +/area/commons/lounge) "cyP" = ( /obj/structure/closet/secure_closet/warden, /obj/item/clothing/mask/gas/sechailer, @@ -51577,7 +51577,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "cJo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -52249,7 +52249,7 @@ "dRT" = ( /obj/structure/bookcase/random/reference, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "dSp" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ dir = 1 @@ -52371,7 +52371,7 @@ "eeG" = ( /obj/machinery/bookbinder, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "eeQ" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -52662,7 +52662,7 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "eLt" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/tile/neutral{ @@ -53265,7 +53265,7 @@ "fWv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "fZq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -53383,7 +53383,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "giI" = ( /obj/machinery/light/small{ dir = 1 @@ -53557,7 +53557,7 @@ "gqi" = ( /obj/structure/bookcase/random/religion, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "gtX" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating, @@ -53943,7 +53943,7 @@ /area/maintenance/department/science) "gXv" = ( /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "gXZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/camera{ @@ -53995,7 +53995,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "heC" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 8; @@ -54807,7 +54807,7 @@ dir = 9 }, /turf/closed/wall, -/area/service/library/lounge) +/area/commons/lounge) "iyP" = ( /obj/structure/disposaloutlet, /turf/open/floor/plating, @@ -55080,7 +55080,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "iYQ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -55101,7 +55101,7 @@ dir = 10 }, /turf/closed/wall, -/area/service/library/lounge) +/area/commons/lounge) "jen" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 @@ -55386,7 +55386,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "jzz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external, @@ -55599,7 +55599,7 @@ dir = 1 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "jXA" = ( /obj/structure/table, /obj/item/stack/ore/iron, @@ -56081,7 +56081,7 @@ icon_state = "1-2" }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "kPi" = ( /obj/structure/table, /obj/machinery/microwave, @@ -56169,7 +56169,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "kSb" = ( /obj/structure/chair/office/light{ dir = 8 @@ -57232,7 +57232,7 @@ icon_state = "1-2" }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "mKk" = ( /obj/structure/cable{ icon_state = "1-8" @@ -57319,7 +57319,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "mXq" = ( /obj/item/taperecorder, /obj/item/cartridge/lawyer, @@ -57861,7 +57861,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "nOY" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -58407,7 +58407,7 @@ icon_state = "1-2" }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "oIU" = ( /obj/structure/table/wood, /obj/item/folder/yellow, @@ -59536,7 +59536,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "qBv" = ( /obj/item/clothing/head/ushanka, /turf/open/floor/plating, @@ -59684,7 +59684,7 @@ dir = 8 }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "qOH" = ( /obj/structure/cable{ icon_state = "1-2" @@ -59880,7 +59880,7 @@ "qYW" = ( /obj/structure/bookcase/random/nonfiction, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "rar" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -60004,7 +60004,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "roc" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -60284,13 +60284,13 @@ icon_state = "cobweb2" }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "rSE" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "rSH" = ( /obj/item/trash/can, /turf/open/floor/wood, @@ -60422,7 +60422,7 @@ "sgD" = ( /obj/structure/bookcase/random/adult, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "shw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ @@ -61731,7 +61731,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "uzB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -62173,7 +62173,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "vrQ" = ( /obj/machinery/power/terminal{ dir = 8 @@ -62452,7 +62452,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "vRi" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -62906,7 +62906,7 @@ "wDq" = ( /obj/structure/bookcase/random/fiction, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "wDZ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -63325,7 +63325,7 @@ icon_state = "1-2" }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "xje" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, @@ -63385,7 +63385,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "xlg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/heat_exchanging/junction, @@ -63697,7 +63697,7 @@ pixel_y = 22 }, /turf/open/floor/plasteel/dark, -/area/service/library/lounge) +/area/commons/lounge) "xNy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ diff --git a/code/datums/weather/weather.dm b/code/datums/weather/weather.dm index fcc1f92bec..45710c6371 100644 --- a/code/datums/weather/weather.dm +++ b/code/datums/weather/weather.dm @@ -209,6 +209,9 @@ /datum/weather/proc/weather_act(mob/living/L) return +/datum/weather/proc/weather_act_turf(area/N) //What effect does this weather have on the area? + return + /** * Updates the overlays on impacted areas * @@ -224,6 +227,7 @@ N.icon_state = telegraph_overlay if(MAIN_STAGE) N.icon_state = weather_overlay + weather_act_turf(N) if(WIND_DOWN_STAGE) N.icon_state = end_overlay if(END_STAGE) diff --git a/code/datums/weather/weather_types/ice_storm.dm b/code/datums/weather/weather_types/ice_storm.dm new file mode 100644 index 0000000000..f7be622770 --- /dev/null +++ b/code/datums/weather/weather_types/ice_storm.dm @@ -0,0 +1,36 @@ +//Same as snow_storm basically, but cools outside turf temps. StreetStation only +#define ICY_SNOW_TEMP 200 +/datum/weather/ice_storm + name = "Icestorm" + desc = "Harsh snowstorms roam the topside of this arctic planet, burying any area unfortunate enough to be in its path." + probability = 90 + + telegraph_message = "Drifting particles of snow begin to dust the surrounding area.." + telegraph_duration = 300 + telegraph_overlay = "light_snow" + + weather_message = "Dense snow begins to fall from the sky, how festive!" + weather_overlay = "snow_storm" + weather_duration_lower = 600 + weather_duration_upper = 1500 + + end_duration = 100 + end_message = "The snowfall dies down." + + area_type = /area/edina + protected_areas = list(/area/edina/protected) + target_trait = ZTRAIT_STATION + + immunity_type = "rad" + +/datum/weather/ice_storm/weather_act(mob/living/L) + //L.adjust_bodytemperature(-rand(10,20)) + +/datum/weather/ice_storm/weather_act_turf(area/N) + .=..() + //could be done better but would need a rewrite of weather which is beyond scope. + /* + for(var/turf/open/T in N) + var/datum/gas_mixture/turf/G = T.air + G.temperature = ICY_SNOW_TEMP + */ diff --git a/code/game/area/Space_Station_13_areas.dm b/code/game/area/Space_Station_13_areas.dm index caf8fda213..d8d16cb028 100644 --- a/code/game/area/Space_Station_13_areas.dm +++ b/code/game/area/Space_Station_13_areas.dm @@ -924,7 +924,7 @@ NOTE: there are two lists of areas in the end of this file: centcom and station area_flags = BLOBS_ALLOWED | UNIQUE_AREA | CULT_PERMITTED sound_environment = SOUND_AREA_LARGE_SOFTFLOOR -/area/service/library/lounge +/area/commons/lounge name = "Library Lounge" icon_state = "library_lounge" sound_environment = SOUND_AREA_SMALL_SOFTFLOOR diff --git a/code/game/area/areas/edina.dm b/code/game/area/areas/edina.dm new file mode 100644 index 0000000000..5a15eaff6d --- /dev/null +++ b/code/game/area/areas/edina.dm @@ -0,0 +1,204 @@ +/area/edina + name = "Nova Edina wilderness" + icon_state = "edina" + has_gravity = STANDARD_GRAVITY + clockwork_warp_allowed = FALSE // Can servants warp into this area from Reebe? + clockwork_warp_fail = "The aurora borealis is interfering with your teleport! Try somewhere closer to the city." + always_unpowered = TRUE + + //dynamic_lighting = DYNAMIC_LIGHTING_DISABLED + power_light = FALSE + power_equip = FALSE + power_environ = FALSE + outdoors = TRUE + //ambientsounds = SPACE //For later + +/area/edina/backstreet + name = "Nova Edina backstreets" + icon_state = "edina_alley" + clockwork_warp_allowed = TRUE + ambientsounds = MAINTENANCE + always_unpowered = FALSE //Sure you can have power if you want + +/area/edina/backstreet/supply + name = "Supply Backstreets" + icon_state = "edina_alley" + clockwork_warp_allowed = TRUE + ambientsounds = MAINTENANCE + always_unpowered = FALSE //Sure you can have power if you want + +/area/edina/backstreet/research + name = "Research Backstreets" + icon_state = "edina_alley" + clockwork_warp_allowed = TRUE + ambientsounds = MAINTENANCE + always_unpowered = FALSE //Sure you can have power if you want + +/area/edina/backstreet/med + name = "Hospital Backstreets" + icon_state = "edina_alley" + clockwork_warp_allowed = TRUE + ambientsounds = MAINTENANCE + always_unpowered = FALSE //Sure you can have power if you want + +///Nova Edina Streets/// + + +/area/edina/street + name = "Nova Edina Streets" + icon_state = "edina_street" + ambientsounds = null //TODO:add ? + +/area/edina/street/primary + name = "Nova Edina Streets" + icon_state = "edina_street" + ambientsounds = null //TODO:add ? + +/area/edina/street/primary/princess + name = "Princess Street" + icon_state = "edina_street" + ambientsounds = null //TODO:add ? + +/area/edina/street/primary/progress + name = "Progress Street" + icon_state = "edina_street" + ambientsounds = null //TODO:add ? + +/area/edina/street/primary/perimeter + name = "Perimeter Way" + icon_state = "edina_street" + ambientsounds = null //TODO:add ? + +/area/edina/street/primary/servitor + name = "Servitor Street" + icon_state = "edina_street" + ambientsounds = null //TODO:add ? + +/area/edina/street/secondary + name = "Nova Edina Streets" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/secondary/command + name = "Command Court" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/secondary/supply + name = "Supply Street" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/secondary/castle + name = "Castle Way" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/secondary/aux + name = "Auxiliary Avenue" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/intersection + name = "Nova Edina Streets" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/intersection/princessprogress + name = "Princess & Progress" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/intersection/princessperimeter + name = "Princess & Perimeter" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/intersection/princessperimeter/north + name = "Perimeter & N Princess" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/intersection/princessperimeter/south + name = "Perimeter & S Princess" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/intersection/princessservitor + name = "Servitor & Princess" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/intersection/servsuppaux + name = "Servitor, Supply, & Auxiliary" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/intersection/progcastaux + name = "Progress, Castle, & Auxiliary" + icon_state = "edina_street2" + ambientsounds = null //TODO:add ? + +/area/edina/street/street2 //Just so laying areas is easier + icon_state = "edina_street2" + +/area/edina/protected //Prevents ice storms + name = "Sheltered Nova Edina" + +/////////////////Edina specific derivitives/////////////////////////////////// + +/area/edina/crew_quarters + clockwork_warp_allowed = TRUE + area_flags = BLOBS_ALLOWED | VALID_TERRITORY + +/area/edina/crew_quarters/holo_atrium + name = "Hologram atrium" + +/area/edina/crew_quarters/store/clothes + name = "Clothes Store" + +/area/edina/crew_quarters/store/plushies + name = "Plushies Store" + +/area/edina/crew_quarters/store/pet + name = "Pet Store" + +/turf/open/floor/grass/snow/edina//But for now, we just handle what is outside, for light control etc. + name = "Scottish snow" + desc = "Looks super chilly!" + + light_range = 3 //MIDNIGHT BLUE + light_power = 0.15 //NOT PITCH BLACK, JUST REALLY DARK + light_color = "#00111a" //The light can technically cycle on a timer worldwide, but no daynight cycle. + baseturfs = /turf/open/floor/grass/snow/edina //If we explode or die somehow, we just make more! Ahahaha!!! + tiled_dirt = 0 //NO TILESMOOTHING DIRT/DIRT SPAWNS OR SOME SHIT + +//lets people build +/turf/open/floor/grass/snow/edina/attackby(obj/item/C, mob/user, params) + .=..() + if(istype(C, /obj/item/stack/tile)) + for(var/obj/O in src) + if(O.level == 1) //ex. pipes laid underneath a tile + for(var/M in O.buckled_mobs) + to_chat(user, "Someone is buckled to \the [O]! Unbuckle [M] to move \him out of the way.") + return + var/obj/item/stack/tile/W = C + if(!W.use(1)) + return + var/turf/open/floor/T = PlaceOnTop(W.turf_type) + T.icon_state = initial(T.icon_state) + if(istype(W, /obj/item/stack/tile/light)) //TODO: get rid of this ugly check somehow + var/obj/item/stack/tile/light/L = W + var/turf/open/floor/light/F = T + F.state = L.state + playsound(src, 'sound/weapons/genhit.ogg', 50, 1) + +////////////////Mapping helper///////////////////////// +/obj/effect/mapping_helpers/planet_z + name = "planet z helper" + layer = POINT_LAYER + +/obj/effect/mapping_helpers/planet_z/Initialize() + . = ..() + var/datum/space_level/S = SSmapping.get_level(z) + S.traits["Planet"] = TRUE //This probably doesn't work as I expect. But maybe!! diff --git a/code/game/objects/structures/fence.dm b/code/game/objects/structures/fence.dm index eaf5398605..5c63be0165 100644 --- a/code/game/objects/structures/fence.dm +++ b/code/game/objects/structures/fence.dm @@ -57,6 +57,7 @@ hole_size = LARGE_HOLE /obj/structure/fence/attackby(obj/item/W, mob/user) + var/current_stage = hole_size if(W.tool_behaviour == TOOL_WIRECUTTER) if(!cuttable) to_chat(user, "This section of the fence can't be cut.") @@ -64,7 +65,6 @@ if(invulnerable) to_chat(user, "This fence is too strong to cut through.") return - var/current_stage = hole_size if(current_stage >= MAX_HOLE_SIZE) to_chat(user, "This fence has too much cut out of it already.") return @@ -86,6 +86,25 @@ update_cut_status() + else if(istype(W, /obj/item/stack/rods) && broken) + if(!hole_size) + to_chat(user, "The [src] has no cuts in it!") + return + var/obj/item/stack/rods/R = W + if(do_after(user, CUT_TIME, target = src)) + if(current_stage == hole_size) + switch(--hole_size) + if(NO_HOLE) + visible_message("\The [user] repairs \the [src] fully.") + to_chat(user, "You repaire the [src] back to it's former glory.") + climbable = TRUE + if(MEDIUM_HOLE) + visible_message("\The [user] patches up \the [src].") + to_chat(user, "The hole in \the [src] is reduced slightly, though someone could probably sill squeeze though if you don't patch it up more.") + climbable = FALSE + R.use(1) + update_cut_status() + return TRUE /obj/structure/fence/proc/update_cut_status() diff --git a/code/game/objects/structures/fluff.dm b/code/game/objects/structures/fluff.dm index 477bc19a22..16f72bf1fb 100644 --- a/code/game/objects/structures/fluff.dm +++ b/code/game/objects/structures/fluff.dm @@ -78,6 +78,12 @@ deconstructible = FALSE layer = EDGED_TURF_LAYER +/obj/structure/fluff/lightpost/light + desc = "That which most enchants the Edinians is the lighting by gas of the boulevards... These humble rows of lamps, shining with a clarity white and pure, have a marvelous effect upon the streets on Nova Edina. Adorned with a cheery garb, in tune with the festive spirits of the city." + light_power = 0.8 + light_range = 10 + light_color = "#ffeeab" + /obj/structure/fluff/bus name = "bus" desc = "GO TO SCHOOL. READ A BOOK." diff --git a/code/modules/clothing/gloves/mittens.dm b/code/modules/clothing/gloves/mittens.dm new file mode 100644 index 0000000000..42250aae2f --- /dev/null +++ b/code/modules/clothing/gloves/mittens.dm @@ -0,0 +1,30 @@ +/obj/item/clothing/gloves/mittens + desc = "These gloves will keep your hands warm!" + name = "mittens" + icon_state = "mittens" + item_state = "wgloves" + //item_color = "white" + cold_protection = HANDS + min_cold_protection_temperature = GLOVES_MIN_TEMP_PROTECT + resistance_flags = NONE + +/obj/item/clothing/gloves/mittens/random + +/obj/item/clothing/gloves/mittens/random/Initialize() + ..() + var/colours = list("black", "yellow", "lightbrown", "brown", "orange", "red", "purple", "green", "blue", "kitten") + var/picked_c = pick(colours) + if(picked_c == "kitten") + new /obj/item/clothing/gloves/mittens/kitten(loc) + qdel(src) + return INITIALIZE_HINT_QDEL + item_state = "[picked_c]gloves" + //item_color = "[picked_c]" + color = picked_c + +/obj/item/clothing/gloves/mittens/kitten + name = "Kitten mittens" + desc = "These gloves will keep your hands warm, and feature cute kittens" + icon_state = "kittenmittens" + item_state = "blackgloves" + //item_color = "black" diff --git a/code/modules/holiday/halloween/jacqueen.dm b/code/modules/holiday/halloween/jacqueen.dm index 2f7899e8e6..8cf95bcff8 100644 --- a/code/modules/holiday/halloween/jacqueen.dm +++ b/code/modules/holiday/halloween/jacqueen.dm @@ -511,7 +511,151 @@ . |= MOBILITY_MOVE mobility_flags = . +//Christmas car spawner +/mob/living/simple_animal/jacq/car_spawner + name = "Jacqueline cars terminal" + icon_state = "jacq_cars_spawner" + AIStatus = AI_OFF + anchored = TRUE + spawn_cars = TRUE + active = FALSE + +/mob/living/simple_animal/jacq/car_spawner/Destroy() + visible_message("The [src] gives out an error sound, \"Ey! Bugger off!\"") + fully_heal(FALSE) + return ..() + +/mob/living/simple_animal/jacq/car_spawner/death() + visible_message("The [src] gives out an error sound, \"Ey! Bugger off!\"") + fully_heal(FALSE) + +/mob/living/simple_animal/jacq/car_spawner/poof() + if(!active)//if disabled, don't poof + return + var/datum/reagents/R = new/datum/reagents(100)//Hey, just in case. + var/datum/effect_system/smoke_spread/chem/s = new() + R.add_reagent(/datum/reagent/fermi/secretcatchem, 10) + s.set_up(R, 0, loc) + s.start() + stopmove() + health = 25 + +/mob/living/simple_animal/jacq/car_spawner/spawn_cars(mob/living/carbon/C) + visible_message("[src] boots up and displays jacq's glowing smile, \"Hallo there user! Merry Christmas! What ken type o' craft ken Ah offer ye? I can magic up a vectorcraft in manual, automatic or customise it if yer feeling technical.\"") + jacqrunes("Hallo there user! What ken type o' craft ken Ah offer ye? I can magic up a vectorcraft in manual, automatic or customise it if yer feeling technical.", C) + + var/choices_reward = list("Manual", "Automatic", "Customise", "Are you a computer now Jacq?", "Nothing, thanks") + var/choice_reward = input(usr, "Merry Trick_or_Treat.exe initiated!", "Merry Trick_or_Treat.exe initiated!") in choices_reward + + switch(choice_reward) + if("Manual") + visible_message("The [src] makes a magical booping sound, \"Great choice! 'Ere's yer car.\"") + jacqrunes("Great choice! 'Ere's yer car.", C) + new /obj/vehicle/sealed/vectorcraft(loc) + if("Automatic") + visible_message("[src] makes a magical booping sound, \"'Ere's yer car. Not as fast as an automatic mind.\"") + jacqrunes("'Ere's yer car. Not as fast as an automatic mind.", C) + new /obj/vehicle/sealed/vectorcraft/auto(loc) + if("Are you a computer now Jacq?") + visible_message("[src] makes a frustrated error sound, \"Nae, are ye daft? Ah built these thingies tae magic up cars fer ye. Well, I got a speccy four eyes tae do it fer me, but me names on it like cause it was me idea.\"") + jacqrunes("Nae, are ye daft? Ah built these thingies tae magic up cars fer ye. Well, I got a speccy four eyes tae do it fer me, but me names on it like cause it was me idea.", C) + if("Customise") + visible_message("The [src] pings, \"Arright, Manual or Automatic?\"") + var/choices_transm = list("Manual", "Automatic") + var/choice_transm = input(usr, "Choose transmission", "Choose transmission") in choices_transm + var/points = 0 + var/obj/vehicle/sealed/vectorcraft/VC + switch(choice_transm) + if("Manual") + VC = new /obj/vehicle/sealed/vectorcraft(loc) + if("Automatic") + VC = new /obj/vehicle/sealed/vectorcraft/auto(loc) + points += 500 + + visible_message("The [src] pings, \"Maximum acceleration? (default [VC.max_acceleration], max 10)\"") + var/max_accl = text2num(input(usr, "Maximum acceleration? (default [VC.max_acceleration], max 10)", "[VC.max_acceleration]")) + max_accl = clamp(max_accl, 0, 10) + VC.max_acceleration = max_accl + VC.i_m_acell = max_accl + points += max_accl*10 + + /* This is internally used + visible_message("The [src] pings, \"Acceleration step? (default 0.3, max 1)\"") + var/max_accl_s = text2num(input(usr, "Acceleration step? (default 0.3, max 1)", "[VC.accel_step]")) + max_accl_s = clamp(max_accl_s, 0, 1) + VC.max_acceleration = max_accl_s + points += max_accl_s*100 + */ + + visible_message("The [src] pings, \"Acceleration? (default [VC.acceleration], max 2)\"") + var/accl = text2num(input(usr, "Acceleration? (default [VC.acceleration], max 2)", "[VC.acceleration]")) + accl = clamp(accl, 0, 2) + VC.acceleration = accl + VC.i_acell = accl + points += accl*100 + + visible_message("The [src] pings, \"Maximum deceleration? (default [VC.max_deceleration], max 15)\"") + var/deaccl = text2num(input(usr, "Max_deceleration? (default [VC.max_deceleration], max 15)", "[VC.max_deceleration]")) + deaccl = clamp(deaccl, 0, 15) + VC.max_deceleration = deaccl + VC.i_m_decell = deaccl + points += deaccl*10 + + visible_message("The [src] pings, \"Maximum velocity? (default [VC.max_velocity], max 200)\"") + var/m_velo = text2num(input(usr, "Maximum velocity? (default [VC.max_velocity], max 200)", "[VC.max_velocity]")) + m_velo = clamp(m_velo, 0, 200) + VC.max_velocity = m_velo + points += m_velo + + visible_message("The [src] pings, \"Boost power? (default [VC.boost_power], max 200)\"") + var/boost = text2num(input(usr, "Boost power? (default [VC.boost_power], max 200)", "[VC.boost_power]")) + boost = clamp(boost, 0, 200) + VC.boost_power = boost + VC.i_boost = boost + points += boost + + visible_message("The [src] pings, \"Health points? (default [VC.max_integrity], max 1000)\"") + var/health = text2num(input(usr, "Health points? (default [VC.max_integrity], max 1000)", "[VC.max_integrity]")) + health = clamp(health, 0, 500) + VC.max_integrity = health + points += health/2 + + visible_message("The [src] pings, \"Arright, 'ow do ye want it tae look?\"") + var/choices_icon = list("Racer", "Truck", "Cyber", "Ambulance", "Pod", "Clown") + var/choice_icon = input(usr, "Choose body", "Choose body") in choices_icon + switch(choice_icon) + if("Truck") + VC.icon_state = "truck" + + if("Cyber") + VC.icon_state = "cyber" + + if("Ambulance") + VC.icon_state = "ambutruck" + + if("Pod") + VC.icon_state = "engineering_pod" + + if("Clown") + VC.icon_state = "clowncar" + + visible_message("The [src] pings, \"Finally; what name are ye gonna give it?\"") + var/choice_name = input(usr, "Pick a name!", "") + choice_name += " (Points cost:[points])" + VC.name = choice_name + + visible_message("The [src] gives a final boop, \"There ye be, enjoy!\"") + + if("How do Automatics work?") + visible_message("The image of Jacq on the [src] smiles, \"Hold wasd to gain speed in a direction, c to enable/disable the clutch, 1 2 3 4 to change gears (help is gear 1, disarm is gear 2, grab is gear 3 and harm is gear 4) while holding a direction (make sure the clutch is enabled when you change gears, you should hear a sound when you've successfully changed gears), r to toggle handbrake, hold alt for brake and press shift for boost (the machine will beep when the boost is recharged)! If you hear an ebbing sound like \"brbrbrbrbr\" you need to gear down, the whining sound means you need to gear up. Hearing a pleasant \"whumwhumwhum\" is optimal gearage! It can be a lil slow to start, so make sure you're in the 1st gear, andusing a boost to get you started is a good idea. If you've got a good speed you'll likely never need to dip down to gear 1 again, and make sure to hold the acceleration pedal down while changing gears (hold a direction). 1st gear is for slow movement, and it's a good idea to mvoe to 2nd gear as quick as you can, you can coldstart a car from gear one by slowly moving, then using the boost to jump you up to gear 2 speeds. The upper gears are for unlimiting your top speed.\"") + jacqrunes("They're a bit tricky, aye. Basically;", C) + if("Nothing, thanks") + visible_message("The image of Jacq on the [src] shrugs, \"Suit yerself.\"") + jacqrunes("Suit yerself.", C) + + visible_message("The [src] beeps, \"Oh and look after the crafts, aye? They can get a wee bit... explosive if banged up a tad too much. They move slower damaged too like. Ye can repair 'em with the welders o'er there.\"") + jacqrunes("Oh and look after the crafts, aye? They can get a wee bit... explosive if banged up a tad too much. They move slower damaged too like. Ye can repair 'em with the welders o'er there. ", C) /obj/item/clothing/head/hardhat/pumpkinhead/jaqc name = "Jacq o' latern" diff --git a/code/modules/vehicles/vehicle_key.dm b/code/modules/vehicles/vehicle_key.dm index e34ad9253d..25dd40691c 100644 --- a/code/modules/vehicles/vehicle_key.dm +++ b/code/modules/vehicles/vehicle_key.dm @@ -13,3 +13,24 @@ desc = "A keyring with a small steel key, and a pink fob reading \"Pussy Wagon\"." icon_state = "keyjanitor" +//START VECTORCARKEYS +/obj/item/key/CMO + desc = "A keyring with a small steel key to the CMO\'s race hovercar." + +/obj/item/key/RD + desc = "A keyring with a small steel key to the RD\'s race hovercar." + +/obj/item/key/hop + desc = "A keyring with a small steel key to the HOP\'s race hovercar." + +/obj/item/key/hos + desc = "A keyring with a small steel key to the HOS\'s race hovercar." + +/obj/item/key/CE + desc = "A keyring with a small steel key to the CE\'s race hovercar." + +/obj/item/key/QM + desc = "A keyring with a small steel key to the QM\'s race hovercar." + +/obj/item/key/CAPT + desc = "A keyring with a small steel key to the Captain\'s race hovercar." diff --git a/config/maps.txt b/config/maps.txt index fdd211b27f..90fe7b0387 100644 --- a/config/maps.txt +++ b/config/maps.txt @@ -47,6 +47,10 @@ map spookystation minplayers 150 endmap +map festivestation + minplayers 150 +endmap + map multiz_debug endmap diff --git a/icons/mob/radial.dmi b/icons/mob/radial.dmi index 27b268eea0adbea27e56269db15cdb4cd885c8d6..9afc0e7df04e491b293d5e263c3f858a2ec69575 100644 GIT binary patch literal 18973 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%0DF9{ z@48p(lhR@k#>Vsuc*Bbkl>Vi)-3PXujB*&<8Q&9%qkTa(U^8M zQC%7|e(vA$5w+mWe6^mFmoS>w6MlW2XDbpptmh>rr4!AMiCPMDP=u+A<_*$IRHeG^ z{8N6ETBX)AJcn3`Z6&oo!)t4h&@oY@9hbN*fb})I-ndJQhae$SU?A{vnC4jiLgbxU z(;Gn+7JIs}ZLMN~wryXhEqw)5#??MTzIl9-J`M}H0+IHcUKK(tCAasjse9 zzNSdv@{Ip%@WGjN7Fbx4l#~?Cc}I9LWAe?)W6cR#dOBZ$l+B}gX{sm_!3<%9y1F{? z{E1bWUQ9$|BWMnKL;ye;HhGp1-JMc7?o1~|p->$t0nDG+GCdS1vmDCATKcKge&cAB z%hnS|9p&u?-bu`U3rd5u4bQXnNFxEdESeO7!li^!W$!EOYy+F{^PlRKVl&%>)lUv; zt`N*G5{d)}xkB>Zk!AehHpclMQh@dY`Go*htiLP-U_+Tj>1NU`TtrUN`1cWG%QN-hDd6TbCZ>l|=5`v6nvNeH2nb5h4}IZP!2NMp za%Q5U>@lpraM=3%9ZUYn#?$>SR+9D2P0oZZ4?aE8Xf|ICWSHK?LO}L~ybIU!kMEUl z&W^Lv-A<}!k zxvZQQ=<(!@!&{S?re8+m5(tEc9c_pnVc3MofuV6)LlkPJ6!;O+NoD!GHhW^*cYmlz zkq7C$#XIe{MT2qkOisH`;Q8*J&)?~&Dq1wi5xn{8<+d9PH1Rx-AIW*JmT+FrXfmsJ zy%6byu_Rq4M6;Y?^Ao`M%jo+;1C%;6j9XM63OXERTu%?USx{+Hf*pn!Q2AR zpKO`kRd_}5^93a(foHPc2OATY-&!rk3KusQdX%G8FDQtYBtgXyNAQ+A)FGsRouqn@#(joj(!Uf&~=DtwE(o_nQsALC&Rl#TM|xV6h}ktE#ml{7iShCP5fYX zJ1Kk-H6F7@*U_siI?h1xGwW_jR}3G}QPxTTM0lVq7VSi$`S+j?p%8ZSa{)kv-j9GM zl-P>C{RxuTDybUfbGW9_9orqFp-&$e|R`cRdJ!?IW;-u;6{q+Uo&BP7#z)D2=Kh?|%3=#Nu#m z5DYyL0VCt%{ zqM)gX)j}z(^)+0Q@GHnKM^zSV8Yln4@#|mg@R8TDwAwm44w5aefCyS1$J_7{9Aw!* z?_XoEjbO&pSNU$e4{6!;^O}|>RuV{3_4Jh!~ z+&r|$0v7wD$AUt`kO)8x$8KymY6hJd4-~^~XxLvqAgJLU3U5QB(J>XMgovNZp0P?6 z@P6T2Y2P3dk?dA!FeyOO;L?9NpN|NVz6{qjenb0sP}|_r__#nJ)C4Ea&Irv{XttI~ zjLmtlMVks~|NJJ61avRW`gh!=KmQt%EJ%+~W*-FFzOcwrgUk8O7h0>OsO6ix9zz2? zi(+qS;!SLQ%&twb*EC_U9uUTL_rCExdp<>Kn(%yi8dlpM6*;Xn=N$R5sv+HWCIm3w z8#a@XY!My_G~8ocPym#7;r7Vh{}c58%KLvGUl;I@?1E1(B&ld#gT31UEj2yW@5&ah F{s;7&cP{_{ literal 22566 zcmb4qWmp_dx9tFfLm)W82?0WI3GSKz0Rq7-5C{?^xDO5?XbjgF5*UK}U;%==%i!)d zz{qXh@B7X@=f{1Xdww+2T|M;F-qp2h?X_3E(|x8+N_3A11Okyh(NK8~0$~BCAUFXY z@OMwKP8VpX4=^zHQnB;2^>B3ea&&VAf&8)(zVx|93X-T!br|LO%ozr|G#1$#yx3W# zOeVw|B_tHavq!hsrx`97)EFn{-Cr@clCJO1^%a1!TwS2VGL!LgZP1_O7w7FWXN=~1 z*Oukxs{*QH_=^8rQV$YJh#{b z4iBNg(NhomY=ScN^gD8o)qb(5bad℘wa~r52O=N<;M!o)^gXPK+TU?DzBZkZ+5+ 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 AB>(^b diff --git a/icons/obj/halloween_items.dmi b/icons/obj/halloween_items.dmi index b4f11165dca01a87782c013d8cd5e9c748563c6c..a69550c6eb42419facd41e0edf650abb10d5322d 100644 GIT binary patch literal 12351 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 DXSE`i diff --git a/icons/obj/sofaclean.dmi b/icons/obj/sofaclean.dmi new file mode 100644 index 0000000000000000000000000000000000000000..861499c0324390e43bef4ec76c729613b5e75196 GIT binary patch literal 3376 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%0DR2?;BhuXB9Lbl`%6|l%(=56YsucxCJ zh>c%m^(}Gr%kqeg6@AH(qyaJW6xpW=?ZLDsKv-fiDivfP`Li4~z^3GtWcW*<-!J1A zaG_^Q+rETu!6c=`94(z0`%kNdkI|I_&AGVddB;VqWG^Oux{Jf_ASwLc`l>I0Y&!}1 z9u67JdG#Tu;d;MUFU%ySU6gKGd|M{=z3<5`6t!e2w${z<=inSX{z&>FhqYlZi~t+c zgfdBYU``LU1pBYzW$oQ>#-^v^^I8Q8>{}mp!YIePtr$0>0}pVf725v(pNkzAIG&Q) zd?L2xTTj;fk4FrXc8X@nLhG;-W8=A%K*X4g<(fMPm>f0W!w3!Qt%a89G{0!x$R zBDnrmOs7O<&mla$;hw}G5>v7si_|+QEyOkG`LX6#$-Za5St&Y7RbsCVh~OT5ZK2BD zafy-FkEsV;tUsC)#^{eIE=k>1hy6bE=ekSd3U_-gjG3E|kdLAP^3u{ZV^HWU-9jt* z%!ixCVp5U2P}_Q8cL?X0%+VouGx_r^KCffR32J1=-My3qHN(0(C>K{(Jk@DcwgvV= zRB5*9@)c;wb>I3)k(K9?7XQ3!yWEfve7zI)nm}ma{*^mf-^?4c&r#YtI9#wfJv54J z+n5QNB!*58gtY;+qE;UlFq9*<&>Dz9;hxj#%~+MTYxhqt92_Y;?-{;4P+QtuXrj35 zGvl<{%Kk!_i__1_Us5IRcuGs}Ry};`}4;>tGj+)!~FpDMy zQdExI1I2`m5p+M-C*HON6xA+OfjQE)aet4qu0A_p?;YXX87vX z@828rfR5wmO9a(M|A0!$-kNTBH}bs|N*+G+c{Ajgl?YD(^H!0+u!cTkasiFiWq|)x zp9ZLM?wbV=b!1|~K-8LLX=+f)*%1-?2tj|Y;4~MPTN~qVi{F{@J@!w00+l(*cPGzWmviF(~YCnuPB_uZsqTgtiS^5 zwRSu@CZgOO+_(dd}&;lCQ@H z(=Y^NR-cgJy<5`RK4j#=6zflDUHzCBL$>Hqgndg9S^I36pPkFb_l9BD1~WnCxE88S z9Wscu*8)&VSwBTA)H~C0&6b?NL!r=J-l3p66Jq&Y;dK6N8*4-1hxO-eva2L4A~TXWFwM$t-AZOYy8FXO?5}!KVxDbW;g# zDKaUAqeVFMrKt@FDCjyR3csa&(;$0&vjB9**qFy#XVMEoY)kQ52C}b{2PP%mOQk;*+P$yjnp?D%sJlO7|uD{75_|+>WzOvOQ>L~A*PvH21cxG z#b~$m{8)@DYoY7I&ymGO#xpSxv3%aI0dKN6b@JuOKw=<^c;Xr`cMX>%a_T$BLWQiN z0Z#OA|B6lL97FzgE(rBdtUFwGj?+)Sq+cfKT?Rjh`1A5`rhQNCDd;Zt;T>tC;{Qu8=?en?c_x(A&KlkqI{eHb)@0;1XC9Zi( z@@df%6$<-z$~;qJHjeR^NUdY7PzYsHqO`Q0-syzA)G?HyP1hrJvQbQwgsD#V~muip)ko_Ev@ntRV3MyuxJn05xwro0?t|I<<|GKie32vKLziLZ;2Oj1>6VX8pZp%pUwJIB_UX4E#tcH&F(vZdh<>$*U)l0 zrScX+UDTf*OsQY+=~Vdj?8qrgRn5mT)C$w4#Po9pZn`-r0N6MBOo@7>)KbUh%Z=Qa zT{j=k&e?dqLUU@4Ek|AA=&MrmE8SjITcXvHZpA%yOd!Q41|=Rbxu=G|O5Bs(=t{Yq zb0onv@y^*D!>*uOWS)j$@F_fCt&yC$ccf>#|6YX0DIR;+*FSdp*M;+qwsQ)oCZ90t zsrrHj{j|EwLr}mQcfJh0!m0uF9K1hY_%rS{#cjm`F5X`^%drotQsoVPQ@mu=?D<(M zRU@y4s{OvYi{NpqtwOPL@_nOZB)I zJ6FI;{L-zy9rj*U`H8^hhz^j@tNpgiz+AhrchrDz0XPJr7RQxYz|Vckv8}-q{7X1) zZ+uEh9#$c%e1atIe9-((mAR0_m6O!-XVe?mFF1hD9CK;$_b&LA6Bd5XGBiNF*rw36 zIm|nvGHfQ4QZ2vg#cvUycE&)c4byTP`MO5*gT#+(WFj_>OYt+}^nVRcxW z_Z&G?RH#MsbYaSna6IiDM_cr38-Hk5(OV{{>u(~>*2UMeu+K53m)@|GJMR>{Z#38K z;0&_1wBl=u(c5x;&@KH&AI==zq~`2?3? zrm7j0uECZunCGYS1AVzkP0J&+{< z~3bd-gUmcv}#jD0|xJV)Th z;3gkZ^|Mg=Sv$#)UrO~l4FH?;l}*aG{BE_eId5bS7qcngF?pFL^>X#XHn}ytoYGxa zEx3Q0qk3R6Kg&NDV-Bp?)(>qk0qz1o_l7#hcx`*7D(!Yo<7UIOMjAWh)dM|;diR%u z0z;+hZ3Ab^s$P*yXXWTm_r8L}(?zatB})u^;PM|n1WG^_BAItX^;->sByL`-lR}DB zUTy$?9g7lsG6?FO`vz>ia!$fC@VQu}w%bb77LoDS51R*j4vUD?UYI+5TIA31Xgx|~ z`#;j{r~eJ%9e=jmiV&m^a2u#O)3dht;EUz}yM?=MmU{tMJZ2t@0hnWBWgLG?O3-2? zz)6s(B{I7`C>wOL)l5eXnigiBr|jRrx3T3xC~JzEn`@*9%BDFaq~Z&oT+gEMoEgB( zJLIgloN#M@j^2Yi|KCDtYnZvns~DJ}BjFfvi*VGpwkWZK`z3+y!xU%defL>o<|@#7 zHPV!ZjgDL_G2Z#l%&)|ETI8bmNCCxo7F$z1xzZd0`Ryn6r|FS?RJ7;&w&h=?0<%|3 zfQmbx5b-A?OpGdy(V5*S(G@^_DoyxWEiXYl(5_& zSdgX*d_8#k19$7|2A=#-N6X0*7Wt~~$A0zBU)ZcmZGxrhDs^aqusAO~3i3nt=4}YTTFHUMF+ax5rDMm2o4UP0m8bbBF>}9cPyo*M zbpcvkC8W9*tM0xbBjNdFQ{={q+_$2}uh+^O!;FxE?`bs%g1c9uWWqFf8FoS_{YGET z2RVAXt%eE}UjGOoI(+Hm%aTEJ^n0H-pE@pcL{?A`FNx8yKz#2MP=%v1PLVKSU0QCH zcx^cMQbWYrx$Fiw+&*NH??4fKHOJh{R*!fg__4Xc^eK=S0m0wL)B&jFJJg8b?|O}T zOPO8-3xV4SQuvDeMn@Gij|t&z;R^-(q2uAeZh48B_b+DxDNemKT#emADyiOi&}}ng zI^o&h{u2}9falso(1;qMg1Dx&i|ueV{#NP36};rfB%($}8e#CLqs|bm;#ZP#yM9yq zy91KPN40XF9TV%!4$vuF;KZF@m0MjX9U+?G@P3X3q-magM6#l{hevF1aPZBC>?{5r z?hEN&sSz&m4A&g>ljj>;>bqyG{6LwvBRBNxj4G!afIB3^6bCsPFdnSUERw>GUh(mvVATdW0~!L2Nk;8PVo5$F}xavCeOsB;)h8$u$8B zS$o#e_=f|?h+ud@&$YAuggL`u+*gcct)JRCSj6K;lYZ(?54^_JmIG>eDuLZ5N0e9J zYX!Lhp7sn4Hru_M&;kPoYE?hhKV0UVyN94wGFa30>QfzcOvZ4e;o?UgyfuH975N6I zu`#56RFSSUKR@65`?vgY5J-(Htjc!kjkvs#;W+?bz}sovC&Nw~RQDza)kJU>7_#Pe zgSwTlx8qBW6s3u$qt-lG29C{;;toIl4d|4Yr;6djGu6UrD+Rf!j3F5mQmA8(PAeV9 z>DQ7tRn8-}dP8jUO(Z^->usZnPOUiYXpRbC9kEh>ao`=U_7^4Y4jFpVO%FDU4b;t$ zZ`uEBmK|0oOP@1Dk7s8*iME92=O|x_umf4x(zXnQs7S(iY5E7!GYORk%_ad>t#A3R zD(24zs-p9!mWwf|9xCkD3n$)l?}P=f9`-86wR0joHISuDgv9Kj+b`f9B{!P%uD+vt zQMq^YaKS6d9=f!MUXos4*ej2Djq_&)$1dBeiy}mWCNzI3Upc$Sg&ozwIr=Yqpr^@n zHw9w{TkN!}UN_&Z6?_5#7L3)r5B7Ryw4g8D1dp?6tpieNnC%|t3>%QrmdhAv0DMjH zM#A1F-+wZc<@Mn&v#gn}SDDoMH+=2AFQ2A9MlQK{ato_ux>>>ATduJ^JN)b&81j|e zL?$`l-VFU1FLK_U5|W6Cs3448b~zn*(jkF2SdVmt4pJO@x6T1SAH>^Uz%&}RgfI2` zwZ3c@b%MY?A-cdL^Mys$5AbMCf$A;1OqWc>k&d5)^K3Cx{q^&8V+{1%d7T_xf}>%4 zw@kjw+sApI7G=!1tJw)RkvFX1PWV=n<~T6Y)(V?`Fh+xe5hzUO#&y~~zSDW(L7dBx zj~Png>A(dC=~@88nESppb%}c!(f$yhVICkp*()<@DKELe(g9B6O{y4Q6dyU)Tl*K5 zmxV42wU|~w7x{-*^h!1a=;Xi>7(Yb-x>#OVzJPT@|Nf|(dmd+{jKL}0ym!PAp^DLP z?M0C=dO{FAUD5FNZtBFvj15-9e1hpA;aWqXEfKnH9d*@ew|m&U7?LI^WL0Q)mA#K@2Hwz7q^F_*7qi{ zdjD-8?)X&nm(%?%Pk{gq?>Lk53`%p}^+e==q83A}X)XIG^iDn^v3yf_m>*Gul;i!lRI zNok6M^5|(*iJATCp5DRmQx&_voxYjKEMWjoy}`)AzjuVSMx~v(n9xvZm-&yv=_5=H zzS~ogzsEJQh|~~Dzj4}S%}Ut;8P~rI>91O3kprM-;iEYf zfN9s3+0u9Ye>P2!{)lHK_Xw5=vz-cx868ZV?Ipv@Z=v8iOFx#6sWQS|FbyO!F(`Ug ztL~W{f0H@S8M9-^1+tiGTphc1xd!rona zoY=;ZmGortI)f0FSp=*%lue7ybm*irS8~4R*F2i$))9f(6nrp-k_9Hx!7s|*7qJ_P zdeglqk#iBe-=hBmc=mrmI6y??KS6acl@EAbw+;G{R0Aq}l0&FQJJGFxAuEsFd!D*i!-qmA>rq<|b z2NQbimEG%tZ%dUmFKwtC8^z%ZFUGdfFEl=xm6DXKv3yup`%4WG5@9}<$2$+>HLkXc zO}ZpygcUQ}_1L%rl4EwGxyKTY{j7pHr#S%o$`i2TL2VfIbz0=U?zopZ4!Rg%lr=c< zY0Bi&Vcuv;a0yI?-J!?)*erQmHOVG;sn$1SB_+Zh`6D1)1MB5@Off}UvTuIKx3r0o zHI~WZ^w%nSLc8*+`6D!sNf%{~`P>IpV&p5aCoe*v>sR>wgh(IzLadmlyq#(gd2H(< z!WKI#-1oBZOqfF@dO9Zqt4VV4vW7(AtS6pC7SK+#zMe3{(p>hyOlN8xFGU2(1o){r z*BWsb#vGMPgRAg)$G7q#1ygc8Dpde0MdHI;c%zNPW4Fi8%KV^?BZ_pVac2?^8!S#y z?3AAzR`0e-D4JnbZARKl^`V}S>Pt_DoBDu;>W#l*8m`?)I0ax*87NgT?W9Xse>H`7 zW0`#{G7B}h6GNzkcB;`<3xN%4R;wm&LuD9o;Lz63Fm2_(giv%NE>=AjtIB2Z9h}i0 z8Fa?e{%sH9J$vWV4}NT5WkdZO4X34!8XmhaB}0LnCgKLywDQIN8q~9%ZxR>^L*QRi zI150@GWG-j&Xm8W*o@T074VO`roxY6!c+}{^A}aY<;l5U7%4BmjAuFJGCtu|Fc)RRRs`-BYYD28L3wM_#8JhOcQ8Lfxk@-={(zm1N z$#EgRYYpT_M7J+}E?73#jvVlWMQRYRlTHTAy#QTiEmC|%&fuoSTj_ACDtt4wapT9k zTrn$b>|8~D{AI=U7!Z^g>6PzM5mR-crEI9@n#W!V&*Cvfsla&-s#H=c>lZi~#A}7O z-UjDp4x1iA8f`_5V_NA<-1166x+awcKj`En_0FZ|Z7}RrvmMxCW0)L$ep&;V3z9tr zl3Xtje8C{QpZWQeRS5U%Di%p^@Oy<3KP2N!o~ys=aW$R zxhBWUEBOQZT^}Ql9Cmo)fT+Iso_nF0*Fi6RJ}dKxj3=I~)I=lrzx^Xe23){<7^Rd* zKQEK`YYU>kj7RW98>5*3v(06=gkK#{D{WtD@=8SH$nq_ttJWc{Re>hd+U1)=Z@2{^ z;`6DDkh)E#lZ&JS*zK#L*XH+k6sGrPfw>;3qbvjz{osqme4ooqwN>`^$ef-K40I$o zbYBw*=&+SvBn#F#&p;LnW0S%Fgf#8G+f3yOqEH@`UX7~&nIVgwh=Yn_G=SnaWR0&@ zRlrziDGWDNuZgeD$kN7s4*!6RdVu6%F}42lFV|8lArIW3Z!Y-|W}ygqlm*iz*>dxe>_4Bu(j@G4eBj%z;U-A7rpqR+Wgf zk(rcAK#HgIf@bk1{octBcVE%I$@JzV3?W>b!WB=uHb0Yw&(aSpjen1X^73Hzc4UrI zg^qMd0U`#3^Z|T5x4dml>?m2aK3V_j?^(Y_TMo}|-gY_Q;d6deI%}E4g=?c_maX2) zKUM-4o-k#qcml(6{?h9*ucJ!}^*b?dbuQ2TF7YeZtRdrj*K;xdo}%+~u1zN>u{o0N z%k3LcPi8!nY}n^{mVP|?0)nhj{FMUPF??BC?peAf}02u}8W!l)A{B@H0j%zOg$ zW`CqcyKbVzpJFt!y*3hxYn^87mTMkA=p51a#(`aY!^tNp?pA=n>6k6TZkIDfe z3nO@LY4<*N2md}98uKy92aWFq>%hw}a2i9H6FYW2wGrFml?-bJR zRV`r!0W2g#^+jbMLRx@i8(BH@jXQ>0I%SJr>ldNAnHeoF4M3b0Lf2;H)S$-4xsBq1 z04zIhnRkL-G^wXT32EVV=>n0uBGUVFMSMl7$~Rt?k=MSSGl21a>Bv3Qz0ez-jugm8 ztRy1J!bbq%so$2eIunqUo-4a?#gW@otDcpl1Eug(o`6NZ3R$DOhRG8Hab_-6+s+M# zPo`hNO_KK4_L${2b10hm=~g}vRUrCUrGmna%3yIzlaL1g$cwb!=sIX$*`%ux@(nw# z;_!zMaVLMCGRQ(nZ!GwlD3P~O^boqDc`-Lc{H{N*i9WwzqM-hSz^3Iup~&cymDAk2 zJzR^9dgE})-U{W}iwMuU3Q+IbJo`d``o3~BXAqJp^x?iC*U@9K)EYm)9!hlOVFXWE zC2QS=)Ya(;`mwKd=0=rvDxMW~`zg~w_TGH$dNrbf|CvC&q1C5rw8-LZZYN%F%aKBQC&Iqe7d^IN zQDX6Z{N^vn55nRAEPS1Ni1bb88ExiK40)N(LaM;>WZ0%BYwHzd)j;NkJzwfl5!zAm4#zddTlao-f59e9MJ-7SsWOm0eoS+`-PCax7dGgoo4|0r-1qFtULu*~0gHB81Z+ALllwy~erpOAST zH+`{N{>%j|~%^N;cO+hI2m9%{F?SjXRXf#6{8r$oUx zK$aoeUGbV|o@MJfnwMjH>$6xN>|`uRy>&NC(~#=pHo0F)2Xo zx7>M`T|#v@;aA?L4}7lr26LRkImNp-=`d*)l5_R1`U5?8nK54Ls5{rG>s`=1?B_zP zR-)Q#vCe{%6u>W)s5Q8XEvV*=R?{h&u7bUCRxZ(>npc>&Z{DxGY5bY>vZ0b6t&!nF zT`zuo`)KRk9khv$skf1>1MxsZDuOHC8mhLb_lW0OwFG+m*~pDNeEZsIluUNnbsBU< z?y^ff>p)nmJ_p-~T`2ND-n+Y)Cg)gWOlVB!gETU-3AVBaw|kRE;U9k>um}t+xJU!x%~b$$U2VY@$SpWBI;lcK9%`_|D9un?&B7CSdr4~ zXHi{kG5!xAYm)WwuACI#)UEg{5C#Xc?L?J1Ti=_7RB-z%V(=?LxKL3NnW%l^iI68#E1_&TD`^I>EDqj^bduAj(8Ub+;Ca}(% zSz{4>k%Q+=Mb$lmgxZzhn)3c%|r))(4au2_;N2jY5i~mv9fdqCT1oFaGiwAmI>7PJo2zSaOf1tExQpeTArV}S90vx1r)1g^zfwA}Xng0Vk#gCsGVYD(ejdnl zt4g6d6!r#2rdw%*;Hr7KPcXjz#>Abg@RoxTTGt9A`9+a}T=73X5_Igh zyy&lQd}ilh`Q{*A?%;=E^T+?h{v!LgZae!AjPTt3UkJdz+dAgoib41oa!ST|2)C6H zdH!Gty6Q56zFBU*jM>}+u-=t%khp+PU-&#OAF@4!sLdVshYM3Bc&5P2meA7fTauZnV6Scq&ZL(ifmuUdKqeQU>|6j_IZLtsUFXNJ=&= zjTiZ>9PSCf>j!D0tsT3uoap2DfPajD9pe1Mk$C#Xi&tu1)Lz3SOVb}_F}W*;85L{|nmld4cKIY--)LEj_pYZE8M-{-hmwe0k-NY7 z%ocY|u70U>%B-fF{!~x{NbtlGXtQ@&8y#jYhZ*(&4L#`J9pAQg+T#GKL*n6x9nj7F0cuOndgG{hvJ_x7;O6UAlDiVmhq^aAwjBJxMM+n%tq(zg zpFRg{kiBQu?fA~wT=U<59ulO6ePq2o8!yZwe4AX!5Y#vg3tBAigH&>$pE@~tUBMx< ztAdCt0Ir;(Md)cp+EgXsv$Om`2J;UBg*k&m@~w2#*vfB`2a{Zg4)OQszDi6yVvFsB zwe06LxM>^T-?Xm8-*F)jr#v3^&=&h9UShFTHb!U4eHfOx9h`&GVmB%y?)hB1zf?P< zw*9lO`S0--QRnL5d;f9go-k1Z?30kN{r9NgM3r>+YY2}@MHGs5=Nh|mz3kd2`k)ZZ zb+e28c)G6(bWsigDV(deQn&SE)>qeg>xEsXFyO=mS@WwNKq&ikc{oSFDK(dq>>4(16OkT((ZXNNmr(I;hP8Qs-<`9T( zyN;)^$bXEwZ zZ|CO@>VCNRI@*%`a{3KJR8{ubkxJUf7)EcuS*FZN^UHk&R^rn{+3-rKHa+u4aZ|bX zeHCb{g7s4{m%^m<^Agap?k`x|!SCS6kPibeNNhY{p{VAzy>KPeC4NZO8>XebP!XJT zcp!d{YFw7b?K>UdShJta@y0a1>`8+fnl&*f2$@?l1-s3UROLs!U$1cpv)7vyRULyo zUye#!kTVF=H{nXigL4(u@h-5%0q6x{*n@kFKtz#^)azP5%#EJB2RriJ+(AMcd*KU| zKnL((gu^YPIqWaJ`}^Yf5gAx6$EFNm^ZYH`K%d8eUvjT6qlM--Z}-m!f9!Aj9A%Op zvME?|xTNa3xi9PeW{nu&ND6+m?=8dFW}3CJz^u%S6&gma`2`-lY7o~wkMHq;lSUvw zBtz~;CbJ2nJ<6YOE`_4mRignPfuyFv`9l*E?Iy<|)D7E~q`R6L8PadTWeq(53{f&4 zg3C_kZ|>w+hX%YJrD1Dgt(C2Gi=!iQd?$NRWOs-QiX+Nwtey{1 zc67m7P0-Bm@!F9P8yg*pS^IUweOThTVe=Zn;b!Gk{s&!m$782NSB8P-f7`_jm#0-8 z)sFP%mEj#)>eP>sKl|9TL`goL@0d1OUwlRu_3GzJZN&?N!%d~@E7N(ad9<|yD~U~& zD0*p0NViMesyS}#%8tJ~BWZ|wm=cfnAP>=mQ||<)9xBHao!qVnbS;2N**E5wBk_tA!V*?;XmVuy%RjPEpOu zS1p<}t~r>3HBG4yPw`DR@P(RaO_(UPyJxtjxi6^<+~0kbJ3I=$BH{kSF$jvX6klM~ zFePiH56qcZ_P062+_L}sLC*X^%vU^Dyx7~$hK)vL4P;^gg; z?1O`($hIu|E3-GHmL8TxA370={PV?MF+k1~I zGI1H*rHoSdI;WUhIxZ#-@rk>FDzbEAE(F;Zj=E=5`q^@ugVVZ_(&=IAMpMZpp-i3X zprN`LY)@fHI>6EGs3-~Zt5o?p)VBF#OxN3^(Z{V)4^W!%-cw&81cWH;w^UDirfMH* z)Up3uT|@~7&QWAZ^vimz znrD|=NYdNw6y-g4Q0kk-C1DRZyv#At*5@+r(ymbvf;_`~_3KVryzF9k>1p!WatLbt z*vMrRFrGDX*nY8_aZD2pL8+`xa}rfT+mqLfvdcXVrJdoJqsF;$HsG`k$-0$A4g(tvNQ;wv~zAWCd= zxobjrAp9X-kl9|Y(Et7UR=pA11!x&`Gw~CDLFSJ1`GV3!jvvBxagL5K?;e6afG5s} z2tiFsUe)59AAox095s>Hci2e?nM6bm7MbtZ`$rJTP!R&bKS!?8e@8(7_+iLMPd@YG zUH0*nqMLyJF#)~-?#yW11U5}2GY=S@9X0|U_JuE2z@IdXn+jKp zvU;|*(`EOqlMbJJ7~zf_vAa|)NhG{g0{YM~tv7t`h-RBU7Ny zZ;uJ)bUXTQgx9n#O0sgzBPX}AB^s6woIJT+RUVQ2@?}X_F=A9tiMBsas6-5n z4yOD`(~N{L$>3UHCFI2%Ht(C&r=8zntryAt6|4K11~M%zTj9o;QYwV==}SZd_KSLV zieP6WwrCvkazxv{7bVvgYutkzQ#xZffqE`B7-!L)qI7{mSfB4(nNk*2k}0@hg}r)L z`1cNLMmIkH34W)CILoA;Ro$QUGxrJ;8t*y5&#pqi`PDZhIUgUByN1JNR^NDzEGVxS z`$S!l?=V@AcW32X>=Hh6k!vpjGlO`^0EO*Eha8W3SFPXpxJ#YELQB(Stg7B!MlsE| z&4mc;7wvj8zo(o6=P0147nwyi4*V%Sx|VQ!u417`;;r!t*YhSj@4Wj}h6!{W3b+&J zVxiPEf%<;j;k=pgP*vI;wJIuOt`&kR>ZY%woR2}1N=K^Z;_PQ^e2V}TcYwZn)DG0^ zBzd&MJKfJ=jB&tz5q98@db=f^#5A$0lX?AtW=x)% zWvE~+aQ>wxUw}m52EHF{M|!vriYYS`D=`hRm%8(M)x4Yj3G*UJVM$TrPqYHQ>F_e= zBY0gc5tSQ0_�={jE00)F%L(LktBYT0shmA|YwyW)0JyHmKX?1t%wOJT&WDlM5qO99X68NxJW}B~ jI|Ti&;?#fl>1fV=-0C=2*jJ*njKoAD&+o$-@KIBKzZ4*wy75WNt;F>##QEnG~{S+w!NjJsJ z)VQ_x(8G6uHYu8y7Z}aqNN&%gB`_{$a!K+d85q}w)S?L()iciPur6v9xiJ?7<3w&M zah4B%o5Lh(d6U1zUL;!jd9Ts-9=;3o1_{zQ??4-T`~Uz6KS@MERCt{2oNH_p*A>Tq zv+MN(JHTKQs&q-4RBhU{QYuWFNQtTi+}K_tj4|K@6B-`16@;QHq7tMbgi@7~q?OvL zjqH|3Tv9^ZBo?ko1GtQuR7#MjlB%sxl#mY$ABF{n z(rRb#%z4~RVHYw|c%ED#9TN>6t$SC}pN#fv3M@9^NMkZ3%*GKp_y~7IKp>!Js-WNRpY)vgE$*eGpYHvclyAnV9^?Dsw#4JhUVy_R z#T+^TU-cTF=FO$?>%)Ce*<8x7nxOHNN$lNV9}eO!C=dwfvMf_xUXH4&wgloCApV@+ z?*||p4igH6Y-#;|fBYFmNgk4J%NIHTRPTo6tBZK~s20Dc>pCru7W3ksF^X@6p1&C7 zO`A%2Xj_z)ng~s;P_?d%-!+dg7=<0NhWC~j1{peG(3oW>#Q<|7SV2`)WLX9v6bi*F zZdaa)bd`5ozK}h3&rOPN^8z3hMOe6Y9so59qI4gN0Pyk&!!UI*+Ft>8dx;z1XKP0Q z_|{v-{be2S_g$sbuCJP;L((irQ54CE9}S1Yj>^+DzT5JJ>{}LDtJm`27%f0>S)wd% z=#&xr*w$heG@D3I zts6BSdc-InzoK*5m}OG_q0EOE{Dq+(2hIbBx?oq=2(m15lQ0V!eeAxhbM7tUIZvfT zc|&s5Y-d4YNQ-Zwyq$Y6-xJTK@^AvT;|62=E%sArgCyGJ>^dn7K$4(1N&*SqZHSsFl0=|n&?y9Ch) zLZEp@Vy+Z6VY>H`#FMIsic9k$^t(G5p{GoJ2=P%AC3NqGN7;d^-8_|l*IL`K2|J@ zP+Fx?QfWO`N!J0RA-MH>^C`R2!|;$1h)*7ma_()7;Ij#Xrd_Lx5JfgnU2n> z@vuU})2sB2TaDZEKVM4OcVIyiXtIVTYZR~c(qIt}1d5k>s6P>=FTAvK}(ZPRE?m$4LsnZYHcYKH*^>r zW6_TJg!?|Vr1f~gTj{~$g?V2uW}x>b{+(s)*a?2%$f7qSo=KreWfBMks;!vYl{9?&JW->A2AU6!k%q5|d$ zStS})m=2F@X*=6MMP*568?xMu*$3sK4gj?)b(XH4$FtEee+%op_wgv-yrUG50P8SN zS!H~G`kxYtsv`WkOQUXZgxc+seZPS1YN)xlI8l7MJhGt`F~FP$1gj-SJTl?@)5eSR z2Y(UJE9RHb(1vaH3ox;ay$0}HbGca!2CN~#dEJ%=H3U)HuBN{>D~wA8}ictg*?Dr6!HLbo(|lSZ~n`>RR?f-CI&b# zK&s%>?LMi;0pz+Tx-H*~Ty}u0T#$LUiQQpH0_o09m@3?sFLZ!J2S`1zLzFpng&7SX zDlZskI(tX>MyGqS=Bj+N4v_l}kd+HE5BW^PEL%mLz)ks1JAnBh!Putpv_{BifYiNK znYMb0iccjV%|-cw=S+2gtf!%(5wdjwGZlp0kROPhs0is#%mU{fV9I%b9cC*Jm~Htp j)d31;M>|BWJHY<{`pB2qO+2XA00000NkvXXu0mjfT6NV& literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/alleywaybricks.dmi b/modular_citadel/code/modules/festive/alleywaybricks.dmi new file mode 100644 index 0000000000000000000000000000000000000000..aa82a71fad5db5e314d40bfd00d9c6cffda44a90 GIT binary patch literal 753 zcmV005u_0{{R3dEt5<0000IP)t-sz`(#S zFE2qsK~`2)T3TAbz`z%LN+AFM00DGTPE!Ct=GbNc006OiR9JLGWpiV4X>fFDZ*Bkp zc$|&Xu?oW=5XSLYpF)z^Qlo2^l29@kq7Ts~?tbe(DE|lkN%h)LC8_pJ=sBDU}HO-qn=bz~SqXA<8 zqhtVj>PAZfdg?~W1L(0pPyLPo?v(dIf&x-RND?7UE09z-8ZZVhd!Q}G?5glTYsE12 z-%s@c=?dh&<*]Nklf2OTUD8kfuf~_`6 zJyJe0N?>B1*08_2h9b-l;O#m}%QW?vrAJRyBQq@0C5 znCFc^Lh^oiRv@nQ!CV<&K>EIYLi-w8uQKJR448fA@LfXZP)?wupdV1l=?4-jYy2jm zj)HzbC8r-qXkSC;aMPJNwEpDj?H;;n@B}DV%eVy9M-#>|m(@p$3@1dnN@Fgok8-t+ zxvai zM~Wuy2P6qYdq43XOd@r{HeXDkz284zTfw-7_Wl3~&1-1B${mO8{Q(j>ht8pMh{!o~ j4u69~?I+V3YPWO$D>HD&7Mp~300000NkvXXu0mjffZ$+( literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/bigtree.dmi b/modular_citadel/code/modules/festive/bigtree.dmi new file mode 100644 index 0000000000000000000000000000000000000000..7d8fdfff6c56eb732f476dfe4193d92157772b3d GIT binary patch literal 235597 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%0AQI1{e-+ye7C!2`(5k{bfM?=Mtl+CfaU30 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ɒB6YyD@sl?x~g{fjG_X*tw^R&ruP>4 zB{y>B)ITv2+YrCVO>>NnFzW9b@g;kT?YyatyL^5$wt!eigi~YT@biDCc@Z-o6y9n% z5D<@lSdh7}9MNF@JtkDjVNu*TpSDZ!F`Y-9W`=S!5usN|a0hV!f`zD?uYi?|2h1v_ zQ1bTJDu@~w{BHqnzG0M?+3d2-ZlBNuc*&MsC(TY=y@@jkX#yeP@%MaVjLGZ?qA7^i z`+46t6o0Jeg&(BMSiM;%(k#4!Zu1*vJSoZDu8UyRHxBJ6SpESs6Q;|S z(y#8B;lO`~UvW^_8SU$Oz@KeRT3>^rGLa5B;ODJn;NA^JvOi+J;qF@Y-ddHg1Ou8E zP@|{3Fe-9%$pLug3ce2jzKlh@J;>mtPcBkUP8sY#wevFIZ0S`l0pP_CQD`5f*RO=f z1(sa?3vHu)`wvhPV&Ek}Ul_`}NEGIIqhV!c_DLG(jI(5^`=|_Z)74=U z|3m+#{c@L`SoWpxHFL6ekq#W2BL90e6jdX1;iQTAp+Rv_oAlBm_b`I?uo zDvL09a4lu2jpg8Jw+!C{YJqzF2&H`cWik}y% zVcl?9184ozd;Z7Cl)cN>J{XrReP5+)ps&Xj8XeTin>>G!+^}%JMV&%dT%DcHSkJaP zK;Ukru~zX#5}cZ3^3#A;s`+UDMTnUHPM-UF9g@|VD0X&;o9uTgh^@T41ddl7fNBr{ zbHg9djlRJR@T)jFt5^XI0(Zv#2s)YG7UJcO*B7#&Q~*9zm`pG1rCn7-2afrcyqwUl{F1nwKJu- zsI`^U{pIl{#>~pq9v<1bA6!JyFuArf9|k_;xTbO}6B#9vKRlE;eM<|%KW~xy?k{y+ z*diOhvyEW&SwO%;kY>Tn7bjcKqG2?8DVNnwcFiWkYtDB=*N!$R%*g~nDBCwULG*5( z7NZMtf8oRXJ5b8Uf4JA5zJ=yJge$iz%%vAp?8*IFa)79?g<`&Hxl#2q`C~E(n00k9 z%!wU{zbE#Ao1#}bYS=LPQ)uzDMzt|ncu7MFAM(?enb_nX;z+Q;p>4(S5mj%GHkII0 zU|*IM>{HHo zZJH$>)RqGfNDO6YW&A*c;LzW5gGRsH=L=NUv-jU7E{zLLRnG;k9^+g5{&jE7hBFF! z0FR{El&r(3|nveQX0qCCQ7Ru zzyI`ZcImu#_R(fjc(!Ja)@D%fLg^lSFK}M*0vSOv=`z+uMq8j@q;}}|d+qkObyA0m zsDBa2D!ch>WJm*MYnYwdtobp#`3jO1;MhWFA=K|oje_28;<(9b;EhE!(8L4X zr?8=CNM?C*8fr95_aD%tfLwLs@_unt!Hz6TWcXbPEbTv_#D;qT6E^Zd7|vQ~_Yb)~ zfGcJPGKy`CL1Af90MI)QmmFO8*#woFl*Sb?K&a~OK!R)gasTPwr~Xz4J6QsLkhVss z{CC4fKu}QpZ7_z;4j^$)ev?#>IJf^5aqiG{C?pO)o=Zu(iXJLbL>5EU8^4>M+h~V= z+E;WHLnJHXhJm)PevY8;nDT*B1k)= z@PP?1B1TB(_*e|XeHfU-uIY4KNS~6W zD<1tQDCmT;iqh$2>Jwhl%LV?Uc0&W^QXU|LY6htLXNI!vU$d^D7UMRd27d8NAl-N` zwSVK|29&u+Zyu7N@pC8@6SB3n_D>GLJ=I;r{r%-hpWgtwm>bBT0ehqXqL z_7sj%Du2d@zlCquW{trg0*5$BXwE!4@q3)87SEyPlLtj72VeV#_tKBy|M**2Oy5R+ z`n36gEI%nsNhx6SNAVk>x;OFks6M_Z(KD13G}Mf- z%E14A)YQA=6@cRmCOSZ2U|)+BY))?o_RM5r(xm<1c56x7!PfTr7^~ezVL{3u;%IOI zLAk?@gMYtPl!Q7yUjVIT8~q)gvLdf1X@{BKOe@z!gE9%=L4)L$tXvn`sN>k z_~-CZ1?&>{FARKo1~Cflfv4RWzPvUQBW1u}l~{m=VT{45J<&#McKiVeel%h*OcCZZ zKoL8NzC-V%Mkdm3i2CLCOna~wh*e`Eaa~T1*v_2D@a-Q-yxj50)D0{YHiu!3nE5-u zR8(kOP)9`&yAuKA3AH-2+ee07`>9t_5S1pynaA1B3g=9!*QW%SdAPaE(kr?U&u7?= znYlC$e3B&|>3*jnyn8@0IfgqOOkV671$Ul4DBa^}#SeTW7jQUhU>K`?sdV+xht(M_ zbM}8nrWXrgEi3+ukL?QOeg?u;4aI~!KYf+{;C3XqR9>veYkKk8UCVx0Mya2l8}N7C zvJi%*!-PA&Ti~-nTvZaP9I?oUA+?!1_+%nAsQ^duSAth$hTq*VSP|qxXO0C5`ySK$ z5Cj)hOJi@E4tf9?<^OH>YQzdNzLcZ*fM4OP*&2`fZJaLn$^`bz&U$hRmngPNBG?ko zn|FUq1Jo`u$)f4GBO`tB@xg5I31ctEIN1t+r_sz zZE$0wE6YICfUR(SC@-%6p%__gtPF%g6h8+#YSK-Ay=%LO=v_w0P#wtkDM z7)VT3mfU*!pQ&`=RnAI}7vR|~xQ)W}cwI7_C>B|pePFe2DI;=)ubG4w>8Dr`i zm>BcLF{tN>Y1lMr9z0 z65#zpC44Py1thM@f`|KiTCiI;hjSGRml`a&&_tJoB@G&7bv`Z_{JQ=+4WdqMW(Yf@SYN)OVqZ(yZ=fvr0A8kMuM?eY%$wh>L1 zVEB0!1F<1SW3yL>h!8B{A$XdCtQBC{2&i-HqXdI?u%b?cJ{8UJtbDiW?BuEc;BsD% z#696`sb{)gF;oDr_5~MjaobfY&C7?!5(fmB9HgVjA~;*)#1`yqV_ z>RC{b(jua>k$;&*-wXy^=Rl$;*vXZE^e?awMEOFk^WhF1zSd|Pu3!uH=511NvM&3- z+R962(j)R5>MV*nLDx&es~7(M2O|jZ6cKj;>vjKr=il#v#_%)ALKrf~gIgo1&@m}g zGcar@KJV{y+adjNp@WM(jFKT#Vq}@Ou(56zq~|H^5@F|X4w5e#vk21vOnWwjaq9+rzJ_QybFK&wtuGW{&q%<214ZrTAlakTP3&h=E${Utj&7RX_ zW5;q>0~cO*f7O!&se_c!`G}MiH4*bb1(VFMC`eV{ats95)9*1nzGSx#N;!p@CP%~H z2^x|NoHC4Ld0smv{Dp+pmLqvSjs{DS`bTT3K@A=7!UpJi^P165mC0I!>#uRd%Zvg9 zmJ-?@g|J5jqK3htENu4Q?-mu3C05jENfnR_M6_fMkLei}^qZ?*lXp(!Mlv9aw`04m zQJPQ>?=SxpqxrnDJizl)-zGl=)4*%@HLD}lOw^k{NE{Kf1Ey*A=I2a_@i|Q)&Z(%`+CqIC)T#}zP=%KQbqXWCqQ7$ee%O2 z69%FuWcWrpEn&s{J6ZA{-NQ;;P7$Pakli)Ts)>vnnYEV9bp-&lQx?G9!B6n^^Bxy5 zJO;44%X~Dc)T~@u8{qpm6Xh~=j%w-mnNc+UxTb^4!0$Y2LNk!Ay&ZdBBT9ISP~tY$ zPe;Q?NaqQ?d0U*gyoHv14Qw2OEYR(EQJe78+xy)ndkcs2^lo;xYs5au=2}Vckr`wrz__Cgnl-WsQei_!OrNxWgtGq!{Btpu0E5)fyqg60&sthV+G~#P+KKN9f<} zZ(kr-hR@Bf7W6!NP;K=lCdl}ERZd)!`=jeA2zkDngEKqFF^5L5v6zd9N|@!{CM1Fx z%X~^P7`}cT?0mm4djSm|;mmMky|&+bH>3r>UgO2g>J&7O5p?`tLr0|RKjX(eA(v_* zM7tJnPqv!9tYW1nP;5tt-MM8jwHzUM718qP)Syr?QK`ug{M=tr49*S?q)O35!MJz@ z)?T8>OE&@8;;X3@b7nFE$C4vicikV1%)mU)=WK8sde`F-G%uu8flejX(SDwkoEITu z5bG%u#7_F7S-Qy}EBzaOnXJx8j5V4{VEi><)23oyCNkq***s=%u{YxS*iXNC%`8F^ zOWnB7bUj0>I_SA!`*EcBvmT!LOWEyKXfOi~7WOvNWIc=#OSqpElOts9x8-Pqh5G{cF_ zV}>ll4v1AIRr$&6ZI70>cV9$@)RajT3E52*9zU+j6&s%q2H&T|D#uu9Er)@@_M{=>M`v=@2*hx5k-b*{Rn+N z$NswN#0oQeK_(wPA?`t-REY|U8Cyy7bINw}`@b26mrznWj+?gF?wU`CmA$$nM5~p% z)t}Yo*@}t^xBb$>8+{g!9u?1WJ;5+%X7I(@VwpQN)dNLDhPO*ihUnUcM>I%KxwAL2Vm1I5;hN zh)N`+xa}Lb97hlo#Fh@sgpRETd+@t)VqKdpbbe>;8eu?P{ z?gx{>6RT-KL%QROFS?W046h^K!K8F_NKaPwTFF31$f?`BzGJbncWje~8vD;m*)~Ca zoHgFITfgAJ=Eu(vtyH$a)LHwh^H12FkZ)B-a^Go}PV7q*yAQ)eujQsZue=?uUokxG z9uk!<8(z^~P_X-6fVV~>sW=_ZXPoDbRkAwDEH1_clbv|(@3qN*nYm9@eSvY*dql{Z zHaH@Y0QxH#K{Rf(YKn7K`pJnVqZL|^AkI!9OP~fz9@4J1aSmba)O$ix?9JWeVs8%n z0*k}#oVq`zFArAe#NpnOW6BFXeDXCbb{8x>{vi5?p2i?H1u?Y?0OF>liy-Ks5j<5< zkpwNLTLuZf{Ln)c*}1u5LQ`A<)to0EYT?XX{sN51=zY4IxnmtuALS$AVH?Btsy}_9 zBWsz3>0P_Ft}kF94*l(}O=tXk?3+O)gTnJutINp#;in%EjV9=J*cvyX|5g|u;<^$~ zl*t=k*G1w(YV7|$%uiA>lv_ga74AXX4o7a-T zs02&b($hLWw#y4yX9qkOnj8bG?a+Hr+3kecK0G)Y815`5oKH4QJT9_KNz^ zp0%eJl0zlG#~D>tw5bZ`KfrAMWU;+QXxQ}ccg{nrj87<&>fBT9lU4qxn46n7eo3UH zTs)eZa&}y^Lp(!#YHu%ZcXs*TWK``QFy|!mQBD>6(oUHX_Ddu%h)Xt09)yJmo-_Wk zYIiSrT*{vu!t=!dqt~Dl9LrzH-++_VDI~0KE?l1)H3NT`LYn~QsAl%~-aV-cC_Wnh zm@kycV~TLu@7ji(L-f95mX^q){MYd0LNba)3diQ2FnPBt+~$nIAnyvLc*dl_Yd#wf zp_u45pKaokZ{hDK&B%_tgbT-S7UxiXR+!g(QNGaVES}Kwb?KdCg5UIsW$J2+^5&(r zsA6>9{Rs5=60eHLWfUD^4or8XCjX0EaTEAi7?(rCc}g3}YJNHWhhl}t!TR&=lu%tR z>%N|4BVvuT5!V(!6vfHfzW@iD<*;G1+Yuw#S;JUg)l&(h3V#2 z;HK|%L8otV)xS;G6k7G=pVN!Z#RiQmN&x%2$Y@R2btQl?@rj9HoB*Y-G|OdP?afK@ zsU04g4Sn*|w^z77^V*$V>bVJ6+VuKev+tW^b)`N=_T?>qD@HS`Th{Q|ke$I>QxR^$ zKkL1mQv?JMOt@x0-UA<|a%r@!x#$?d(-$;+$i+Q^Nhyw)%qV6!M)?QsXQ>gdfEJ+t z_SIp8iAiAB@iD&=R3$>{Geddyk3O6Y+)A;DB$*F2dTlhv49 zWoBZ+=WTl&bQl*KL`56iHZrQ*`~vS-zyA1}Y=IkH|5e$%_l&t(6WF=(SjV1hOj$?A zueIj8$@seiZGrU**HvkT6jV2=pVw4IIj3hUYkjyQbKKe_<&4_deX+7_D|^?BG<@^^ z6dDzP@UbwK3z=D%{Sz>N;r}p%^0K{|-Wa06wUR#0cyPF*HIL*1bwKepA%TG>(9~>j3`1nqE@U_fTmACu<5_}N%$!=@;IZP}B zN)rvV!OJ&Dm#`>5BE+UkL&ITUAUoL8!eLtP_MjrL9VT8@dMpKcrovM0qsI;RhJvZk zf)Y_T|DAdqiC!2p{6&0&k(8D^rn9`j$Dv;EmpVVqdwROQ;=h!8^Dk=voaXt@Rb))7 ze)kWPlXy52O*>~-`-}2tW=UeaS^myGrLD%+f#^4nH24fi&((Utjz88@A-uQ-zZ&t9 zy>-=;i%8_KeD5KOy5-wn8oisC7?o($-=CjNtuj>B)|PA>M$0(1)zw2ENj~r?$KFV7fG9~I{1Dgg#6!602zF%>^ABm%@0!p;W_0Heb?N7+o8Ff5+kr5_(UPe$7c_kwzo6L zrM_pu&=}MOav*_G`-73360i~Q8MG77-~@`E6R!UT>YmQ4FUu5ql(FM_tb*>n!Ru6X zfND>$T0Yp)b%yL`&#Hks2CrO_g##d<54eqT-2sksPwSO^R7ak96FswI3561K&JVt} zlV~ZBb4gXjV6loKxg4(mzXXs`Bmua<1sh-FCtZ<(bOFk8Zcx+E{}|f`L(BvREFfbimI245{i zauN@__BPL!3F#&`<4b%J;43U*Tv5Pf6UTsk{s?xDRKQ9DTzd#uawwaC_h2j>Y}z^? z3*gbI*^r~+`jMrk645|5>`p0X3#Q19!VB27UlxN`m6Nw|^Lr7e^F93FB;qU+afXRr zAmS%cf4?@Ak(rFw4Z*?X`@H)xlnZGc%Kylj29-6y<=APv`_Dof_N;8p-QA02!%n(5 zPY3zbG(%qa3Mk~e`%fwkeGs}Qa)O_wqV^=(#7~d4_~_22-ME4MDD;?9;{ttJ-sQV@ zuYP?ieY}pfYE(TxyhGwA;X8@eOrH)%O3A^uFMYwd|Z;SMEEdbYxhsN3E>7asR+)Vp!3$&Wz!Ix(`iVshO-e- zE$pFp8c7^6BU4D~w;BiIr%zpo--jOK*AWq?5_qVwgY~TSHR*98fsA+_Rr?f|(`cY@ zw9w(t1`>R4Wuj(BK{KA7V`!K9{A20?@yMAtev*EeV@%F4qzC}VT8~=nH*mOiADSSz#wb71? zaPh58xD>OcL^M#B3PRmY)2BoX^ggHP7LaL^ZoXZf3AmoT->{vjBWNXerieyO+&ydV z{C!|(rqq4*`ErzS;Ip4AL-$GZ_nus$GC})$&AkSUJRz*DCA7c4oc> zEeuQc7ilf znP@Vb7+yd1e3+ZBTxsEJ4woayr_p>d*pC4c1!9hUTSauJUNLEp1W^Wj=lnsXsl@;y zKF|jHW$9O)Aj%Q z#dX_^Ak4kTWcVg;nSpcx%d7~a0rnqMrYtqjfLEI&H~4X5C;V|_ud?u<4-0?+E`9e`_&n(&6imQpacU&8)!tJ0#|sCpMOrAyn3W@?4`c zqUZaPMedD_p(fRqi-=-GNpaT-3N>;6v{Q8Zx&82R`6l<>ADl&zy?FrGcgv7ACu!NU z{BzaxT+i|xF2^S~4}4U04=X->?bzqQ;B06N#EtKkYf3(BJMTLG%hmdt^qJC7B2A5$ z`S{yW4~aBE&q<|lJXB*T|2gomlM0G!jO?9NnqL1oW*GO z?XJ!YY{1#N+LhzWS-TpT^beLwhGQlo9Q<`NEb_@;`C5wIOtEMb)_81d%kNDRcTB$H z?A-d$lBw=u6QtOn1t+I?Mvl;~U`XoqpfTp-QaFnne`o`84L_wHgi=sh3RTX780KGbb0ylA%5;yvI?lX7-UXFKyY-k#UF6(H-fJ{mQ?Db z_T|Sgs)F!)qMGxQ@0Xd+_dp)Hb~kME5sD(?Eb^2rC@u>|pt_tdKz{|u1z66fSOWm_ z^a8=mp`-Yax~k*ZEC4uBzsz@&`!GO17zapKa}C3kS~!Pe;SdFKOF%WnA*6@bu?)ai z{oe--ETjAzc^&~HZh!y~Gd@hSGZ$IJ!pukeos1Cqg&Fs(*LHG8D?}_xP=_~8=b-?C zm6{aM9ACYuU{plh_aEt&)eLounXWZ3Zx$`<-+{b^=p!B zZ3#Km_1o80;L6I)y(@vEq;a)pnBc8A6WFn~-(NWI@4{zoH01Ne z(I8n7^7SVnP|%R(?LP5*8xtG*OpF)+RZuS3D=#P7GX(F=zO;0pFM@nUmq?K=7w z)QU0Fi-`^Gk59Y$ZplPkwccXhK(*LdgQ)DOk87yeVT4~S=}+%V`n@QO>_yIK(!$4f z?8fxB1ltJW0`|+lD zHrArt7+qv)QPmTqLR9X`RXV<#Z&Giwyy@fFwTy5kWsuLA<#V@Jn1Ii!)=yQbTYmPY{#g2IIeMLgdHG8k>nr+S z!>J6xS*HUSLklmk8t^sRd4Wgd7U5jiIoay3&o*WEkHa;4hP>y$9pACF9hs;eyLSYx zuGyp#biVNm7CCKC7@4k;5%>+xSw_ZD8gC}xS+U=MnFN1%$BU`Opvmtw#8lC#3hIn; z73BE^Ml-9)WWA%@32u_~?4)2Vt*;OAFK7B&RHE+}#?qtb^p(sYw3y#O*q4nIw<=)L z0`%Pf=JcWFJnm!sduRz)4hth!fxO(`KHzj-DGp%=!B{II&9iP~BB~0`4Lh&K@qH%~-P`G$O9?<=LMUK*L z8pjU#fCb=8P&ko!XkYX#O5BnL5Hv5KMawB+Lv{T)DF8!!^V8o7Wax{mve0xGnF|75 zaz!-*lL%hE5{k}P$d#(6%nRzNjX0KE0k0R5V=Pct=X~w$1uw#6EFSjlmOIb@?7S*+ za=x*z?tzS#K5D*Jc<`zQuChqF^qs@!{!7IyrfW zYjUd@Q{8ypFv8o~66y^KH{6c{?%`Zt+IDi--CrEvb(k#?ax06359^T7cVJ`PpIHpy z3~xhy+2;7DTe3$odcZiDCG3H=8uEBP zmht5$%XYbs29AC(m>wTjiR(E{=I(+#V)+6_uwnAml`fe{W%f)8>!0)fNNcZW(q0ub zW$%|wB=RHIbU*vhYqGb@FjBDtJaM+H8PZ>->GTvd6ohoTGViYM-@usk?tCc_oY6zF zMYfE0HhgixEcsr1!N{j8aya1wo%$ATr;x2D?BMY|FzdJQWa_Dv!B{%GDeq^-elZ6_ z!*Jsb%Rxg*M&h&Z?mKezcI~2D{K;Fbi0uiOX;=UepCnO3JvANR|YZs@Lqdxax zIssW7*D|3x}QPiKp{GxvS`ZmTic8pOQZ+?s?8l6suaY!jnCL0v?xf#5z@2OqjzO3Z> z%CZIObVo5&-z<6m{;YRXWO@10r^{WTC&&S34D&dPjF#?2of~?3FO`KPSJ~gQcK>FI zXqts5A0i5GQ6>wyCO)}R12!i4#ICULdhq2%n9p;7)}AW)2*XvnU?(g!(Pt>ggrO8y zNIK0Y#VH;$7sr$%-uU^mganNoYL<|UNN0J}G%(WoXNzITfW79zjADfzQM7OBDd;67 zVX#Cu+6-XY%8p0b3*BE;%@)2yK|z6Gm^=l3S5>(it}K#<*E~}%>H3bt2l2Pg0P(&c zV-}fPq7;}{b`1-)Q7#lmSvqO2s*0#69^i0w3%ALhzLQpk+4aSizau04%e$xwz#>eGcYfOCzP$7!)Y*Q)m3m?5D&A!ka z#L1<3OWxhI9p8YwdZvrFSCK2f=jIY(1~&7IgJ}&Ii2XQ6$hPZWG6{H6U2;m-x~h}o zVl3VFi5*SlcGjRgTwBfNzz?P8m?vPI?5_a2o8SG`O3&`8Zad1*iVXy@k1;wjBowt0 zN6ye2&bqhMY~xhy)X>$6g_ELxNDU)tlI=n)g8!Ebp!CB9pc%R7yDCxiZFoYKiUgwl?Mb6_dzAtILB4wTllN+G?JB-Q4Vx3^<$%J-(NrW z_|ngs-4a(uKAe31iWPXg325tRPf$H(@Nh7nsPU_wf7eK-fUf0c2fm!S8b04jTUp_{ zLT(plRR%mRr$d%-A6ZS=A6f|&q#ub{mD@>fJhNb+YeRipGzQYq`!*xa~PQd`ri4lNbpJSfqyUHPATBIy2}0tA32yxr@@%2B!Qgk zqbnqH>j53!Z*CZB28V93w9)pY2T@QKloUGt@A*MG`1M2z-x@Nx%fOiq<$D_ne6Z{6 z$y*)DRGSZ@@c4nvh4+$36J2uTD|{SYTlv^_t1l*V2^&M)l%bB zv?8_hEiLZ1pt=${a5pW;TfP6?FL1Lf8x?|yJl;n6?vbC?*rG_0)Y!>vAFaoqJjhRd z&eynvGBm~KnT!km+7b0Fa*E%1V1fK^mP^Fyd zVf@3GT(FU525KKVwfVQnZ@xRI3TR3A$|HLc-+9G9RPL3eZl@=VRLE_kTTVEP@g*tEm>Adn2l z_Vm(O&y9AsgMN10RM7W;A6!ylIPbEaax@ye_J zyY@Q~2RZ&DShg(=-H}h1fPr0pf`nz}dVnggTJkvMl;)XL>%~9;Ny+U*F%EmZ{Kvh& zBos>08Qmo2lwdFc$^LgAKPL6x^eq~GXFfMc&E#7z%Cd2lS5^DwWY0K_GJyX6#Fe{@ zd^~ouUo?Z9a4Vw^eoZQF=Y*2XH@s$#`XGXvHdYQOl0*vkdmQkLJq-?Op9a&JpNe)_9un*Q+Be*UAhnfz>~WzKzKWml6D;>B~5 z>@Y}_0adMQPVJ?v0>#Iim0Oh7Cmh45*)@G)tDpKbpxPPBn8QfCPYO>3pe&8X*ql1t z07HJp-GOeO8$DD4^TgQgW=z(5mO$jV8t|{;{>?3=-1GTwupzSLc+BrpRgOo0xvg*9 zdXUzkqe}w`a&vwfp{Jz0iq)0LGx|Bfcxno!rh+tjIn(#j}agp305k zZ-LEmmGY;%uC3mbR%>e7ihxvIqvZTcpR!?etKYv@-q)OvoO4Y#u|lUJr)VAtMqu^+ z@SByjwO^0K2K@`S<$Ge?7Qu0# za+l22_9d!9-;6NNHnKs1jT0p!v6@QRN3zK^L&PVxd1d83R(RAk zkxPCHw%hU*+8sRuVz&=5mf_*n_p4DHB!f=WOxW3u$iL+1FzIB;uUE@;E^z@AF479u zuCZrv_jaqe5|yrjeh5>vcMEM4G>=HRDxlra6!DH*5a_%q_|s?u}e zC|v2^?{PB{&7r@SsO*RqNW@6y?vqn?Wb4{)tIA;eDc>B0g@E&%`4`We{>Fwfx6=N# zM~xnTAQi?Zoqj1*kB(^s@B4CwxO+QhdcN5|vA|n9a|4*GFFZVWWK;g6*xbc=-XT4d z9q##TQik{kdv%{^V%jPLe)=REzPfu6JpDTxayl;pe$0H`e(Q|$hO%X z3n9#qyro zy!xA*eSRqZu;>NyFAdDMoef=nJ_rZaXHs_=mB3PYO@J)O*o_31*jl zC9NvT9IJk{Z}-N~{e8*~`mw7e78lu=#HG}>^~@I8F}OFjO_+6+I7#Z zn<=kc=2Bjf-&T;>Wc22y9X3uu;ex}MjrNr*w<$Ro;X``X;IPN(Wedz+Z{KfOOUkSp z4{zLf%7-U!LF1#Mq^h{+d}-`q9IWs4*J}HJS1(REG`GHYzM_1p)9!&83aOj<`I}r0 zDv^GAQw&j()-H~@W zs;NRUMAe(M+5mbt^f9LpVt$DZ@UpqlL6x7(sI4w5X2^W`S2mA+Hl@Art)C7bOzym~ zI;$MKtRY5Y4}YAtnJ*V&pSVjw?KZyXylssAme}n7i<|32UWy$s{7{Ndfg#EOBx;ZX zxj{EKakc2>_`}xugpWG`O)~vy8?PAHwIA?t#XAlSq;@YV`1A#i*IU%KUDPXQ%D^*G#!cuBrZGS3mvv)#Jt~&-I~8FyzP%3t&e0+M>O1 zJM)^tk>ix;INT^RP`D)#uGEGV69L~@tV6B4y_*8viL;})F~?UnZ{cW}Zf6%-Dj*$I z4CZ*0vw@P_JZwtjm?34QfkcsRiio;`f`ZSV(>RMVbRCrBXQqaMO-}0If2*n{OQFY6z+CnaKi!Zl>(j~{Eu%lj4JehhlehI^t2gN1>dlM&B%x)Kz9pGUZ?eUzCP_+@dzi;2QRz2RENBFu6w#twr_^gGHVpd3r&;P zV*9$A*d;N6{Ljx;IkAi(S)`)+qP)!=r-U;VA#jA_7YJbE+P1xa!n55}F_AzW{QuE( z)nQG&Vf&2HHA-m)h=_Da!w3;1MN&mVL_nk@r8ZhXLQoKC5tWcmsnIG@B3&b-Vt`-g7_CbI0qAC-+PReKh$xCHZYH?7P*04?douM}*#eBzT@r z(sE6f>xQhOBNDOO%P(5x@s;4^yq|NCR|ZNTzEWRw2$9wcr#MHat!a^(*K zo8OE#Uq!?d_U}cVb*$tW5lcFq`c9!M-1tRnyvrLf{}Ove05^fey;B_jy&h(@@y&!4 zEgk)*Ryi0mE&azLr^msMVI%FM>Q)j>NaVa(qI08@5zX~J0z*;-0fwY+s!>=HUM#(z zmg_MfC33lUDU#q-I=V4Lh>UPO>ROAGTH}a^w-Fverq;@T{Xty0{A>!40oK{ey9SGL{+SgK?@Z1|$wXmFDwo@-G zWk2vZ`CHsiuFP{XeUQZ3M;gAK$xx>0aAWM$UBuwFrF!(ycmq2&3m^rB03>R#IBZPBC z^wb^sRa>Yl2b4a{);qe>2r#?;{Cj7E$iOWrvUM~ODdiGCjeH@ui(CBWFGlDxbUof& z#L`*6k+ynQv`udo@-IGWol%1*8}!MbUpNX%ufiF6+W%s|P{)~!a6s|C$coZCD&t3f z0B9J1xQ&Yw%@_S?csjeS{7tsQAyC^nnQ((-)v4reGW|&Gz3*gLFG-&9cVT@<^6~U_ z>bWadt}wMpwKBh#6ls#GML0-Uoll)+>#8DaX)y+u+tTtafh1JO)e31Dc4+jqA$6ZU zAJWVq^|CA!6{P^E{T-(3r;u7KEj7fyUa$&CKiBhR*Y;aIea#@EqtWLEL|V96i;AeIC$-AD zuEFHxbBxt!BCKS1(K%cupK5A5hL&m;Xvt9@mNy|?#>S@X-N(zDn-I&~h1BEXQN=~u zz+v^kx!Nb{O2FR>?2#W0K{P9`9UW~) zVs8NAIct1)79}7(n8W!?3$V!~#i5(oszD$HO-(lDmzsD|$K5h_4ZRv#U-WaKk;7*^ zGr*LsDx_Ir)>8Ii>)2n>_mYx6(+zKJMScFVm*;tjEjF(lx@#c&;el5`QW^O@KL9eg zf>2Q&`}PsOQBGr=c0c#(wxHJ!>E3{1YEYumKspt-V=gywuue& zl3F{$H@{Wd$d_ugI(8Fi`DdMVqOKfF9vEG1;vHTcP1g*yoGuiNi@Gi*HkNCm{*S`< zQ-QPM;~Ji)_F9R+JxkNsLoVtPnNz3Qf=MQpw>qK&XPgfcSbwj5SLV;q(kc7Xdc$a4P8g$w6^qJXFS9#EICgYs;2jD5l^lC?DE(=rIKnV%Jl4?(o>PK)KK3pv zAFB(I_ap*Z=(NDZQ(tdZz0Aa}Fba~`*0N($)F$jIQOvq!J}`iUoU%SW9lcZsdHH3u zk<$-=>C~s-;Bj`NgEQ2dBi$^9J;8koDEEevwHl)mf7KtFq}jQR$n%fi-`>#r9TGHZ zpTLtlB>RM{rDg+l z<}rJV<2PYsV^uygk3&Opo=%!Ka%lti8~`XpDL z&E%M3#+)!WFI2X+5)5@?EjH^C2_m9zz+;4c=N_S+E}E69_|M1%L)=kQopGmE;xzcWvMF+>bJ^PT0K4XZ_hTck*VCYPv= z2Hf+o2bPx3F4ycWEyqjbS_`^WYf91F4WnyTB#Su3u!x|qO-ge&>(` zue8t+K-4wJAz8$q@&e745B_())d#4*bn@`Oc$=c}o7$~vJL-M2`GW+1<=eks02L*@ z=SpICWJ_1>crvc8+`;Bprc$h~w{-l&tn(Y*vF!b9s7_S|b#zJB5AKHW-6cY91jkpv z6yLtBXW(mn>8XB82T+S0@c%I59_Y~ZoWGx0)xzp&;0#5+)K1;D`mc8^U6T!e;0Lk_ ztHaMJL6i&~HGUGqX?K0FAYo*czLgX<|V54ZRBe(OG-`XQry z21_mQ`g~t1l4_0=>UP`Fd&8^6f(xkoG5k@VFO5T$kma*q1(Ef9Pjx3Cid;cPdO{Tx=CBYj) z=KGSi6)MVp`~q8AzL{SFDz0mBqm+rT%U!R%&o}efz={ekFKPV9r=5t@`!&~F-Z_1q zn{D*#Sy9#emraz(rL4F`gq2rrtK3NM?)jNl@qy5WMy$Q5~Ml5v5zm2&uvB30r^4@8sCEPYW z|F1zV1KK{&PqtOYp{=g2uDq`Ncj$a*+h1U^+Abqp(+%%E+WZpfaFv`zmni$G=nJ&>yFr-a0ZdI?BvO#+09m zuwv!qc$hG^H(44JIJfsgu4k_)b7_;tebwIJbWE|k@g4-D^54;FKzy=Y$D(yHz-+9b z5RyCAVZHIUq6{26Jcbd9>xhH7ZVgZ{N}Udm2%;j*C`@lW63>?Hx5vtu#NJj$`J`)< ze34VJdh&3}QrvHXj6K%v*Un$F$KN`fo+f^O(bDICN)|y+#cxh0r@4aaL@~nXV;*!! z)^|Elg$N;E{Djb-3zMUwm`JUCL4b;Cde3_;CQLr*dX#Kcd3l;5WmWX7I8{?Jb5YE% zk&XhXWhvv>KZz>4Sxc{x<*_TN$Xik!%z(Gs%g2469M`~9WMD8=wUX)$1k{KE!0Z<$ z%U{3k;eF!3k1~Bs3CwiXbyG5+S@+8un$2$j9zf2JiB#BE=RbD|n?>Ts*IHY5pKRva z&U`yg4%R^8))Ri`^uSv8ryKiSglh$Iu?&?+jsQrHH9fzf-e{K;2(OfcoH zEYW}@zi3~_QLX$pXQ2jyNG9U+Oe?axv!CsGb}{f#C51drU}M^`0owR{>9yu4?lu=F%ii}da zTGZV9V(0mT2eabyEpgdo*fOiH&mkAQVu7Td=$DqsMUo?m$Cm=9k);JYEske&3Ti7} z?|6-vD(LbS5I58=D~JL)Y^l16d}x8z3Ie*zV5L5wKUP6;`D z%zugO*BLSy++WltuHPlN6NopZd+q6BHX3h@fgc6q>Re^HjD>YL0Hxs_j7X5SyZhl3 z|KDLwhy#SQ(%u$|8rU63#&NV99*#YSkw?)a@5X*cDBmD-qniV*S_)~rxp^Vp&6|aB zd}sa0*26h%q7{X=M@#$}JcXWKSLyOGg2!bk+jAp??x@4X=$j)kgIMXbCIURnj~5-R z_M_DAM*do7%?Y41C@cv*8Y4ZO4Sw4zc3VU9N@w$Fal7sFd7|E2*t&{WC*a` zX%pkW{SZ^>cpt)HFXCcyW&((EET zJ?cmQpAHf`0>(`eCwtX2vmZ7dfj;ya7)e0|<>$97MOt35UbD03kOf+5$F_B;L?p`Y z7LDfX-(qiRDsJcGnMl(tNM)2?q20@}+(Pe43|NQ0Q%X!P;+4YvDJD6flR|TJ39W4~b z#I2SgBZFy=qJsS{^2T+ch6lEX3hK2s>gn-;Q6Er9ks||4DZ%m*{xf!rvS6@cti@2` zsmS<>s_e%lKbd=Lu8k?eFx?0tY}}E?#}bWS*Zrvh@qxh=5Myv3;-JV9mt@Alh?Ux__iG$QwTzR~OpiR$vv#jEf0$W4Ry>nHc7@Nbh4p@(sOC#FfvT8M||=1qooQZZku-^n*jn!7s#ld>e& zI`m3O{H@Ag;7zxCn^UtAwRHGy0ZQcJ2FEdKG-K@}i}O9_=)G}Aqx0NnT(kSQpvTR* z2Pdz3->D=gEi0k_0~ULET&bH5clp)7>%2nIYEqk+km&sB@tplD^EU6MsERqo+45{u%w~$ltsX4z|-(Cv4_aN%wfJQSh%GjwWGvMLRk&eqU$MEK? zvvn#GBBsBvk0Nz~Q=FCDOyZal%WjNs^)UgeeaHptA3FFrzk>2|@!_oXo~#?=t?8Wt zE6J^D9U^;*w^9u6z6xLGJZ!HfOTF@(f^qFm-@$V(0dKv!f2fLUx>s6#n{r_StG=*s zhTYD$tkFGJ6n8st&c9th_;lb~wom zQ|?FKeJss?gCtY^w%}T>TmOH>1r@<3l~!0MQQb2O)Xg{#v!y`5wM@ zFAC8sHLd>l-N~5qncjvlu0|naMIV@BZhn|{B(m#1Wy*eu7P3>B)$lyhX-QJHhrUR^ z;F2b$rZhHEJ;KUTmx%q@r2@aJqj5_XpYN*zmlC^i>*6iZwfKdCcig8~6DlDkTKu(F zyL1_6I(B^ltVi(VO>PCRaQ-!d-w{&081x;IvW);IEet_;f7Q#e-J>4*k{fH#E&3I2 zB@TTG%w3Er3L4G(YHV{P#!1GNI+-qVYzfO+J;Zb65fNkJ5p4xvV+QKPL}O6s`hcK6 zcG_FK$tvE|w%Q5ae)kaN7$UuAnvb*BvTx)cPTTkqN5o~zKY$a}oA|1cs6qNGnuRZ# z`^!{ws|}=JQeKOO=a|2{=l?XQfj-efRUa)HVXBm$KJuf*)Dk5514P;N8+X-%*r1B< zAV(;g)QELi$FH9X0OA;!Ohl6J$hW8;;sYfD{uaNvmBndeF=iLGFT#?ce|TYTq65{i z-^mZE9w~X>jD4pW8t^kem5apW*L<|s3-HsZN5D0ynYBxwV%NpQu7hEVl&9T)b78;d zwXG@_aJM!XDm_0tUilo~oh0^kP@vK?{|<;y4Z;@O343(7Hn@NBN+u(`$?^=wkF+$K zsX&9XoCK15>Ik_)*`w!j>w?_k{gEFRC*b7ul&~;m9w!#_bld6l=F;qeLln z?eg|&n|c(3lpKV(;((6-nN?GsRm`V0vH=IMk>5CQb zv5gISOg?9Bv??TY)xP!ob?rIq`}6aNZx`p>+sXW3?Rf_kUau2^TKP5G1zXSngVFE;i+mNg@~kNyOM#rvtJ!NkNY{LyX8jN%(XvYi2Fn< zvE2LFAlF>Ur6c=+Fs?KE@9?AiwGJqLnAB%?Jfw+8?^{!@nSe{n0p4rs>Cui&>zuza-?J^<(ncaIKPaM=-rvNr6&dm{r#Rf@P$F5nFx7FURp?ywhln|u z#Cd<&5m{wErMPGQK`Hlb#~OyURzXFIKT_=d`mdYUUt|T`mcsS7K4Y*xySrKXwY5t>DRj+Lxd}7CV3~IKH4Z`N(%g9qbS9~GNY^d1);Fbr)B6#Sp9MFD_`e zvt`(9^6bnCH+SJmdIsLfuHoO0qv5&Q7l*M??OR*d7-_$Ntq;mT*PHeqkz|Cpc$;Sf z7}ArjkAeM6T7%DcvvEwu?hZKqa(RI2br5JK?`xn0^ZU9%ub6F zhF_y{lv)#a%P8usQulzuPp@lAH@V0#*4@BQSdTUcnyJGqe(HU}FQ}mOZcLM|pM6;b zP{S<>r6r>_k^T}LYo;7rOU2;k`&Qs=cdTUTSXXv!Q|Y{bv_AKOfx@u<*z2Nu|@$W_`W(o zfTMakPxbpQ+Q$fn`N8y1ltf4ZlPj>NcGAP^Hy>oHSrcUOpv>kd3ihgMI5oZi5m|5

b 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≤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 literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/blue_brick_wall.dmi b/modular_citadel/code/modules/festive/blue_brick_wall.dmi new file mode 100644 index 0000000000000000000000000000000000000000..2a15e628b7df62891a0c8385c319c5503411adc8 GIT binary patch literal 1691 zcmV;M24wk(P)fFDZ*Bkpc$}4#%MOAt5JlJYD;iv5gm&S^jlmce@(T@Ml}4;dTjlp9n)o(z z*>#e0+tcY|!k4RcQSy9Ku#0xyoGf2(Ii0bnH`~w-g~(XcYO`;{z3`z5dKkuOVqz9; zjq^j5vS{b3qrQ(HOa?FlU?jk#i3NOUMkF5ap_w%40Ur(c(DO)Oo}oX8kVT9$d`-YF&K~R6)Cwx`rw_oxKmnwF}(Az8(000FtNklYb%(1;+4aAUb z73MLt*4_8Z<$`&a`q>>V`P@b+dk@SHSz|art8E7GNC6L?BIZ58I)?U0h&0+$Bu_pN zq)&+THusfA7-~-u^PV6NSgN7*6iI#{$O0B?sP*AX=K}M6?yHJuK`hr^L~-lOl6lsOTQ6ob6+9NW0>q> zf27}tCz9}sG*9kRx&717`dWt8VRh-bMvwLQh?F=i;uba>iP|E1N^*zmziFn_JIJ9?=zPLoZ%JzbB3FSiv!MJSi5}z zAg^KV1`U8b!({KW>{AGdq_In7wB7tqkY-G*Clr?nXV9d7+~nz2?dq2W8=>I~P?@Z%VM zh=#Qv$kh`Kr2&bCt1|306bIZilwkN+yn79cUpJNl+UfS>7#6=!EoV5{fUP{B)#km$ z=+7IAUy2tq44NqGJVEZYKkpS-Kyw|9Rjc>AWBI{GDIhk&t;!uv8P@M{fK!4!#r)xv zjT}xD0unQ$^1roU4@o&;&;@_ml#J@?8iGPzG6aOYXCjL!& zO#GYlnD{s8G3ouK$E5d{9uxm2JtqE5dc0}4X}D?lNi>}LH|cSM{!Mz^pnsDdH|XD_ z#|`>7>2ZVpO?te3BaHq{dc3}wLH{N_e*ETeym0MP!O}$5Mg#Te2g%h~3|RY&*15G& zg~j+4(rEAzaQ|`?Gy5AM2!4=Wgdy%<*5vj#LNNR{h%w|eY_&>jXj%&dLqGV8hVHS` z8d8FRAB-~WAW%b>N^1zU=m%r*_#Mm`s9~Q=X^6Gx2V>FPAW*|Tm(mbQ(GN!B@y2Kj z)NnF|8e*Uyj0OQj4FkYXLkw;{0SFof9~f##0rT?-K+rJ!z(B(YV0JzZSfL>|9|znt z+%()Y{L~tv-=lzYG$h*-Xc%rkf!}+?^!{l*&fm8uvH^pJ;RYM}y)mZuPwR31z5!zk zfEorZ1o%B4>7EDY`xb-rP@o|+NrB(<*>umNVBU=z-NJ?MSwiy@`n~(5!uzN72Il+o z$SlJnrAP_p-peSMSGJ)9Lk+?F>?pz9dl>`sMi*%qGb;w}hk6C`s!T)b_Z)%jyEOyz zrUCzF(Ep)7|0RN}Z|Divu1`Pe50e|THANa#+K>V{M{?9DTFz|oQ?-Bn8{;-}Q zEIri!nPnN`;u`UP%W8<*N6h~%$`CimnEzW;!wUr0vn&qC^_|NDGJWT|3^xs*0^BrQ zmEor0Gk~wBVa^}M{9iR-&L777Uo~LXA4dFNHDK0TU=y{3hFNcc{!W}BX@nQhFz*l1 l-$^s1{!Um!>hG!<{sZdzs4Sw(`}hC=002ovPDHLkV1h6dJ)Zyo literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/blue_brick_window.dmi b/modular_citadel/code/modules/festive/blue_brick_window.dmi new file mode 100644 index 0000000000000000000000000000000000000000..7ed65fceebc17a4514e5bf262858d886cf16d215 GIT binary patch literal 3943 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 literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/city_sign.dmi b/modular_citadel/code/modules/festive/city_sign.dmi new file mode 100644 index 0000000000000000000000000000000000000000..c4a41f7b76036991dd842b45da671195b1e83687 GIT binary patch literal 1227 zcmV;+1T_1JP)C0000{P)t-sz`(%d z_WysFtL1;D`u+cA%>O=;!j5~giL1gUZ=P0Rl-iWCc36$3ON0PAW&mQW0000FC_Zjr zg*k7KNl$SoSa^OwXI@EdpmBw2fRF$vMrgkJAOHXW0d!JMQvg8b*k%9#0B?F!Sad{X zb7OL8aCB*JZU6vyoKseCa&`CgQ*iP1rvbJKrLK27Y&9LJ zZMyb-0GbMAzdszX?dhm$(zWjcP*Sisz~U)b9ANR8umBW*#cRS@jK;_;VJ!d!AVy|c zVBQK~mLlV=0Awl986+VBIox{$0YHGCB5Wl-1$o?iL(u?t|M-nJZI2}c(KBJ-2EV$E zj;9^65s$>?e1kcTIbD109HzT$4ZnC;kD2Jy zJ>wUN0fH%K?8?CNTmX6kAe@9}0PxF%xqOkD;$wg7U!+4>3RgS z5eQ9X{>x}Nf&??q{`EU0Y4l6FFH)pPks?Kk6nT{#$K*9-Pn@It26C)rv>Y!IP{tbSb{+S2>Htea53pR7n{s1ll&{Pn_B^99JUfR6{ zK&=I^9{2WKMu2c++gNXDk14RhMx{-RX*FiSJ_UHV#m}@9bO6vSK3bS;-oTFmMa_=^ zm1zv*e7ETx0dxV#3vdzu^uti9nEoGs*8S?Jg95p?}eD5~m@N z`X53VbkLVS9Z7KC0f{pdeM12#0F(A2M|1QIQ|5Hs^Avr005u_0{{R3dEt5<0000dP)t-sz`(#n zL_|SBK~hpuR#sM8T3TUYVJ|N)CnqN>D=RlQH#9Ufz`(#T2A(GX0004WQchCV=-0C=2@)3FM}AP~m!S)W3Z*;1oxmy%F2H180IsSZ)_ zO!NAc20GSnyMrIcAHi1KhsQXH{yFluP2^(`H(@SU&JMq1R~FrI=B$6Yd@hvdY|Gdv z=^M@#pQvn#vo+0|J?Ee40HXn80Hb68dg?|?0($C3$ph%IKu`US0q&IdL4pEOL`V`L zO)HR8HySVoFngda#_X!_KWoJ>_1{nR0qF|lzU8mTG5`Psp-DtRRA_UXtP1n4VrFHUwZ@8o}kDC2WNqU;Q!=;(v2UML^#PY4`}Bg|*wnG|0n z-Q0S+Nlfx*&uyN5bZvJm23`R8c4)gp7`VDKmOf~GYdpg-09JoaCIP{1%gt0Qlgmro2Zsl(0F&mpWMZ-e3G0|SiXog=Ix0yMn9 zfKeSv85&-+8S)$&pO(Y-p8LvphH<=e@O6j-GVyo@^ulp~UdRFR9FGIUF$c(Z(l{J{ zsR4P8D**W_Py<%gDF`nLu@C-o#(cZlCR`jF2`QWYSM>E`cEBa9m_uh(rvjRhEtMOL!TRn&X zTCOEMc?#D}R1aFNB|UixwKl2;r~G(58EI`)58B@(lAesTHd=@FH;JStBW}?;6f;b@ zMe9)HF!iH)aBxiVdNTUWhw8z>eM??Xb_};yJs1F9_26ZI3+utfGhCcQ`|FbX%HwY} zAYX?SfD321IEV3Wn>SRQ@qngpGeB)GvoBaO+rGrJ!ke3NuaB8dEZW2F zg`E{{4!`a)omjNp{;iGn2g3|M_L)vB+P+CNi??YGHT9axPZ&pv9+Ah@KQY}W-ty=23fqw(KtXHW%0e#3FB00 zCBQ7cmwVOqLJ=^H?KS`SL`zP^fj@RG9t z^Zm-35~nuNgHe3ockAG1dE4YPt(WZnV&r#k05*2u3>^o+))UO3-)$>yj`^=yR%ht` zpszP}f6>(^=|OtKZDOStWJbM7|Ed9LrKL)zLw@z4KFtcsldd7CuN{ycJZCsvlu%!c zAk8v!=&y39uWpcLA^k^}P1Ki5f^Y2fAKgbp?;qxXo;%WibS8zKH)l5I=eeY_0Q9^$ zGg4c`CEeCT&zo~VuLtKk^!EwXXHav7RELzI_6#cQV^@d7q4xZQ)D-DII=$_*84gjO z97eiNh@Lmg8TwUc&QN=ve9mo%Inqv{q=o+ob&hx&{Iq&nF=OkEJ7zsfUPyhggaK@Kxxajgb z1o*i5Q+9|p7n;It9fB^o-zEln`v-a7@&ka-+|0ptC`k{-w>lY-m>;p!K3d|CNNVc} z@M;mnh^M)*f1m|Qq!XJ_tGioiFuzSB{6*_b59~1nKW!mgJBMjd#YbBR)Wqri)PG_y zavFPh=_cAp$LOa%N&{!A^thX@ApKV6$#zkM=))JtSA8c`5;zu0$U7A?YM)#TdcWXE z*LCA+W($glDI5xs`0cG%??-jUl?+N;7kqKg(%t{H;Hj6xEg(;)Gzr5Z%>n@6cg9`P zw++qxk$3&(Wjm?f_A)JCySlGjXZ`_77R^r^yh$Y=9fhTfUB4J@;v*ojsT%6j zf6^D-OLA`=@cI}yzv`VIAV}!7o6nPu zb2|p6nuw8NPoaJlqD~l!I_*GcnwPUHGT37bAgEFJ|0!&v&>(guottwCd zGtjSy5dgC!WjKspPwzF)ewnv%{e;ZY=4dMkl@UR+;3ak)40FZ${rHiI<~%6SK^bjl zL|B~@S<#3tE=e{C7hTaxe?XS73;cT(mhSRJr=`xxdMRZ;GMg3D1&8#GZxV39GJqhM zicFP7F4fS@PK~(!G~#d)miHz2>=4VNrUU=PEF@eQ7RgVvTpyl#lSCk<36hE-6Le#I zdDruEihngnL-6c~uzvAYoxI7^y}R?(lmvQeBAtIdM|T9xVegsjKlMC&OkURRQ1H^= zF6DV~YOgZvWl+T*G$kh5Ge=q|!tuo^PWA7((0N{AN%EgPnm;Ctw+$Kf(wYc5Oo4fq zUz~KYWpD-p8&yJHMU948-4LKM-zSN6=x@x4R~Alm@9n~|&fWctmLTD0n0W%b@3MSc zWvqfVQ$QqHOcs7xPsJwMr5NZm2F0d=d65tSL+JllNN!T?w;xALUR$WT`tCiIA-}Ve zFtK*v}Y(JPA7awH_AFX z7y44gq@#QK!+6ahOEJsa;9myzZdu>{B9G`Nv2Ep8inLQ_koIaV0kv>c% z#%CzAw#lDoAPO<5GjGk~_$Ab*(}aydIHJP28HRkyL?fOl)e+-d(cI1YOu0m<0EbNjjYW-A+%x^x%Li z9M8H@#7u~d;AOsbn)v?Udeaz$lqESLoyc)rLCD%)rdxj^K!B;lb)sp7`W6Db&cOk#^^y5QlmhMlXYup>RbU!ZEthFxBhc}sgA;jZcw^=`tQ=#pv}zp&Am< z46I-HQWY~Rr`y9}HmPkCOR8en2rMRB9dlPl$+GM64=;l>cmkiyh8xhXaehd8xc@Pw zAy?c@QOPb%*kK~;EWUvh!Ih2qX6Vo{ERao``&I1P#4CgeClfXCxq=4xd`PIn@%3U! zVV8)Q0ENJ{QLS~V=-0C=30l*tN%Fcd}C<|~4(Ep^y-Q!2$p{e@sPYN(BngogfoLxs}8lIt!H z&P`5UhKTNqV_DI|sU$b9w3sB_(R{NdffcP8T#=y#3Cd?E0lIs zLV`}!S3ZwlObRd=z~lgv#1ioFGg+(wA3u}C7VzPKkAI#Vn8)=85t4|JMwB$-)B#F< zCIgrpV0y*x?5sp{S%ETJk0X=*8}S{n{sz58nn_8n7|_*)kpH}XL%>Z~2(4PluvJ|% z%>R5p@Krl7?5}%7i|X+FB_Bp~cVl^9Q}+M>1ocToK~#90?OM@w+#nEC4Wyrt5(>KFvdLn*|rVaL(}Uo z=iQ=|KY#S2NcVPeK23NYBN zqXaR5G&yDw1>E)^NDvd~cKtBn|G>AFh_(+SK4_(WpzXuByMoW}!6l-%eHhOXz3szT zBYNA1u|@Q@p9Ckt9SEekC;I@>+><4c=Knl_F#ne+I6au*0lS?`JzxWp)B`r8NfQ&)DNNk^LwD0OXS%KhW$^rO_Lp4!LS5QwLGwF{?G5GwxvMH zH@i^B)d{SY6NFNdr+tm^yL360XyI%I0^ng z!QCe~2~L9h6G*pn7Se#kLK;$8NRt8Y>$Nmr9gl#6!=3z z@tY+uxrF`891&1Har(3FR$y`oQ~>cH)f?R&_)Nln-iY%cZ7ux@;`yU=-sl2A57Oq? z??F6&l+GJH1JHxCy$>k3ey~pGjaC49kOI_z2iNmQTRd;H0nmf2YwTo5T2mxw^mltu zd%`P0z5fFW!kRV}l>Pl4v=n>;57IB3xMPjE{;LNZf!Ko~1t0N%B{)6kQSi3ejd`$k zd+@$pJGxzi2U*ukuYxS#cp7lPgS_w3=Yf3>nGeok$V3nFzT^B6ub>F}H0FZ`Wt!IG zK{}oj&l4F97kE(g?dOkJ0xt0a4^RS2kPFx!i3%t^&>(>&;F8~#2gms%RslTHkO%wu zBUnQVxu>!u8!a!W2Q1EqF;}5P1uY1u2Ncc+F_#EXkGzE9ew+_tE)n1iFQK>}=PMOh z?LmMuoP@j{2>0WBr3X}i^Sp%eeweRR02|p}59IYh1;zb1U*Q36#d|%F*9SG^_v3tp z0*EC?J&@H0Rpj^Me7OgRqaMiWgD&8FxdOzow>0{10>|ebP=c!mV+0-vS_+~EA_WZ( zUXuqS1g8f)!RY}@@HIWCY-aO3!0oumb3EP7E89D%7mn>Z&;K!ifCsO)0!*u3I08ihfHnRgL2pDxl2w z%Un~DM60P_PrRrAU-!US=%*5J{6Ynox(D7V=qD0z{6Ynox(Ci#=)WbQ=wBeem!D-v z48QLm#qj(7Q4GKDAI0$d{!t9S?;pkR`~Fc3zwaN#@caHzZ11>_f`Z^49{gJcrw1&- z=>bb{dcYHWMh~zam`;H8z;ptv2c{EXJusaB>w)P6SPx7mzbyyS58y|uak|HIJ(cMx48!aIX5{?cDN9PyDKm-&~K^moz66u&AB{4u+5P=bj zG$XbNY%t+BpWh#M?{jz0y`THs`+4tuF4^2vpMmZc9RL7eFf`D$B-^-ujpiD;?}xaK z{xeb5cA>hSA@0FGfuTMD{s2H^e))7GW4tVL+^;;y;MH(}?ZrVCddg1irzgc6B_@j~ z6f#1Sl>=CZUOp<{`OB6+k>elNb~r#8!|SEh7lh={;|DSrs3?@m8Z;-PZ>({$2xc}9 zRdz&mEI;6{akQkpZ{dxj5S%T|C4E{`y3{jL+nV-$u!T(;0*?znGEcO@6O10pjJ=am z@$BsUIY4Y;kj!Kwq=Z~S_cD@7#_phdnP57mKam$g5-LnmEiocaJ}1V~&gQ)fWSWD9 zx?0we`TGTqX56;7hAx$K8eW+&)bb^=S@M6F^6U60-!5C@G-YIfb|_zzsC$RIdj@`s zNXYv3?u6fRaL_35O|lVp?Y4BO(W0cuZI(X5E5$dbed@n|_vig?jB)D3l7te5c+Qo# z#{TtEgC|QazKS z${F?i(key+G7bR+Qs!RwF*fGQHx!k65kx;+K~&dk2WjeM0g6@JHaOgw^;KM?`f51Q z4_gq$pJG{^U@cx=EA)cSrv8Uq_UD&I?YEEgdP;O$;ph$Imk3{x$sl4GbOn2mJ&GLI z-`^KKUU*PbQ^WDl3E?@8UOhtrLr`i2VHkjm?9&7fTomhR+RO?^I`}4273JsOrg5sa zZs_U)IwXDH3tO`5*$1j?9L%R~;6K>ZfSu`VYQA4T)Z0Ky_ZTAN!HV1%60tx={cVn2 zq-w#zUaE{{m($QzME8+*v_JNi2OLoK-52msq$Nk=Gl4^9jla4DU=`M>*b z0jQ|oS;l7L@tX+`%fj}z$!M4>gT?7`ZrzRu*{erCo`0yFk|l$VGF1RBZdp9@c$pjU z>@a~r5yL-Ny!(s=KYj#!C|LYh*O#yQ5f{@1!gfSaOzJW2C7H&{yT5ISQp+uUOweKq zZ@%pcy3SC(;Sx$H`P2?kS0n~YPmeCZ5wWqLxVPvx=jZ2kSC+Ws*(QP=HJQz}b{iK-hhFtni^}_4N1J6zm+t*c!ap4{%=Dq#rrw%8o3Tn*&G^u^? zF^Vws8484-h{yTGkpoo|MMvWvx^$gzc3=x+K9wM74F_?yh(n5~(KM;QZ$PjsHHY zcg9YR*MAJ759uG+`flc8B%Hw#CB#N|H8UJ3edIS{Xg0o<8#L$!q_MTN&C;A-73@L& zUaob?Z5}BadqmC$_>E+f$*ZMh{mAewKO^EhE{JSB#ewD?Apx79Td&F(7 z?7CL=dsV@=@S`i}kkn-f(6VJP{|T}?h#L=zeDxHJBm|vP-M;t@Jw3M9Apjrp+wyS< z_&jD5Oq8-5o*RjNa1&Lv!eHDaLbaj?r37^b%FOVw%doFCTm(0pczQ@bucdX-WE;MJ(d(^P3`%MJClC9{N|Z z7`bNg3zWrTny0r#-KUPKW@xhHVEEcC>gOEs7#!I)fSJ%v&uKFn6M50t9jtcRMk4QG zgJ%L+FrfklTiWKF?$#XfAGfHz^KE3i2rIt^LifOLd0rQhq7hM8un_!Aip5?2vQ8G# zlgDXmb8%UinYa-kj0zG1du9cIHRATkj_+0ZA@V^k1D^lJS-mfx;6};(=kSzi-X-^t zECYAol-K3tll;1mNdS!aGLF=8lGQ7Vs*>K9+kgf{sJ44-JH`E|3}Ojj(WKTy>; z5fHDeB>|+KnM9L#Rc5oH!FEe;*#)e7MM2=!LQt=;#>hmf(%MY_fpxWlwkJKBNCCs^ zaKsxAR%XDswA%2L!-NjJ0R5o0`Mg0{Fx88`;zAKzGDcY=&R~|6cxn&fzE!^#uD+qq zj0M_bK8cTTx}qwK1gufH(9TDS8i1mrUJpb<36!QONO>$A0mu#z(9jNKlQs5V_^hU8 zq|eJGpcn+1v!%wdAXh*5-aeO^AnRU z%L1Yp(-Ja?KG_BQ0tp}-1?d@AiXYhAd}Q^+)Yo63x1wR9nJAl=cLQO zh_co?5T5vqAzGLir{bP$3URgplB&)Hm6Vj;mU=DD2;B40pUWwd^gVgzQKUhBhc=>l zpe`1w99D3*JaLV8iHTA*MhKbzZ*WB!kX8AwK>EJALuj>vpD&+E1D4MIu*&2V(n$I) zY&oy~6>r&!xbw;QXh%0!w8wy?P#nKH3elq6p1X0rL-F?y9D$}<)g^i+*I47D7epG{ z+ZWz{O>5PKApMX;J*BN?+UiofRbhhaC`j)E(c*N6lY)>v4Cz6TOX9Jv(rn*Gtz$sXMB9PDk~~luw@3jOy}&%89+RaJz`$6ZP2B?8N3~^Z z>6Gc#=CeiHKY9TQH&)f|*Zsm5TKZrvR_1)*O9?0Tr}-_4`Rqyoz!QelN72B;vVgZ{ zY;{c}57*|B<&cygM~jz0l7Z%sTj_;fJ#h6@=Ju>dTTJ_x?rV#arDnxem^-`uPCb!C zx?TwnGhn83cV9|QeOiHiuj@|Gc`r#k&Nncv75~gAq3hbzvF?j2)8xG&6yTDPWr@ z_PAR2-BbAn0=C2Jg-i#%DGUZvplHPsD^AINOL;iw@C*B>NGCK6?;cTel>N zHvu0Qn8U>Eau}EuHMH0InKUqq06+|O=V|w~Qs=7;^+WmCC;p`k3%&AI%}3{*T$!<- ziwk5%Q`1D*QyjVDCJ29&ExOjJBQNW@zwWiK%T2W#0}L)ygRiNAC^`Aas(mie zM&U;B+%N8pEsXMIl^eIq09osefB~i6VTmS&VpT}&O-17{(I$%91z2KPohTU*Z=Z}4 zQ0Z91>pOOBQcn$%Axpe+WWQr~ny96ALuswP*kFfqkz1RscuyjWTjdl>INjAxR4jrJ z8=3Iyhs#p$Vqp0n5n=6#c({di=nocNMtZK2US`cD{7!Qu)pi&4H?O8Qnzr6{vm~0J z!0jsPXE>#}9r7K>$-d7a0eXOt=Dx~%M;e`L)eL6Ww>-)JQ-GnKscxONOZ@);OCElC literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/grey_panel_wall.dmi b/modular_citadel/code/modules/festive/grey_panel_wall.dmi new file mode 100644 index 0000000000000000000000000000000000000000..2a8e5a531c0946346d421f72a3229a17a328b624 GIT binary patch literal 1167 zcmV;A1aSL_P)V=-0C=30l-&x0AQ*;^^D3l{8!J8C$ykgI)-6aZE1}s?S?um73&wsLzMc8O z^XlX0PeS*_v8?FfRFa!CR*jnODBo;JG^xh*zF;|tda1hJ&4qQflYSUysftO|C}Vw< zk*GEGMb6_FlLHI`7!EL5ssW!c!%_?QgqbXz03QkXgy-SFJib4OkVcFwqGS=L7ElT^ z3}86GbVlCAwbpW2fr_af2BE_@;yW^h8}t@Ak48%)fUYit!sqoH0&c=WXw^zitm>K* z;ph8-uiAkVf87&WREOs;`2d9Rcbc0e9LfLy11w2IK~#90?U~_~;xG(^X#uDp*$UXS z039qXupM05zj%pv<4LTMPVsT?o#r1x_D2+uCgyOQbpX}ksMF=`_BoCt#;4G)kN0zT zIQ36q!W{1WfZ-`jn8P~&E>elkdjO;o?E-kKm*{;Tz%>aIzJfaeZud!;kYXQu0Unbu zA;oqBhzS7*!0Q3cHwZug{tm#?&Q$=JiFygZ z{XZ|!Fw_AG|4#u^KdJ*1{+|L;ORWJk{+|NUP^bYk{+|M9LI48rdO-6H0uX@q0B<{| z@(v^_??|QcngS}Xt)cQ7Gb*pOr1F|$s^)*x9f|S>$UuC}ub?l~^&s4^Hv@)3-2g(s zU41vz)DMEPrN04xh~<|XRQfVZD|q!O?a&8@`(xPEI|a0MYCH%ANLmXBuAf;$KS zxxJeJ`EV&Mcz_U)2b2l0Trh%!_X7}sy#VTB%vS-d181490a!<7 zk*@(*hklW-09b8HnXdp?jaQk^0aoh>`5a(1zmQJ>R{M_cuLcU+kO5ZD2N1vtbSI3U zU_I`K0KA9Y2_q<2kNW`t3y?0E6{%d0`vCy2KLJ>c%JsNk3Bb#L-ZWOEVmv6vVfUP)x?J$m7uE+ff01lH3z&L8T9`{=UQ24`93G)LGfB*#G{{ht6FWQi; z_AEUwe7Eb`071akfRUaT^1!K&Kr~VtBT{@`m`7%Ph$CQQ$fGufzGOqt3a)JmYQwfj zMhXFIqa}OQWV~c6h-P+W6~z*LSx4E-B4A~9%6#5$)%c?T1Rwwb2*4k!dAn{taGHtwHFvPJP(oXc`xk#M<8yx#&()ULx`tYvRcde7y19XL@5~>cy8Qj zeL*U)Hwhj)*V0hE2q}1Ybu|q&h>!yP>?#_?9g-Qo4`68)UAlb2iROafa;vTX&7mYn zIFtklhd-a;H!j^d+&N&%L!rn)9y>)2a)%;^OG3h0kv zp9}hW0psv}xE3iAx%Q3%0Q0(gzAm!vv(p{=yC#xFFVx9DHN;J_usH z!~q{@`IQ5!mpF`1^#96%)=M113*}I)a|jkr-cK{kb%sOqeilr1hC}pz7EE=9L-alh zLY?C9`90fTb5)_D$<;82w~jM>l`#yZboOb`NC;}E>(0@Ec&6yE_Q zRG^a$#0<)C!NzrdO_l?O=Rgi}d%%-4%VGK-kgLM=xMQ9}HFBUk3|g(vpv=A@cZK{^ p6PFZzapbNzChG+U{927%@&hDW4s)mi7&`y}002ovPDHLkV1m!yE;IlD literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/red_brick_wall.dmi b/modular_citadel/code/modules/festive/red_brick_wall.dmi new file mode 100644 index 0000000000000000000000000000000000000000..0aa3e105f242fc31992505281e5fc01a1780c17b GIT binary patch literal 1630 zcmV-k2BGfFDZ*Bkpc$}4#T?>OC6o#+$S4dqu*2nE`Mlrfre?eN=k~IUB`S%wKwy_w# z-Fe`7_2GClX2~JTDVGu0qMai>$qb~u++%Pt~i{HXKU-Ts&~V+V)e~f|#XX^T4>viw6!^+b)(?Kzrcd;Metf z#R0zQbz4J;f}02C>3V;_^|?bqhX=$ON)!YS+HXJ+^mx!*Ly3aufkeSK@Ids29UhU8 zdPG9%5ltXnW0K%Ycu?I8M|n`+&c`Td1f(Gz=z2&!3{lWb3I=$f&$IKNqJ3>W9tJ27 zCT1jp0Eg{!kRT?ICdVX#fcqYJ31Wh|T|W%?KQOH&D%;rzFIuS|%62v$uHf@~a0%#b zXX7QHx1Eh^KyN!6OF(b?POuX^fIymik}n|5JxKy-{!bGK^M9Fw-GdPxklVS`12P~< zJs?A>)B`dp5T8}FbJtny0jWUhL3q(h{ova_zXz(hL`G8t5 z|LNUSw-hM(W;Z)kC(yH;!2cyRmWa;(Ndmtg)d@QCf0AI`QfmY~`9Ddp289|yPySC5 zkOOvto#6iyJbZ$kU?+Gyfpj}3Aq_|*q#>1rG$|nA=2lu$=A>*$6EhOCY9+_Is0-L= zCdYtULiU{`aH)j#m$^bf{>Jgox?6!uC6odR4`RL1?SV-otoMy55Bw;mf^h#R z-Z#1c(1W-+_InWSAI1AdF97r)Ztn~Qw;!zIeWNP?J%|B{;lb_x(Gu<(EdcZ&>EhiC ziED}kjs9*AYHxTWsP}(BfnU?6g1o=qgO-AC;6eO`6L+jJ)qnGVA`pAPQt%NENP^vi z9tD3lJDvyEZV%qKYg=yD;6c*$+N&T5IHn9Z;6d7V>GMFphs=Yu7&6g=v~RnAL@UUG zei`$@gDg$cJs!mCIpIE$o8bcVq!ee5nG&wzo9;?*hlC9+U((4|oIy z30ew*2O~gnqc>UB>0*hR5r759^iJI%Ub(;TU009r) z?gf}uy|4wGH2*I`VD3Q-snrl$)C*h4EP{Fx#B&cqQUF07fa52pHDsIWspi4@dqLK( zi%fOK@lz=v&-e3OQx%C;Q^A^el>$uN1FNCGlz`)>Qh=*_V61}vLIRGTN&&9!fwda? z?@7q|C-!+i7wq$XF4*V&T(HmkxnQ67bHP6E=YoCS&jtIup9}VRKNrh89-|;5c!UT4 zR>AH8Nw9lB66_w(1fS6ZtOte@U_CIL0PBI_1XvFYC%}4OI04oJ!wIk+7*2roz;FVr c2S(5T2k4M6(|eZgg#Z8m07*qoM6N<$f_7H%J^%m! literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/red_brick_window.dmi b/modular_citadel/code/modules/festive/red_brick_window.dmi new file mode 100644 index 0000000000000000000000000000000000000000..de6c466416440040d6c61a302745cf917ef87ecf GIT binary patch literal 4028 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 N+`MkATdnO7{XeVs*iHZd literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/sidewalk.dmi b/modular_citadel/code/modules/festive/sidewalk.dmi new file mode 100644 index 0000000000000000000000000000000000000000..00e5eaa49b93d24b27631b81a19b94778fc95738 GIT binary patch literal 1071 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 FV1m+Z;(P!A literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/streetdecals.dmi b/modular_citadel/code/modules/festive/streetdecals.dmi new file mode 100644 index 0000000000000000000000000000000000000000..fc36212d9a3974579840ea2eac6522339ee841d4 GIT binary patch literal 1807 zcmZuydo&wZ8owgMXpxYjv_;x2Dh92z6ip-{9I3Y6GFnunbP!XIl6pisCMwfrw5#n# z+IY0Ot*TdzgA&FH#w!LLq&DhNsmG9|LW$X&?LO=|^T)m4`Odk&d%kmjk9+g1H%Uv= zND}~{<>^86QPvjaD%4O{?i7oN^U5+#_X|oSMkYjDjgC)@ro{n}!h3kPRr7`|oY?=~ zO26s;mFvAvf^uPsY|~5SMO?ftSF+?f;N^9!=}*gt$<*Xs4I#ACq$F{UffMb~y+aRm zNO^80Z60^L^E=&-%k9txCZAdkS;|}OV3@t#N8Y0bg{gP^a%18ZJ>44zd*O>_V;5-= zLYMb%nGRHHfIgcVfH;P{{32kt+%WD%B#Zhgw~}Uqink9yj5xqs;X!3#hXZD?#dCF? zQ2|x_1D4{~HJ0VHM7*es5r!K+_L_L`6=tAr7GDrFN4|6h4m@u9xNTFrhTk}n>+|niA)L4CX_DWzHB9Fu2 zED3C3Ep^psexDlNDs#qQxQ?^Jfs!1hHX)&`+@zo&*-+)xh_NX)mR`v+ z>5Ky-FcGbC3Dy!DrC2btUMz*-&K8}}{flagJsm*z&~u1NrThhU*kf_4JD2So6d7XQ;mEzoKLsg;K7hg zP5&#|*H&p9VDY4O;$qvrozkumm3={e57$+`S;04I-$kZjaj>-Mu8*HyQwdt#XKJ&} z;AD2P`TERE`vz9f+3XppgNuU+t?C@H*$*Qp=wOC;z!Wg z)ZesOZF0%%N_}$*9*A^1%I|lZZkXiv zQmZNDQajP}BwgNY{k%^K!7>;1VN5-A3xzrbty}oQ_O{)uwt?yov-OPv0S5(*mCMT9 zm3}%}&^w*ttl3`SizJwSK25Nnd-J2%x}DS4ryf=_+BrM>G$$u5BO|#%vx7NF3N&Eh z3VPkE(Z1)lV(z`Op#)|fFX%N~1WX69YP?&v+PNiFKwz)g?pw&En&9-jIo>4XCg4Vm zmf+HcU@f$f$YA{j%d;LyfZI46e9vyH)!z?RXpu{tkHbvH-v!?~(-#Oh*^~{v0y5k$ zVV%4|kj?LzWMk$yqgH??=zt5~!lW1|rQ+8vSqc)7Hzl(WFRpdaokc=HYDQ0S1(v$x z$k1s`ZftTBGtP})((S2)QQQ>I;4LCQ<#6c;hW5qH3m3Fry{3N7Dt)Evh0Z$LTU&2u zNSTU#6qoEcoWbfJ(RvNSw-Zoea;qOGoJS5!|r7!krXN_+7kd+K!$>i-|k zsa^+8zhm@C7T(bXzP-TGQLIJ!cpy9l$PpUQ9bWmIy%8p$Q~_fp39q|` SxTq+9IN<5#O?-(DWBwE32_u03 literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/trainplatform.dmi b/modular_citadel/code/modules/festive/trainplatform.dmi new file mode 100644 index 0000000000000000000000000000000000000000..79109581672a99e4df1c1c1f1ae66fc0bbbff11a GIT binary patch literal 506 zcmeAS@N?(olHy`uVBq!ia0vp^3qY8K8Aw(>tdav#`~f~8t_Kbr2nq@c3k!>iiUP6? z<#&Vtr5H=P@u;%;~+nk?XL6z_E{!^PMK$ z3|gE$eNupt$$Np0m3)C8d_Mo0%4T&fe|NL|aruK`ciN9zbpEsawB7efvVeJ_Uidk_ z{VCyMcMG4bsoz}oUQ1!~qn+Zsq zWPY*H!T)a`}E z^(Tygj=$sS;uw(rwC%KZ|FDoFkA7=#r!7Q2Bo*y&L=IPjU?tT<^H`@x)~Ay_Kh9 p8uzz@Oa_7C=Edzx?-jn|J~wAc=iwFp3xWP*@O1TaS?83{1OR-<);jfFDZ*Bkp zc$|&VJqp7x374}gHvD1ld$eWHzXP)W=1j8AVD?? my59>D#-p%qsQZ&4Y[M] climbs into \the [src]!") + M.forceMove(src.loc) + add_occupant(M) + if(!driver) + driver = M + if(gear != "auto") + gear = driver.a_intent + start_engine() + driver.pixel_x = pixel_x + driver.pixel_y = pixel_y + return TRUE + +/obj/vehicle/sealed/vectorcraft/rideable/mob_exit(mob/living/M) + .=..() + driver.pixel_x = 0 + driver.pixel_y = 0 + +/obj/vehicle/sealed/vectorcraft/rideable/wheelchair + name = "Hoverchair" + desc = "A chair with big hoverpads. It looks like you can move in this on your own." + icon = 'icons/obj/vehicles.dmi' + icon_state = "wheelchair" + layer = OBJ_LAYER + max_integrity = 100 + armor = list("melee" = 10, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 10, "bio" = 0, "rad" = 0, "fire" = 20, "acid" = 30) //Wheelchairs aren't super tough yo + canmove = TRUE + density = FALSE //Thought I couldn't fix this one easily, phew + + + max_acceleration = 1.5 + accel_step = 0.5 + acceleration = 0.35 + max_deceleration = 1 + max_velocity = 20 + boost_power = 15 + gear = "auto" + +/obj/vehicle/sealed/vectorcraft/rideable/wheelchair/ComponentInitialize() //Since it's technically a chair I want it to have chair properties + . = ..() + AddComponent(/datum/component/simple_rotation,ROTATION_ALTCLICK | ROTATION_CLOCKWISE, CALLBACK(src, .proc/can_user_rotate),CALLBACK(src, .proc/can_be_rotated),null) + + +/obj/vehicle/sealed/vectorcraft/rideable/wheelchair/Destroy() + if(has_buckled_mobs()) + var/mob/living/carbon/H = buckled_mobs[1] + unbuckle_mob(H) + return ..() + +/obj/vehicle/sealed/vectorcraft/rideable/wheelchair/move_car() + . = ..() + cut_overlays() + playsound(src, 'sound/effects/roll.ogg', 75, 1) + if(has_buckled_mobs()) + handle_rotation_overlayed() + +/obj/vehicle/sealed/vectorcraft/rideable/wheelchair/post_buckle_mob(mob/living/user) + . = ..() + handle_rotation_overlayed() + +/obj/vehicle/sealed/vectorcraft/rideable/wheelchair/post_unbuckle_mob() + . = ..() + cut_overlays() + +/obj/vehicle/sealed/vectorcraft/rideable/wheelchair/setDir(newdir) + ..() + handle_rotation(newdir) + +/obj/vehicle/sealed/vectorcraft/rideable/wheelchair/proc/handle_rotation(direction) + if(has_buckled_mobs()) + handle_rotation_overlayed() + for(var/m in buckled_mobs) + var/mob/living/buckled_mob = m + buckled_mob.setDir(direction) + +/obj/vehicle/sealed/vectorcraft/rideable/wheelchair/proc/handle_rotation_overlayed() + cut_overlays() + var/image/V = image(icon = icon, icon_state = "wheelchair_overlay", layer = FLY_LAYER, dir = src.dir) + add_overlay(V) + + +/obj/vehicle/sealed/vectorcraft/rideable/wheelchair/proc/can_be_rotated(mob/living/user) + return TRUE + +/obj/vehicle/sealed/vectorcraft/rideable/wheelchair/proc/can_user_rotate(mob/living/user) + var/mob/living/L = driver + if(istype(L)) + if(!user.canUseTopic(src, BE_CLOSE, ismonkey(user))) + return FALSE + if(isobserver(user) && CONFIG_GET(flag/ghost_interaction)) + return TRUE + return FALSE diff --git a/modular_citadel/code/modules/festive/white_alleywaybricks.dmi b/modular_citadel/code/modules/festive/white_alleywaybricks.dmi new file mode 100644 index 0000000000000000000000000000000000000000..c5026661e30eb3c9bee9480832b57d6286e769e6 GIT binary patch literal 753 zcmV005u_0{{R3dEt5<0000IP)t-sz`(#S zFE2qsLA$%Vy}iA_z`%UEl8yiX00DGTPE!Ct=GbNc006OiR9JLGWpiV4X>fFDZ*Bkp zc$|&Xu?oW=5XSLYpF)z^Qlo2^l29@kq7Ts~?tbe(DE|lkN%h)LC8_pJ=sBDU}HO-qn=bz~SqXA<8 zqhtVj>PAZfdg?~W1L(0pPyLPo?v(dIf&x-RND?7UE09z-8ZZVhd!Q}G?5glTYsE12 z-%s@c=?dh&<*]Nklf2OTUD8kfuf~_`6 zJyJe0N?>B1*08_2h9b-l;O#m}%QW?vrAJRyBQq@0C5 znCFc^Lh^oiRv@nQ!CV<&K>EIYLi-w8uQKJR448fA@LfXZP)?wupdV1l=?4-jYy2jm zj)HzbC8r-qXkSC;aMPJNwEpDj?H;;n@B}DV%eVy9M-#>|m(@p$3@1dnN@Fgok8-t+ zxvai zM~Wuy2P6qYdq43XOd@r{HeXDkz284zTfw-7_Wl3~&1-1B${mO8{Q(j>ht8pMh{!o~ j4u69~?I+V3YPWO$D>HD&7Mp~300000NkvXXu0mjfjmBg# literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/white_brick_wall.dmi b/modular_citadel/code/modules/festive/white_brick_wall.dmi new file mode 100644 index 0000000000000000000000000000000000000000..67784e57712e48b84fc75c9da645859e1e7f862b GIT binary patch literal 1623 zcmV-d2B`UoP)FSad{Xb7OL8aCB*J zZU6vyoRyT_3WFdRhL80sq>dZw=X58d7#*xzkXANj%|K<|{$jz{Si`q7KX_h!{QQa8 zu{zZaE6+832xHZx*?|?iJtbcCPR>Q1Q6h!9O1Bi&wNA{#C{0vENw18ZtCW(#w0E(L z-%JKDIlvSElO`JQ2{U%)8k-|Ktv?1E1u000E~NklesvF! zy!!rEDUzUpS;Mjcw=b#2Uk1czG&Z}7ST5FYp9QeD`ZKm8oO7=~y!YgK?_a)IW0$is z8*sqhsxKUYai&3F?eZKY;D9JV4Jk0zEG|m8t3Y4Kqay^S^@xH37bTDZy8xbm^T0$2 z_Y?#HECK6*bI(6-0XSf7`=u-)7Ae>~Fz)sgfCJXHo8=Yo9)vqMU$0jj5SlLAGaON{ zdthF#_Xk|RbtvfYfO&=^3Ze(?JKzXYe4*nhHanrzwaeU`wgmIs;*iTrA+TME?p zV&|Qz6KFq95K7THf#UOjmLRN0b%KukpCwqA)EYrg{?8JuL7_&_lmGK3a{~^7gW%s2 zJbZ$K;2?NB!RT_%Vl*JJ7!9c`Mw0>-&bQJUnv;q#nwYWhs+AmTQWuEPOpXno9J5gE z`hiXFS)}tv>AaCIzuQzH`B>AXdc$|tcz<58q*p2iQA`*l6@(q{*`5mtX9WU$p}=es zitj9e%O$LD=7@muj?>S&TY<|ZPyxh)RBv>9U@{5oc_Yq)w6ydqi06;ed7~QuJxGgV zzX$RBQ95t*1V9hc@-9%Yzpzf{jjjOnAO$Fa2mARWAI}?k0D6#h$xeo(XNm-k{%#Ly zceoSO`#+#y{hhZIl>Pl4v=saY9;9zLamO>}`gadFf?*Ft3O?ciOK^D5qu|eCC-dOi z?ZNwUZRv6i9%NmYUIkgeF*M+S2YKJE&jbA)GEdfG$V3nFzPD4Cf+FbCm=7KlX`1fw zARW(%=ZTz$4|q`YsZ)mnF7W~nPy$Pk3s@yk0q{Qn2`mAZ{I)z;C9njS@|Mmb4}t`Y zxf*g$rAangexM%EI3LDbg%TCCAfO&lI3L7ZB0xR!5{m0_K8U$QfOWit;(DB~RG_^9 z0oHL6@_Ha#kMortPyyEP63XjgzES}!WN)D!2=&2tT;Kr3^*CSQ0WQUBJ&@N2HRRXh ze1!stC0jj^)dyAN*W-M-2Z*g6$m)YG;C#6P#J09H`tJhA=N?dk-2)kcL4uZo=)sVJ zh6gXn0|~+50Z(vvz!H2-4=Rh$Y#B;g-jCEvmjo25R(E3@&FvaIISVuRIfD;*7pTPzb2Wg$MFjl zQ0Dt(uBk|()l{%1UQ~dodtf#6QwcbJp#ogp17j8R6A3tep#ogp18X((-;+@EFXH`v zDa8BzQi%8ar4aA;OCjFxmqNVXFNJu&UkdSlzZByAekuGr9`q~92_E6W-&JsUz!DrD zumpz(Ji%x50PBJ21XvGDC%}4OIsw)L(+RL1m`;H8z;ptv2c{EXJusaB>w($x{{}AW V1grd-Xu<#h002ovPDHLkV1jv6?xp|$ literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/festive/white_brick_window.dmi b/modular_citadel/code/modules/festive/white_brick_window.dmi new file mode 100644 index 0000000000000000000000000000000000000000..3477e008390ac6deb18163504bd2aadc8236b487 GIT binary patch literal 3867 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 aI{)(^2k?hV=-0C=2JR&a84 z_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex6#a*U0*I5Sc+(=$pSoZ^zil2jm5sXRYF zB{eVJP>G8(C9|j)C}haRnO2mTn+jp0D>TBTP+7s%&jsuR02fpy;>P%5<^TWy%}GQ- zR5*>DlRXZ?FbsvA<^n+~d&R&UDFZW7FVKMtF!TZpxjy-`;@Y)Zcv&)hil3hy0HzBQ z47Z{wgmkmPkMs3Kw7{?yO^?s8zHR&mXeBzpJfJ$@V4RztV8DhVuLH5@H-I?MUU1o# zNj+#D2(aG;0b~vts17P1lFUF#bIFGQeOMf5CD4liPzVYjy;`@Sm6Aa8_iFJ7ASJNL z4X`zt2gLx4TnF0FP5^z_3eeX@@t^>`3kAR&*wV`+9sQ{06oA8OB?NHv{l8(8wZ=eO R=t%$o002ovPDHLkV1o1#s80X@ literal 0 HcmV?d00001 diff --git a/modular_citadel/code/modules/vectorcrafts/vectorcraft.dm b/modular_citadel/code/modules/vectorcrafts/vectorcraft.dm index 21913e4453..bbb0ff86e8 100644 --- a/modular_citadel/code/modules/vectorcrafts/vectorcraft.dm +++ b/modular_citadel/code/modules/vectorcrafts/vectorcraft.dm @@ -27,9 +27,21 @@ var/gear var/boost_cooldown + //Changes for custom + var/i_m_acell + var/i_m_decell + var/i_boost + var/i_acell var/mob/living/carbon/human/driver +/obj/vehicle/sealed/vectorcraft/Initialize() + ..() + i_m_acell = max_acceleration + i_m_decell = max_deceleration + i_boost = boost_power + i_acell = acceleration + /obj/vehicle/sealed/vectorcraft/mob_enter(mob/living/M) if(!driver) driver = M diff --git a/modular_citadel/code/modules/vectorcrafts/vectortruck.dm b/modular_citadel/code/modules/vectorcrafts/vectortruck.dm new file mode 100644 index 0000000000..ef02584510 --- /dev/null +++ b/modular_citadel/code/modules/vectorcrafts/vectortruck.dm @@ -0,0 +1,147 @@ +/obj/vehicle/sealed/vectorcraft/boot + name = "Hovertruck" + desc = "An all-terrain vehicle built for traversing rough terrain with ease. This one comes equipt with a sizeable boot that can store up to 3 items!" + icon_state = "truck" + max_integrity = 200 + var/obj/structure/boot = list()//Trunkspace of craft + var/boot_size = 3 + max_acceleration = 3 + accel_step = 0.15 + acceleration = 0.3 + max_deceleration = 5 + max_velocity = 80 + boost_power = 20 + enginesound_delay = 0 + var/static/radial_heal = image(icon = 'icons/mob/radial.dmi', icon_state = "radial_heal") + var/static/radial_eject_car = image(icon = 'icons/mob/radial.dmi', icon_state = "radial_eject_car") + var/static/radial_eject_key = image(icon = 'icons/mob/radial.dmi', icon_state = "radial_eject_key") + var/static/radial_eject_boot = image(icon = 'icons/mob/radial.dmi', icon_state = "radial_eject_boot") + +/obj/vehicle/sealed/vectorcraft/boot/MouseDrop_T(atom/dropping, mob/user) + if(istype(dropping, /obj/)) + if(LAZYLEN(boot) < boot_size) + boot += dropping + to_chat(user, "You add the [dropping] to the [src]'s boot!") + return TRUE + if(iscarbon(dropping)) + var/mob/living/carbon/M = dropping + mob_try_enter(M) + to_chat(user, "You put [M] into the [src]!") + return TRUE + +/obj/vehicle/sealed/vectorcraft/boot/proc/eject_boot() + for(var/obj/o in boot) + o.forceMove(drop_location()) + +/obj/vehicle/sealed/vectorcraft/boot/ambulance //weewoos have to go fast + name = "Ambulance" + var/obj/machinery/sleeper/Sl + max_acceleration = 3 + accel_step = 0.15 + acceleration = 0.3 + max_deceleration = 5 + max_velocity = 100 + boost_power = 25 + enginesound_delay = 0 + icon_state = "ambutruck" + var/weewoo = FALSE + var/weewoocount = 0 + +/obj/vehicle/sealed/vectorcraft/boot/ambulance/Initialize() + . = ..() + Sl = new /obj/machinery/sleeper + +/obj/vehicle/sealed/vectorcraft/boot/ambulance/process() + ..() + if(weewoo) + weewoo() + +/obj/vehicle/sealed/vectorcraft/boot/ambulance/MouseDrop_T(mob/living/L, mob/user) + if(isliving(L)) + Sl.close_machine(L) + to_chat(user, "You put [L] into the [src]'s emergency sleeper!") + return TRUE + ..() + +/obj/vehicle/sealed/vectorcraft/boot/ambulance/proc/weewoo() + if(weewoocount>10) + weewoocount = 0 + + return + weewoo++ + +/obj/vehicle/sealed/vectorcraft/boot/ambulance/ui_interact(mob/user) // taken from the microwave/grinder + . = ..() + + var/list/options = list() + + if(isAI(user)) + options["radial_eject_car"] = radial_eject_car + else + if(vector["y"] == 0 && vector["x"] == 0) + options["radial_eject_car"] = radial_eject_car + if(Sl.occupant) + options["radial_heal"] = radial_heal + if(inserted_key) + if(!driver) + options["radial_eject_key"] = radial_eject_key + if(length(boot)) + options["radial_eject_boot"] = radial_eject_boot + + var/choice + + if(length(options) < 1) + return + if(length(options) == 1) + for(var/key in options) + choice = key + else + choice = show_radial_menu(user, src, options, require_near = !issilicon(user)) + + // post choice verification + if(isAI(user) || !user.canUseTopic(src, !issilicon(user))) + return + + switch(choice) + if("eject_car") + if(driver) + remove_occupant(driver) + else + for(var/mob/m in occupants) + remove_occupant(m) + if("radial_heal") + Sl.ui_interact(user) + if("eject_key") + to_chat(user, "You remove \the [inserted_key] from \the [src].") + inserted_key.forceMove(drop_location()) + user.put_in_hands(inserted_key) + inserted_key = null + if("eject_boot") + eject_boot(user) + + +/obj/vehicle/sealed/vectorcraft/boot/ambulance/attackby(obj/item/I, mob/user, params) + if(istype(I, /obj/item/reagent_containers/sleeper_buffer)) + var/obj/item/reagent_containers/sleeper_buffer/SB = I + if((SB.reagents.total_volume + Sl.reagents.total_volume) < Sl.reagents.maximum_volume) + SB.reagents.trans_to(Sl.reagents, SB.reagents.total_volume) + visible_message("[user] places the [SB] into the [src].") + qdel(SB) + return + else + SB.reagents.trans_to(Sl.reagents, SB.reagents.total_volume) + visible_message("[user] adds as much as they can to the [src] from the [SB].") + return + if(istype(I, /obj/item/reagent_containers)) + var/obj/item/reagent_containers/RC = I + if(RC.reagents.total_volume == 0) + to_chat(user, "The [I] is empty!") + for(var/datum/reagent/R in RC.reagents.reagent_list) + if((obj_flags & EMAGGED) || (allowed(usr))) + break + if(!istype(R, /datum/reagent/medicine)) + visible_message("The [src] gives out a hearty boop and rejects the [I]. The Sleeper's screen flashes with a pompous \"Medicines only, please.\"") + return + RC.reagents.trans_to(Sl.reagents, 1000) + visible_message("[user] adds as much as they can to the [src] from the [I].") + return diff --git a/tgstation.dme b/tgstation.dme index 7aca376ba7..8b08569e80 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -15,6 +15,7 @@ // BEGIN_INCLUDE #include "_maps\_basemap.dm" +#include "_maps\map_files\FestiveBall\doorButtonOrganizer.dm" #include "code\_compile_options.dm" #include "code\world.dm" #include "code\__DEFINES\_auxtools.dm" @@ -744,6 +745,7 @@ #include "code\datums\weather\weather_types\acid_rain.dm" #include "code\datums\weather\weather_types\ash_storm.dm" #include "code\datums\weather\weather_types\floor_is_lava.dm" +#include "code\datums\weather\weather_types\ice_storm.dm" #include "code\datums\weather\weather_types\radiation_storm.dm" #include "code\datums\weather\weather_types\snow_storm.dm" #include "code\datums\weather\weather_types\void_storm.dm" @@ -786,6 +788,7 @@ #include "code\game\area\Space_Station_13_areas.dm" #include "code\game\area\areas\away_content.dm" #include "code\game\area\areas\centcom.dm" +#include "code\game\area\areas\edina.dm" #include "code\game\area\areas\holodeck.dm" #include "code\game\area\areas\mining.dm" #include "code\game\area\areas\shuttles.dm" @@ -2008,6 +2011,7 @@ #include "code\modules\clothing\gloves\boxing.dm" #include "code\modules\clothing\gloves\color.dm" #include "code\modules\clothing\gloves\miscellaneous.dm" +#include "code\modules\clothing\gloves\mittens.dm" #include "code\modules\clothing\gloves\ring.dm" #include "code\modules\clothing\gloves\tacklers.dm" #include "code\modules\clothing\head\_head.dm" @@ -3754,6 +3758,12 @@ #include "modular_citadel\code\modules\custom_loadout\read_from_file.dm" #include "modular_citadel\code\modules\eventmaps\Spookystation\halloweenPersiWork.dm" #include "modular_citadel\code\modules\eventmaps\Spookystation\JTGSZwork.dm" +#include "modular_citadel\code\modules\festive\32x64.dm" +#include "modular_citadel\code\modules\festive\festive_decals.dm" +#include "modular_citadel\code\modules\festive\festive_notes.dm" +#include "modular_citadel\code\modules\festive\privacy.dm" +#include "modular_citadel\code\modules\festive\turfs.dm" +#include "modular_citadel\code\modules\festive\wheelchair.dm" #include "modular_citadel\code\modules\mentor\dementor.dm" #include "modular_citadel\code\modules\mentor\follow.dm" #include "modular_citadel\code\modules\mentor\mentor.dm" @@ -3795,5 +3805,6 @@ #include "modular_citadel\code\modules\vectorcrafts\vector_process.dm" #include "modular_citadel\code\modules\vectorcrafts\vectorcar_heads.dm" #include "modular_citadel\code\modules\vectorcrafts\vectorcraft.dm" +#include "modular_citadel\code\modules\vectorcrafts\vectortruck.dm" #include "modular_citadel\code\modules\vectorcrafts\vectorvariants.dm" // END_INCLUDE From c52a411938b93c74c24808f8e496216eaab05565 Mon Sep 17 00:00:00 2001 From: keronshb Date: Sat, 20 Nov 2021 18:29:56 -0500 Subject: [PATCH 02/11] Fixes some area/apc runtimes. --- .../map_files/FestiveBall/FestiveStation.dmm | 981 +++++++++--------- 1 file changed, 482 insertions(+), 499 deletions(-) diff --git a/_maps/map_files/FestiveBall/FestiveStation.dmm b/_maps/map_files/FestiveBall/FestiveStation.dmm index f401e7f1db..d31426989e 100644 --- a/_maps/map_files/FestiveBall/FestiveStation.dmm +++ b/_maps/map_files/FestiveBall/FestiveStation.dmm @@ -1012,7 +1012,7 @@ /area/edina/street) "acJ" = ( /turf/open/floor/plasteel, -/area/edina) +/area/service/theater) "acK" = ( /obj/structure/window/reinforced{ dir = 8 @@ -2903,7 +2903,7 @@ pixel_y = -1 }, /obj/machinery/power/apc{ - areastring = "/area/ai_monitored/storage/eva"; + areastring = "/area/ai_monitored/command/storage/eva"; dir = 8; name = "E.V.A. Storage APC"; pixel_x = -24 @@ -3996,7 +3996,7 @@ /area/ai_monitored/turret_protected/aisat/hallway) "ajK" = ( /turf/closed/wall/r_wall, -/area/engineering) +/area/engineering/main) "ajL" = ( /obj/effect/turf_decal/weather/snow/corner{ color = "#FFFFFE"; @@ -4033,14 +4033,14 @@ icon_state = "2-4" }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "ajP" = ( /obj/structure/cable{ icon_state = "2-8" }, /obj/machinery/light/floor, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "ajQ" = ( /obj/machinery/power/port_gen/pacman, /obj/item/stack/sheet/mineral/plasma{ @@ -4067,7 +4067,7 @@ /area/ai_monitored/turret_protected/aisat/hallway) "ajU" = ( /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "ajV" = ( /obj/machinery/firealarm{ dir = 4; @@ -4084,11 +4084,11 @@ icon_state = "1-2" }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "ajY" = ( /obj/machinery/power/grounding_rod, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "ajZ" = ( /obj/structure/closet/cabinet{ pixel_y = 15 @@ -4130,7 +4130,7 @@ /obj/machinery/power/tesla_coil, /obj/structure/cable, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "aki" = ( /obj/machinery/light/small{ dir = 8 @@ -4182,13 +4182,13 @@ }, /obj/machinery/light/floor, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "akq" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "akr" = ( /obj/structure/cable{ icon_state = "2-8" @@ -4197,7 +4197,7 @@ icon_state = "4-8" }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "aks" = ( /obj/structure/cable{ icon_state = "2-8" @@ -4210,7 +4210,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "akt" = ( /obj/machinery/light/small{ dir = 4 @@ -4235,21 +4235,21 @@ icon_state = "1-4" }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "akv" = ( /obj/machinery/power/tesla_coil, /obj/structure/cable{ icon_state = "0-8" }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "akw" = ( /obj/machinery/power/tesla_coil, /obj/structure/cable{ icon_state = "0-4" }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "akx" = ( /obj/structure/cable{ icon_state = "1-8" @@ -4258,7 +4258,7 @@ icon_state = "1-2" }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "aky" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/dark, @@ -4363,13 +4363,13 @@ dir = 6 }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "akM" = ( /obj/machinery/field/generator{ anchored = 1 }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "akN" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4378,7 +4378,7 @@ dir = 10 }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "akO" = ( /obj/machinery/recharge_station, /turf/open/floor/plasteel/dark, @@ -4464,7 +4464,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "alb" = ( /obj/structure/cable{ icon_state = "2-8" @@ -4477,7 +4477,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "alc" = ( /turf/open/floor/plasteel/stairs/right, /area/edina/street/secondary/command) @@ -4531,13 +4531,13 @@ dir = 6 }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "all" = ( /obj/structure/reflector/single/anchored{ dir = 10 }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "alm" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/structure/cable/yellow{ @@ -4587,7 +4587,7 @@ icon_state = "2-4" }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "alt" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -4644,7 +4644,7 @@ icon_state = "1-2" }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "alB" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/aisat_interior) @@ -4784,7 +4784,7 @@ pixel_y = 1 }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "alX" = ( /obj/structure/table/wood, /turf/open/floor/carpet/royalblue, @@ -4997,7 +4997,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "amD" = ( /obj/structure/cable{ icon_state = "1-8" @@ -5006,7 +5006,7 @@ icon_state = "4-8" }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "amE" = ( /obj/structure/cable{ icon_state = "1-8" @@ -5025,7 +5025,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "amF" = ( /obj/structure/fence, /turf/open/floor/grass/snow/edina{ @@ -5040,14 +5040,14 @@ icon_state = "1-4" }, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "amH" = ( /obj/structure/cable{ icon_state = "1-8" }, /obj/machinery/light/floor, /turf/open/floor/engine, -/area/engineering) +/area/engineering/main) "amI" = ( /obj/machinery/light/floor, /turf/open/floor/carpet/royalblue, @@ -5282,18 +5282,18 @@ req_access_txt = "10; 13" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "anh" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/engineering) +/area/engineering/main) "ani" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plating, -/area/engineering) +/area/engineering/main) "anj" = ( /obj/structure/flora/grass/both, /turf/open/floor/grass/snow/edina{ @@ -5413,9 +5413,6 @@ }, /turf/open/floor/plating, /area/command/heads_quarters/ce) -"anw" = ( -/turf/open/floor/plasteel, -/area/engineering) "anx" = ( /obj/machinery/power/emitter/anchored{ dir = 1 @@ -5424,22 +5421,18 @@ icon_state = "0-2" }, /turf/open/floor/circuit/red, -/area/engineering) +/area/engineering/main) "any" = ( /obj/machinery/the_singularitygen/tesla, /obj/machinery/light/floor, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "anz" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel, -/area/engineering) -"anA" = ( -/obj/machinery/light/floor, -/turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "anB" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -5823,7 +5816,7 @@ icon_state = "1-4" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "aot" = ( /obj/structure/cable{ icon_state = "1-4" @@ -5832,34 +5825,34 @@ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "aou" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/closed/wall/r_wall, -/area/engineering) +/area/engineering/main) "aov" = ( /obj/structure/cable{ icon_state = "2-8" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "aow" = ( /turf/open/floor/plating, -/area/engineering) +/area/engineering/main) "aox" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plating, -/area/engineering) +/area/engineering/main) "aoy" = ( /obj/structure/cable{ icon_state = "2-4" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "aoz" = ( /obj/structure/cable{ icon_state = "1-8" @@ -5868,13 +5861,13 @@ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "aoA" = ( /obj/structure/cable{ icon_state = "1-8" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "aoB" = ( /obj/machinery/light/small, /turf/open/floor/carpet/royalblack, @@ -6455,13 +6448,13 @@ icon_state = "1-4" }, /turf/open/floor/plating, -/area/engineering) +/area/engineering/main) "apW" = ( /obj/structure/cable{ icon_state = "0-8" }, /turf/open/floor/plating, -/area/engineering) +/area/engineering/main) "apX" = ( /obj/machinery/announcement_system, /turf/open/floor/plasteel/dark/telecomms, @@ -6972,13 +6965,13 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "arg" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "arh" = ( /obj/machinery/power/apc/highcap/fifteen_k{ areastring = "/area/engineering"; @@ -6990,7 +6983,7 @@ icon_state = "0-4" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "ari" = ( /obj/structure/cable{ icon_state = "2-8" @@ -6999,24 +6992,18 @@ icon_state = "2-4" }, /turf/open/floor/plasteel, -/area/engineering) -"arj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "ark" = ( /obj/machinery/quantumpad{ map_pad_id = "EngieL2"; map_pad_link_id = "AME" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "arl" = ( /obj/machinery/vending/engineering, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "arm" = ( /obj/structure/particle_accelerator/end_cap, /obj/structure/particle_accelerator/fuel_chamber, @@ -7033,7 +7020,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "arn" = ( /obj/item/stack/cable_coil/red, /obj/item/wrench, @@ -7042,7 +7029,7 @@ icon_state = "1-2" }, /obj/machinery/power/apc/highcap/fifteen_k{ - areastring = "/area/engineering"; + areastring = "/area/engineering/main"; dir = 1; name = "Engineering APC"; pixel_x = 30 @@ -7050,7 +7037,7 @@ /obj/structure/cable, /obj/machinery/light/floor, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "aro" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -7306,7 +7293,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "arT" = ( /obj/structure/chair/comfy/black{ dir = 8 @@ -7314,7 +7301,7 @@ /obj/effect/landmark/start/station_engineer, /obj/machinery/light/floor, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "arU" = ( /obj/machinery/door/window/southleft{ dir = 4; @@ -7322,20 +7309,20 @@ req_access_txt = "10" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "arV" = ( /obj/machinery/light/floor, /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "arW" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, -/area/engineering) +/area/engineering/engine_smes) "arX" = ( /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) @@ -7530,18 +7517,18 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "asv" = ( /obj/structure/window/reinforced, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "asw" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "asx" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7549,17 +7536,17 @@ }, /obj/machinery/vending/wardrobe/engi_wardrobe, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "asy" = ( /obj/structure/window/reinforced, /obj/machinery/vending/tool, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "asz" = ( /obj/structure/window/reinforced, /obj/machinery/vending/engivend, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "asA" = ( /obj/machinery/power/smes/engineering, /obj/structure/cable{ @@ -7569,7 +7556,7 @@ icon_state = "0-2" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/engine_smes) "asB" = ( /obj/structure/cable{ icon_state = "0-4" @@ -7578,7 +7565,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/engine_smes) "asC" = ( /obj/structure/cable{ icon_state = "1-2" @@ -7590,7 +7577,7 @@ icon_state = "1-8" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/engine_smes) "asD" = ( /obj/structure/cable{ icon_state = "0-8" @@ -7599,7 +7586,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/engine_smes) "asE" = ( /obj/machinery/telecomms/server/presets/service, /turf/open/floor/plasteel/dark/telecomms, @@ -7851,13 +7838,13 @@ }, /obj/machinery/rnd/production/protolathe/department/engineering, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "ati" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "atj" = ( /obj/structure/window/reinforced{ dir = 4 @@ -7866,7 +7853,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "atk" = ( /obj/structure/window/reinforced{ dir = 1 @@ -7876,7 +7863,7 @@ }, /obj/structure/closet/crate/solarpanel_small, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "atl" = ( /obj/structure/window/reinforced{ dir = 1 @@ -7887,7 +7874,7 @@ /obj/item/clothing/glasses/meson/engine, /obj/structure/rack, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "atm" = ( /obj/structure/cable{ icon_state = "1-2" @@ -7900,7 +7887,7 @@ }, /obj/machinery/light/floor, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/engine_smes) "atn" = ( /obj/machinery/telecomms/processor/preset_two, /turf/open/floor/plasteel/dark/telecomms, @@ -8219,12 +8206,12 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "auj" = ( /obj/effect/landmark/start/station_engineer, /obj/machinery/light/floor, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "auk" = ( /obj/machinery/door/window/southleft{ dir = 8; @@ -8232,7 +8219,7 @@ req_access_txt = "10" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "aul" = ( /obj/item/clothing/gloves/color/yellow, /obj/item/clothing/gloves/color/yellow, @@ -8240,7 +8227,7 @@ /obj/item/clothing/glasses/meson/engine, /obj/structure/rack, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "aum" = ( /obj/structure/cable{ icon_state = "1-4" @@ -8249,7 +8236,7 @@ icon_state = "1-8" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/engine_smes) "aun" = ( /obj/machinery/telecomms/hub/preset, /turf/open/floor/plasteel/dark/telecomms, @@ -8525,7 +8512,7 @@ /obj/structure/window/reinforced, /obj/machinery/rnd/production/circuit_imprinter, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "auU" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty, @@ -8542,7 +8529,7 @@ }, /obj/structure/window/reinforced, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "auV" = ( /obj/structure/window/reinforced, /obj/item/clothing/gloves/color/yellow, @@ -8551,13 +8538,13 @@ /obj/item/clothing/glasses/meson/engine, /obj/structure/rack, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "auW" = ( /obj/structure/cable{ icon_state = "1-4" }, /turf/closed/wall/r_wall, -/area/engineering) +/area/engineering/engine_smes) "auX" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/cable{ @@ -8571,13 +8558,13 @@ req_access_txt = "10" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/engine_smes) "auY" = ( /obj/structure/cable{ icon_state = "1-8" }, /turf/closed/wall/r_wall, -/area/engineering) +/area/engineering/engine_smes) "auZ" = ( /obj/machinery/telecomms/bus/preset_one, /turf/open/floor/plasteel/dark/telecomms, @@ -8756,7 +8743,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "avC" = ( /obj/machinery/suit_storage_unit/engine, /obj/structure/window/reinforced{ @@ -8766,7 +8753,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "avD" = ( /obj/structure/window/reinforced{ dir = 8 @@ -8776,7 +8763,7 @@ }, /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "avE" = ( /obj/structure/window/reinforced{ dir = 1 @@ -8784,7 +8771,7 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "avF" = ( /obj/structure/closet, /obj/item/clothing/suit/hooded/wintercoat/engineering, @@ -8794,7 +8781,7 @@ /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "avG" = ( /obj/structure/cable{ icon_state = "1-2" @@ -8803,7 +8790,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "avH" = ( /obj/machinery/telecomms/server/presets/science, /turf/open/floor/plasteel/dark/telecomms, @@ -9244,7 +9231,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "awJ" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -9258,7 +9245,7 @@ req_access_txt = "10" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "awK" = ( /obj/machinery/ntnet_relay, /turf/open/floor/circuit/telecomms/mainframe, @@ -9513,43 +9500,43 @@ "axt" = ( /obj/structure/closet/secure_closet/engineering_personal, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axu" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axv" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axw" = ( /obj/structure/tank_dispenser, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axx" = ( /obj/effect/decal/festive/christmas_ivy_string, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axy" = ( /obj/effect/festive/street/streetlineem, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axz" = ( /obj/effect/festive/street/streetlineem, /obj/vehicle/sealed/vectorcraft/truck, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axA" = ( /obj/vehicle/sealed/vectorcraft/CE, /obj/effect/festive/street/streetlineem, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -9680,14 +9667,14 @@ layer = 2.9 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axR" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axS" = ( /obj/structure/window/reinforced{ dir = 1; @@ -9697,7 +9684,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axT" = ( /obj/machinery/light{ dir = 1; @@ -9707,7 +9694,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axU" = ( /obj/machinery/light/floor, /obj/structure/cable{ @@ -9717,21 +9704,21 @@ icon_state = "1-4" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axV" = ( /obj/machinery/door/airlock/engineering, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axW" = ( /obj/machinery/light/floor, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axX" = ( /obj/machinery/button/door{ id = "enggarage"; @@ -9742,13 +9729,13 @@ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "axY" = ( /obj/structure/cable{ icon_state = "2-8" }, /turf/closed/wall/r_wall, -/area/engineering) +/area/engineering/main) "axZ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -9973,11 +9960,11 @@ "ayC" = ( /obj/machinery/light, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "ayD" = ( /obj/item/clothing/head/beret/eng, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "ayE" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -10181,12 +10168,12 @@ "azg" = ( /obj/machinery/door/airlock/atmos/glass, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "azh" = ( /obj/structure/grille, /obj/structure/window/plasma/reinforced/fulltile, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "azi" = ( /obj/structure/table, /obj/item/clothing/head/beret/atmos, @@ -10195,7 +10182,7 @@ icon_state = "right" }, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "azj" = ( /obj/structure/table, /obj/item/clothing/head/beret/ce/white, @@ -10205,13 +10192,13 @@ }, /obj/effect/decal/festive/holly, /turf/open/floor/plasteel, -/area/engineering) +/area/engineering/main) "azk" = ( /obj/machinery/door/poddoor/shutters{ id = "enggarage" }, /turf/open/floor/festive/cobblestone, -/area/engineering) +/area/engineering/main) "azl" = ( /obj/structure/statue/sandstone/venus{ dir = 8 @@ -10347,11 +10334,11 @@ /area/engineering/atmos) "azF" = ( /turf/open/floor/wood, -/area/engineering) +/area/engineering/main) "azG" = ( /obj/effect/decal/festive/christmas_ivy_string, /turf/open/floor/wood, -/area/engineering) +/area/engineering/main) "azH" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/structure/cable/yellow{ @@ -10635,7 +10622,7 @@ "aAq" = ( /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/wood, -/area/engineering) +/area/engineering/main) "aAr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -10684,7 +10671,7 @@ "aAz" = ( /obj/machinery/light, /turf/open/floor/wood, -/area/engineering) +/area/engineering/main) "aAA" = ( /obj/effect/festive/street/streetlinenorth, /obj/machinery/door/poddoor/shutters{ @@ -16863,7 +16850,7 @@ pixel_y = -32 }, /obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/science/research"; + areastring = "/area/security/checkpoint/science"; dir = 8; name = "Security Post - Science APC"; pixel_x = -26; @@ -20836,7 +20823,7 @@ /area/service/hydroponics) "bbc" = ( /turf/closed/festive/redbrick, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bbd" = ( /obj/effect/turf_decal/tile/green, /turf/open/floor/plasteel, @@ -21725,7 +21712,7 @@ /area/commons/storage/tools) "bdA" = ( /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bdD" = ( /obj/structure/sink{ dir = 8; @@ -22384,7 +22371,7 @@ /area/edina/street/primary/perimeter) "bfm" = ( /turf/closed/festive/whitebrick, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bfn" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -25426,7 +25413,7 @@ /turf/closed/festive/whitebrick{ color = "#555555" }, -/area/edina) +/area/service/theater) "bmv" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -26006,7 +25993,7 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bnZ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -26121,7 +26108,7 @@ icon_state = "0-4" }, /obj/machinery/power/apc{ - areastring = "/area/storage/primary"; + areastring = "area/commons/storage/tools"; dir = 8; name = "Primary Tool Storage APC"; pixel_x = -26; @@ -26390,7 +26377,7 @@ }, /obj/effect/decal/festive/fairylights, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "boZ" = ( /obj/machinery/firealarm{ pixel_y = 30 @@ -26403,7 +26390,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bpa" = ( /obj/structure/extinguisher_cabinet{ dir = 4; @@ -26418,7 +26405,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bpb" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/brown{ @@ -26432,7 +26419,7 @@ light_color = "#706891" }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bpc" = ( /obj/structure/closet/crate, /obj/item/flashlight{ @@ -26463,7 +26450,7 @@ syndie = 1 }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bpd" = ( /obj/machinery/power/apc{ areastring = "/area/cargo/miningoffice"; @@ -26485,7 +26472,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bpe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -26507,7 +26494,7 @@ /obj/structure/reagent_dispensers/water_cooler, /obj/effect/turf_decal/tile/brown, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bpf" = ( /obj/structure/musician/piano{ icon_state = "piano" @@ -27044,19 +27031,19 @@ /area/service/hydroponics) "bqw" = ( /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bqx" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bqy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bqz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -27077,7 +27064,7 @@ light_color = "#c1caff" }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bqA" = ( /turf/closed/wall/mineral/iron, /area/service/chapel/main/monastery{ @@ -27496,7 +27483,7 @@ icon_state = "4-8" }, /turf/closed/festive/whitebrick/whitebrickcornernw, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "brl" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSRightEnd, @@ -27507,7 +27494,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "brm" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSMiddle, @@ -27518,7 +27505,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "brn" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSLeftEnd, @@ -27529,7 +27516,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bro" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27538,7 +27525,7 @@ icon_state = "4-8" }, /turf/closed/festive/whitebrick, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "brp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -27553,7 +27540,7 @@ icon_state = "4-8" }, /turf/closed/festive/whitebrick, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "brq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27563,7 +27550,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/festive/whitebrick, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "brr" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -27572,7 +27559,7 @@ icon_state = "4-8" }, /turf/closed/festive/whitebrick, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "brs" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -27947,12 +27934,12 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bsh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/holopad, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bsi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -27962,11 +27949,11 @@ }, /obj/effect/turf_decal/tile/brown, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bsj" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bsk" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/item/clothing/gloves/color/black, @@ -28371,21 +28358,21 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bsV" = ( /obj/machinery/vending/coffee, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bsW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/decal/festive/green_stockings, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bsX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -28406,7 +28393,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bsY" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -28431,7 +28418,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bsZ" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -28453,7 +28440,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bta" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/red{ @@ -28469,7 +28456,7 @@ /obj/machinery/vending/snack/random, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "btb" = ( /obj/machinery/disposal/bin, /obj/machinery/camera{ @@ -28487,13 +28474,13 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "btc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/festive/whitebrick, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "btd" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -28736,23 +28723,23 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "btL" = ( /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "btM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "btN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "btO" = ( /obj/machinery/door/airlock/external{ name = "Mining Dock Airlock"; @@ -28762,10 +28749,10 @@ dir = 4 }, /turf/open/floor/plating, -/area/cargo/miningdock) +/area/cargo/miningoffice) "btP" = ( /turf/open/floor/plating, -/area/cargo/miningdock) +/area/cargo/miningoffice) "btQ" = ( /obj/machinery/door/airlock/external{ name = "Mining Dock Airlock"; @@ -28775,7 +28762,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/cargo/miningdock) +/area/cargo/miningoffice) "btR" = ( /obj/structure/curtain, /obj/effect/spawner/structure/window/reinforced/indestructable, @@ -29092,15 +29079,15 @@ /obj/structure/grille, /obj/structure/festive/whitebrick/windowWELeftEnd, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "buu" = ( /obj/machinery/vending/cola/random, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "buv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "buw" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -29113,7 +29100,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bux" = ( /obj/effect/landmark/start/medical_doctor, /obj/effect/turf_decal/tile/red{ @@ -29127,17 +29114,17 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "buy" = ( /obj/machinery/light{ dir = 4; light_color = "#e8eaff" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "buz" = ( /turf/closed/festive/whitebrick/whitebrickwe, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "buA" = ( /obj/structure/grille, /obj/structure/window/reinforced/fulltile{ @@ -29354,21 +29341,21 @@ light_color = "#e8eaff" }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bvc" = ( /obj/structure/chair/office/dark{ dir = 8 }, /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bvd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bve" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -29381,7 +29368,7 @@ }, /obj/effect/turf_decal/tile/brown, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bvf" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -29667,12 +29654,12 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bvI" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bvJ" = ( /obj/structure/chair/wood/normal{ dir = 4 @@ -29688,7 +29675,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bvK" = ( /obj/structure/table/wood, /obj/item/reagent_containers/spray/cleaner{ @@ -29707,7 +29694,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bvL" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/red, @@ -29722,7 +29709,7 @@ }, /obj/item/clothing/head/beret/med, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bvM" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -29738,18 +29725,18 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bvN" = ( /obj/machinery/newscaster{ pixel_x = 32 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bvO" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowWERightEnd, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bvP" = ( /obj/machinery/door/airlock/command{ name = "Chief Medical Officer's Office"; @@ -29927,7 +29914,7 @@ }, /obj/effect/turf_decal/tile/brown, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bwp" = ( /obj/structure/table, /obj/item/folder/yellow, @@ -29941,7 +29928,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bwq" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -29957,7 +29944,7 @@ /obj/item/stack/medical/gauze, /obj/machinery/light, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bwr" = ( /obj/structure/rack, /obj/item/pickaxe{ @@ -29972,7 +29959,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bws" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -29989,7 +29976,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bwt" = ( /obj/structure/disposalpipe/trunk{ dir = 1 @@ -30096,11 +30083,11 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bwH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bwI" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/red, @@ -30114,7 +30101,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bwJ" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -30130,7 +30117,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bwK" = ( /obj/effect/festive/street/sidewalkn, /obj/structure/disposalpipe/segment, @@ -30309,7 +30296,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "bxl" = ( /obj/structure/fence, /turf/open/floor/grass/snow/edina{ @@ -30416,11 +30403,11 @@ /area/medical/exam_room) "bxA" = ( /turf/closed/festive/whitebrick/whitebrickcornernw, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bxB" = ( /obj/effect/decal/festive/fairylights, /turf/closed/festive/whitebrick, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bxC" = ( /obj/effect/landmark/start/roboticist, /turf/open/floor/plasteel/white, @@ -30434,7 +30421,7 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bxE" = ( /obj/structure/extinguisher_cabinet{ dir = 4; @@ -30447,20 +30434,20 @@ /obj/structure/extinguisher_cabinet, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/festive/whitebrick, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bxF" = ( /turf/closed/festive/whitebrick/whitebrickns, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bxG" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSRightEnd, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bxH" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSMiddle, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bxI" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -30478,11 +30465,11 @@ /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSLeftEnd, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bxK" = ( /obj/structure/sign/departments/medbay/alt, /turf/closed/festive/whitebrick/whitebrickcornerse, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bxL" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -30879,7 +30866,7 @@ "byJ" = ( /obj/machinery/computer/crew, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "byK" = ( /obj/structure/bed, /obj/effect/spawner/lootdrop/bedsheet, @@ -30903,22 +30890,22 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "byN" = ( /obj/structure/table/reinforced, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "byO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "byP" = ( /obj/machinery/vending/coffee, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "byQ" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -31050,18 +31037,18 @@ /obj/structure/grille, /obj/structure/festive/whitebrick/windowWEMiddle, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bzm" = ( /obj/structure/chair/office/light{ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bzn" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/food/drinks/britcup, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bzo" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -31069,7 +31056,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bzp" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -31082,7 +31069,7 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bzq" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -31357,7 +31344,7 @@ /obj/structure/table/reinforced, /obj/effect/decal/festive/holly, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bzY" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -31371,7 +31358,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bzZ" = ( /obj/machinery/door/airlock/command{ name = "Research Director's Quarters"; @@ -31784,7 +31771,7 @@ "bAP" = ( /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bAQ" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -31800,7 +31787,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bAR" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -31812,11 +31799,11 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bAS" = ( /obj/structure/sign/departments/medbay, /turf/closed/festive/whitebrick, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bAT" = ( /obj/effect/festive/street/streetlinesw, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -32204,7 +32191,7 @@ dir = 4 }, /turf/closed/festive/whitebrick/whitebrickwe, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bBC" = ( /obj/machinery/door/airlock/medical/glass{ name = "Medbay Desk"; @@ -32214,7 +32201,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bBD" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -32236,7 +32223,7 @@ pixel_x = -28 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bBE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -32246,7 +32233,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bBF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -32263,7 +32250,7 @@ /obj/effect/decal/festive/mistletoe, /obj/effect/decal/festive/christmas_reef, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bBG" = ( /obj/effect/festive/street/sidewalknsm, /obj/structure/cable/yellow{ @@ -32962,7 +32949,7 @@ icon_state = "4-8" }, /turf/closed/festive/whitebrick, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bCA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32971,7 +32958,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bCB" = ( /obj/vehicle/ridden/wheelchair, /obj/structure/disposalpipe/segment{ @@ -32988,7 +32975,7 @@ pixel_y = 30 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bCC" = ( /obj/vehicle/ridden/wheelchair, /obj/structure/disposalpipe/segment{ @@ -32998,7 +32985,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bCD" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33020,7 +33007,7 @@ icon_state = "2-8" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bCE" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33041,7 +33028,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bCF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -33060,7 +33047,7 @@ }, /obj/effect/decal/festive/christmas_reef, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bCG" = ( /obj/effect/festive/street/streetlinesw, /turf/open/floor/festive/cobblestone, @@ -33512,7 +33499,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bDz" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33528,7 +33515,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bDA" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33547,7 +33534,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bDB" = ( /obj/effect/turf_decal/weather/snow/corner{ color = "#FFFFFE"; @@ -33565,7 +33552,7 @@ dir = 4 }, /turf/closed/festive/whitebrick, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bDE" = ( /obj/effect/festive/street/streetlinewest, /obj/effect/turf_decal/arrows/white, @@ -33848,7 +33835,7 @@ }, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bEi" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33861,7 +33848,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bEj" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33875,7 +33862,7 @@ }, /obj/machinery/holopad, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bEk" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33892,7 +33879,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bEl" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -33908,7 +33895,7 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bEm" = ( /obj/effect/festive/street/sidewalkw, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -34110,7 +34097,7 @@ "bEJ" = ( /obj/structure/flora/tree/pine/xmas, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bEK" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -34126,13 +34113,13 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bEL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bEM" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -34175,7 +34162,7 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "bER" = ( /obj/effect/festive/street/sidewalkwem, /obj/structure/cable/yellow{ @@ -34243,17 +34230,17 @@ /area/medical/exam_room) "bFa" = ( /turf/closed/festive/redbrick/redbrickte, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFb" = ( /obj/structure/grille, /obj/structure/festive/redbrick/windowNSRightEnd, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFc" = ( /obj/structure/grille, /obj/structure/festive/redbrick/windowNSLeftEnd, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFd" = ( /obj/machinery/door/airlock/research{ name = "Robotics Lab"; @@ -34292,14 +34279,14 @@ /obj/structure/festive/redbrick/windowdoornsend1, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFj" = ( /turf/closed/festive/redbrick/redbricktn, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFk" = ( /obj/structure/sign/departments/medbay/alt, /turf/closed/festive/redbrick/redbrickcornerne, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -34426,7 +34413,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFC" = ( /obj/structure/closet/secure_closet/brig{ id = "medcell"; @@ -34443,12 +34430,12 @@ }, /obj/effect/turf_decal/tile/red, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFD" = ( /obj/structure/grille, /obj/structure/festive/redbrick/windowWERightEnd, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFE" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -34458,7 +34445,7 @@ "bFF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFG" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law, @@ -34470,18 +34457,18 @@ pixel_y = 26 }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFH" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFI" = ( /obj/machinery/computer/secure_data{ dir = 8 }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bFJ" = ( /obj/effect/spawner/structure/window, /obj/structure/curtain{ @@ -34918,7 +34905,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bGK" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -34931,7 +34918,7 @@ }, /obj/effect/turf_decal/tile/red, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bGL" = ( /obj/machinery/light_switch{ pixel_x = 26; @@ -34964,17 +34951,17 @@ /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bGP" = ( /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bGQ" = ( /obj/structure/chair/office/dark{ dir = 4 }, /obj/effect/landmark/start/depsec/medical, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bGR" = ( /obj/machinery/computer/security{ dir = 8 @@ -34983,7 +34970,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bGS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34994,7 +34981,7 @@ /obj/structure/grille, /obj/structure/festive/redbrick/windowWEMiddle, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bGU" = ( /obj/structure/chair/wood/normal{ dir = 4 @@ -35887,7 +35874,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bIE" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -35924,22 +35911,22 @@ pixel_y = -26 }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bII" = ( /obj/structure/closet/secure_closet/security/med, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bIJ" = ( /obj/machinery/computer/crew{ dir = 8 }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bIK" = ( /obj/structure/grille, /obj/structure/festive/redbrick/windowWELeftEnd, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bIL" = ( /obj/structure/table/wood, /obj/machinery/door/window/eastright{ @@ -36663,7 +36650,7 @@ /area/science/robotics/mechbay) "bKn" = ( /turf/closed/festive/redbrick/redbrickcornerse, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "bKo" = ( /obj/structure/table/wood, /obj/machinery/door/window/eastright{ @@ -41420,7 +41407,7 @@ /turf/closed/festive/whitebrick{ color = "#fff200" }, -/area/edina) +/area/service/theater) "bUe" = ( /obj/effect/turf_decal/weather/snow/corner{ color = "#FFFFFF"; @@ -41668,7 +41655,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/edina) +/area/service/theater) "bUL" = ( /obj/machinery/vending/autodrobe, /obj/structure/cable/white{ @@ -41694,7 +41681,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/edina) +/area/service/theater) "bUM" = ( /obj/structure/sign/poster/contraband/random{ pixel_y = 32 @@ -41712,7 +41699,7 @@ }, /obj/item/stack/sheet/mineral/wood/fifty, /turf/open/floor/plasteel, -/area/edina) +/area/service/theater) "bUN" = ( /obj/structure/table/wood, /obj/structure/extinguisher_cabinet{ @@ -41740,7 +41727,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/edina) +/area/service/theater) "bUO" = ( /obj/effect/landmark/start/librarian, /turf/open/indestructible/hoteltile, @@ -42196,7 +42183,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/edina) +/area/service/theater) "bVV" = ( /obj/structure/cable/white{ icon_state = "1-2" @@ -42212,7 +42199,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/edina) +/area/service/theater) "bVW" = ( /obj/effect/landmark/start/clown, /obj/effect/turf_decal/tile/red{ @@ -42226,7 +42213,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/edina) +/area/service/theater) "bVX" = ( /obj/structure/sink{ dir = 8; @@ -42583,20 +42570,20 @@ dir = 4 }, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bWR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bWS" = ( /obj/structure/mirror{ pixel_x = 30 }, /obj/structure/dresser, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bWT" = ( /turf/open/floor/festive/wooden/wooden1, /area/commons/lounge) @@ -42931,14 +42918,14 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bXK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bXL" = ( /obj/machinery/newscaster{ pixel_x = 32 @@ -42947,7 +42934,7 @@ dir = 8 }, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bXM" = ( /obj/structure/closet/crate/trashcart, /obj/effect/turf_decal/weather/snow/corner, @@ -43182,18 +43169,18 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bYu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bYv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bYw" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -43386,22 +43373,22 @@ name = "service camera" }, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bYS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bYT" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bYU" = ( /obj/machinery/door/airlock/grunge{ name = "Garage"; req_access_txt = "46" }, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "bYV" = ( /obj/machinery/button/door{ id = "clowngarage"; @@ -43409,7 +43396,7 @@ pixel_x = 28 }, /turf/open/floor/plasteel, -/area/edina) +/area/service/theater) "bYW" = ( /obj/effect/spawner/structure/window/reinforced/indestructable, /turf/open/floor/plating, @@ -43965,7 +43952,7 @@ }, /obj/item/lipstick/random, /turf/open/floor/plasteel/cafeteria, -/area/edina) +/area/service/theater) "bZW" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable/yellow{ @@ -43973,12 +43960,12 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/cafeteria, -/area/edina) +/area/service/theater) "bZX" = ( /obj/effect/landmark/start/mime, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/cafeteria, -/area/edina) +/area/service/theater) "bZY" = ( /obj/machinery/firealarm{ dir = 4; @@ -43990,11 +43977,11 @@ }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/edina) +/area/service/theater) "bZZ" = ( /obj/vehicle/sealed/vectorcraft/clown, /turf/open/floor/plasteel, -/area/edina) +/area/service/theater) "caa" = ( /obj/structure/bookcase/random/reference, /turf/open/floor/festive/wooden/wooden1, @@ -44425,7 +44412,7 @@ }, /obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, /turf/open/floor/plasteel/cafeteria, -/area/edina) +/area/service/theater) "caU" = ( /obj/machinery/vending/autodrobe, /obj/machinery/airalarm{ @@ -44438,14 +44425,14 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/cafeteria, -/area/edina) +/area/service/theater) "caV" = ( /obj/structure/table/wood, /obj/item/clipboard, /obj/item/toy/figure/mime, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/cafeteria, -/area/edina) +/area/service/theater) "caW" = ( /obj/structure/sign/poster/contraband/random{ pixel_y = -32 @@ -44456,7 +44443,7 @@ reagent_id = "laughter" }, /turf/open/floor/plasteel/cafeteria, -/area/edina) +/area/service/theater) "caX" = ( /obj/structure/bookcase/manuals/medical, /turf/open/floor/festive/wooden/wooden1, @@ -44940,23 +44927,23 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/festive/whitebrick, -/area/edina) +/area/service/theater) "cbN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/festive/whitebrick{ color = "#555555" }, -/area/edina) +/area/service/theater) "cbO" = ( /obj/structure/disposalpipe/segment, /turf/closed/festive/whitebrick, -/area/edina) +/area/service/theater) "cbP" = ( /obj/machinery/door/poddoor/shutters{ id = "clowngarage" }, /turf/open/floor/plasteel, -/area/edina) +/area/service/theater) "cbQ" = ( /obj/structure/grille, /obj/structure/festive/redbrick/windowNSRightEnd, @@ -45491,7 +45478,7 @@ "cds" = ( /obj/structure/sign/departments/engineering, /turf/closed/wall/r_wall, -/area/engineering) +/area/engineering/main) "cdt" = ( /obj/effect/decal/festive/christmas_ivy_string, /obj/structure/sign/departments/security, @@ -45620,7 +45607,7 @@ }, /obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "cdI" = ( /obj/structure/chair/comfy/teal, /obj/effect/landmark/start/chief_medical_officer, @@ -45644,7 +45631,7 @@ }, /obj/effect/landmark/start/medical_doctor, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "cdM" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -45658,7 +45645,7 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "cdN" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -45669,7 +45656,7 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "cdO" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -45681,7 +45668,7 @@ icon_state = "1-2" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/medical/medbay/central) "cdP" = ( /obj/structure/grille, /obj/structure/festive/redbrick/windowNSRightEnd, @@ -45689,7 +45676,7 @@ icon_state = "0-4" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "cdQ" = ( /obj/structure/grille, /obj/structure/festive/redbrick/windowNSLeftEnd, @@ -45700,14 +45687,14 @@ icon_state = "0-4" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "cdR" = ( /obj/structure/sign/departments/security, /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/closed/festive/redbrick/redbrickcornerne, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "cdS" = ( /obj/machinery/door/airlock/security{ name = "Security Post - Medical"; @@ -45718,7 +45705,7 @@ icon_state = "1-2" }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "cdT" = ( /obj/structure/grille, /obj/structure/festive/redbrick/windowWERightEnd, @@ -45727,14 +45714,14 @@ icon_state = "0-2" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "cdU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "cdV" = ( /obj/structure/grille, /obj/structure/festive/redbrick/windowWELeft, @@ -45743,7 +45730,7 @@ icon_state = "0-2" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "cdW" = ( /obj/structure/chair/wood/normal, /obj/effect/decal/festive/christmas_ivy_string, @@ -46645,7 +46632,7 @@ /obj/effect/turf_decal/bot, /obj/structure/disposalpipe/trunk, /turf/open/floor/festive/wooden/wooden1, -/area/edina) +/area/service/theater) "cgb" = ( /obj/structure/pool/Lboard, /turf/open/pool, @@ -50979,7 +50966,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/cargo/miningdock) +/area/cargo/miningoffice) "cqc" = ( /obj/effect/festive/street/streetlineem{ pixel_x = 3 @@ -52832,7 +52819,7 @@ icon_state = "1-4" }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "cvc" = ( /obj/machinery/light, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -52845,7 +52832,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "cvd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -52854,7 +52841,7 @@ icon_state = "0-8" }, /turf/open/floor/plasteel, -/area/medical/medbay/lobby) +/area/security/checkpoint/medical) "cve" = ( /obj/effect/decal/festive/christmas_ivy_string, /turf/open/floor/grass/snow/edina{ @@ -54652,17 +54639,13 @@ icon_state = "2-4" }, /turf/closed/wall, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cAW" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/closed/wall, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cAX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -54682,28 +54665,20 @@ /area/engineering/gravity_generator) "cBa" = ( /turf/closed/wall, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cBb" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cBc" = ( /obj/machinery/light/floor, /turf/open/floor/plasteel, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cBd" = ( /turf/open/floor/plasteel, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cBe" = ( /turf/open/floor/plasteel, /area/engineering/gravity_generator) @@ -54718,9 +54693,7 @@ pixel_y = 25 }, /turf/open/floor/plasteel, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cBg" = ( /obj/structure/cable{ icon_state = "1-2" @@ -54729,15 +54702,11 @@ icon_state = "1-8" }, /turf/closed/wall, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cBh" = ( /obj/effect/turf_decal/delivery/red, /turf/open/floor/plasteel, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cBi" = ( /obj/machinery/gravity_generator/main/station/admin, /turf/open/floor/plasteel, @@ -54751,26 +54720,20 @@ icon_state = "1-4" }, /turf/open/floor/plasteel, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cBk" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cBl" = ( /obj/effect/turf_decal/delivery/white, /obj/structure/cable{ icon_state = "0-8" }, /turf/open/floor/plasteel, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cBm" = ( /obj/item/am_shielding_container, /obj/item/am_shielding_container, @@ -54789,18 +54752,14 @@ name = "Antimatter Engine Crate" }, /turf/open/floor/plasteel, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cBn" = ( /obj/machinery/quantumpad{ map_pad_id = "AME"; map_pad_link_id = "EngieL2" }, /turf/open/floor/plasteel, -/area/engineering{ - name = "Antimatter engine" - }) +/area/engineering/main) "cGh" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -54922,6 +54881,9 @@ /obj/machinery/nanite_chamber, /turf/open/floor/circuit/off, /area/edina) +"dqG" = ( +/turf/open/floor/plasteel, +/area/engineering/engine_smes) "dra" = ( /mob/living/simple_animal/pet/cat/kitten, /turf/open/floor/grass, @@ -54948,6 +54910,9 @@ }, /turf/open/floor/plating/beach/sand, /area/edina) +"dAt" = ( +/turf/open/floor/festive/wooden/wooden1, +/area/service/theater) "dNy" = ( /obj/structure/grille, /obj/structure/festive/redbrick/windowNSLeftEnd, @@ -54976,6 +54941,9 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/edina) +"ecw" = ( +/turf/closed/festive/whitebrick, +/area/service/theater) "ecE" = ( /obj/structure/rack, /obj/item/clothing/neck/cloak/festive, @@ -55092,6 +55060,12 @@ }, /turf/open/floor/festive/alleyway, /area/edina/crew_quarters/store/clothes) +"eSe" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/engineering/main) "eYQ" = ( /obj/structure/table/glass, /obj/item/clothing/gloves/mittens/random, @@ -56136,6 +56110,9 @@ /mob/living/simple_animal/pet/fox, /turf/open/floor/grass, /area/edina) +"nOZ" = ( +/turf/closed/wall/r_wall, +/area/engineering/engine_smes) "nQw" = ( /obj/machinery/computer/nanite_chamber_control{ dir = 1 @@ -57054,6 +57031,12 @@ }, /turf/open/floor/carpet/royalblack, /area/edina) +"uZt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/engineering/engine_smes) "uZJ" = ( /turf/open/floor/plating, /area/edina) @@ -67657,10 +67640,10 @@ ath aui auT avB -anw +cBd axt axQ -anw +cBd ajK aoQ aoQ @@ -67907,7 +67890,7 @@ amu amu amu amu -anw +cBd arT asv ati @@ -67917,7 +67900,7 @@ avB auj axt axR -anw +cBd ajK aoQ aoQ @@ -68174,7 +68157,7 @@ avC arU axu axR -anw +cBd ajK aoQ aoQ @@ -68422,15 +68405,15 @@ aon apR amu arh -anw -anw -anw -anw -anw -anw -anw -anw -anw +cBd +cBd +cBd +cBd +cBd +cBd +cBd +cBd +cBd ayC ajK azE @@ -68688,7 +68671,7 @@ anz arV anz aos -anw +cBd azg aoQ aoQ @@ -68935,17 +68918,17 @@ aop api apT aqN -arj -anw -anw -anw -anw -anw -anw -anw -anw -arj -anw +cBk +cBd +cBd +cBd +cBd +cBd +cBd +cBd +cBd +cBk +cBd azg aoQ aoQ @@ -69193,7 +69176,7 @@ apj apU aqO aoA -anw +cBd asx atk auk @@ -69202,7 +69185,7 @@ avD auk axv axS -anw +cBd ajK azE aoQ @@ -69450,16 +69433,16 @@ amu amu amu ark -anA +cBc asy ati auj asv ati auj -anw +cBd axS -anw +cBd ajK ajK ajK @@ -69701,13 +69684,13 @@ ajU ajU ajU ang -anw -anw -anw -anw +cBd +cBd +cBd +cBd anh arl -anw +cBd asz atl aul @@ -69716,7 +69699,7 @@ avE awI axw axS -anw +cBd azg azF azF @@ -69960,8 +69943,8 @@ ajU anh anx aos -anA -anw +cBc +cBd anh ajK ajK @@ -69973,7 +69956,7 @@ ajK ajK ajK axT -anw +cBd azh azG azF @@ -70217,19 +70200,19 @@ amC anh anx aot -anw -anw +cBd +cBd anh -anw -anw -anw -anw -anw +cBd +cBd +cBd +cBd +cBd ajK avF avF -anw -arj +cBd +cBk ayD azi azF @@ -70478,16 +70461,16 @@ aow ajK ajK ajK -ajK -ajK -ajK -ajK -ajK -anA -anw -anw -arj -anw +nOZ +nOZ +nOZ +nOZ +nOZ +cBc +cBd +cBd +cBk +cBd azj azF azF @@ -70742,9 +70725,9 @@ asA auW avF avF -anw -arj -anw +cBd +cBk +cBd azh azG azF @@ -70986,22 +70969,22 @@ ajU ajU akq anh -anw +cBd aow aow aow aow -anw -anw +cBd +dqG asB asB asB -aou +uZt ajK ajK axx -arj -anw +cBk +cBd ajK azG azF @@ -71258,7 +71241,7 @@ avG awJ anz axU -anw +cBd ajK ajK ajK @@ -71500,22 +71483,22 @@ ajU ajU akq anh -anw +cBd aow aow apW aow -anw -anw +cBd +dqG asD asD asD -aou +uZt ajK ajK -anw -arj -anw +cBd +cBk +cBd ajK aFe aEY @@ -71757,7 +71740,7 @@ ajU alW amG anh -anA +cBc aoy anz anz @@ -72016,20 +71999,20 @@ akq anh ajK aou -anw -ajK -ajK -ajK -ajK -ajK +cBd ajK ajK ajK +nOZ +nOZ +nOZ +nOZ +nOZ aal ajK axy -arj -anw +cBk +cBd cds aFr aGE @@ -72273,8 +72256,8 @@ amH anh anx aoz -anw -anw +cBd +cBd anh aal aal @@ -72286,7 +72269,7 @@ aal ajK axz axW -anw +cBd azk aFK aFK @@ -72530,8 +72513,8 @@ ajU anh anx aoA -anA -anw +cBc +cBd anh aal aal @@ -72542,8 +72525,8 @@ aal acZ ajK axz -arj -anw +cBk +cBd azk aFK aFK @@ -72785,10 +72768,10 @@ ajU ajU ajU ang -anw -anw -anw -anw +cBd +cBd +cBd +cBd anh aal aal @@ -72799,8 +72782,8 @@ aal aal ajK axy -arj -anw +cBk +cBd azk aFK aFK @@ -73057,7 +73040,7 @@ aal ajK axA axW -anw +cBd azk aFK aFK @@ -73312,9 +73295,9 @@ acZ aal aal ajK -anw +cBd axX -anw +cBd ajK aFL aGF @@ -73571,8 +73554,8 @@ aal ajK ajK axY -arW -arW +eSe +eSe aGh aGh aHf @@ -81892,9 +81875,9 @@ bUd bXJ bYt bmu -acg +ecw bmu -acg +ecw cnO bdS coU @@ -82146,8 +82129,8 @@ bUd bUK bVU bWQ -afJ -afJ +dAt +dAt bYR bZV caT @@ -82659,8 +82642,8 @@ bHZ bUd bUM bVW -afJ -afJ +dAt +dAt bYv bYS bZX @@ -83175,10 +83158,10 @@ bUd bUd bUd bUd -acg +ecw bYU bmu -acg +ecw bmu cnO bdS @@ -83689,7 +83672,7 @@ bUf bUf bUf cqP -acg +ecw bYV bZZ acJ @@ -83947,9 +83930,9 @@ bVX bUf cqP bUd -acg +ecw bUd -acg +ecw bUd cnS bdS From bcf3376ae60a27efdc83d3d28a5ec978de034241 Mon Sep 17 00:00:00 2001 From: keronshb Date: Sat, 20 Nov 2021 22:31:07 -0500 Subject: [PATCH 03/11] Fixes up the last runtimes --- _maps/map_files/FestiveBall/FestiveStation.dmm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/_maps/map_files/FestiveBall/FestiveStation.dmm b/_maps/map_files/FestiveBall/FestiveStation.dmm index d31426989e..12ddcb028e 100644 --- a/_maps/map_files/FestiveBall/FestiveStation.dmm +++ b/_maps/map_files/FestiveBall/FestiveStation.dmm @@ -6974,7 +6974,7 @@ /area/engineering/main) "arh" = ( /obj/machinery/power/apc/highcap/fifteen_k{ - areastring = "/area/engineering"; + areastring = "/area/engineering/main"; dir = 1; name = "Engineering APC"; pixel_y = 25 @@ -26108,7 +26108,7 @@ icon_state = "0-4" }, /obj/machinery/power/apc{ - areastring = "area/commons/storage/tools"; + areastring = "/area/commons/storage/tools"; dir = 8; name = "Primary Tool Storage APC"; pixel_x = -26; @@ -40185,7 +40185,6 @@ /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSRightEnd, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plasteel/white, /area/medical/storage) "bRr" = ( @@ -54687,7 +54686,7 @@ icon_state = "0-4" }, /obj/machinery/power/apc/highcap/fifteen_k{ - areastring = "/area/engineering"; + areastring = "/area/engineering/main"; dir = 1; name = "Antimatter Engine APC"; pixel_y = 25 From 146ada0d3def9e054f98df4d9c30d3d269d8b95f Mon Sep 17 00:00:00 2001 From: keronshb Date: Sat, 20 Nov 2021 23:54:16 -0500 Subject: [PATCH 04/11] Removes anchored from jacq --- code/modules/holiday/halloween/jacqueen.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/holiday/halloween/jacqueen.dm b/code/modules/holiday/halloween/jacqueen.dm index 8cf95bcff8..fb16a9c9a7 100644 --- a/code/modules/holiday/halloween/jacqueen.dm +++ b/code/modules/holiday/halloween/jacqueen.dm @@ -517,7 +517,6 @@ name = "Jacqueline cars terminal" icon_state = "jacq_cars_spawner" AIStatus = AI_OFF - anchored = TRUE spawn_cars = TRUE active = FALSE From e91928b0a4a8e9b55b30070ca971a2462874922c Mon Sep 17 00:00:00 2001 From: keronshb Date: Sun, 21 Nov 2021 00:12:08 -0500 Subject: [PATCH 05/11] Area change test --- .../map_files/FestiveBall/FestiveStation.dmm | 1550 ++++++++--------- 1 file changed, 712 insertions(+), 838 deletions(-) diff --git a/_maps/map_files/FestiveBall/FestiveStation.dmm b/_maps/map_files/FestiveBall/FestiveStation.dmm index 12ddcb028e..cdd8e047d1 100644 --- a/_maps/map_files/FestiveBall/FestiveStation.dmm +++ b/_maps/map_files/FestiveBall/FestiveStation.dmm @@ -5878,9 +5878,6 @@ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, /area/edina) -"aoD" = ( -/turf/open/floor/festive/alleyway, -/area/science/research) "aoE" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -9057,7 +9054,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/science/research) +/area/science) "awp" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -9096,9 +9093,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/science/research{ - name = "Science Street" - }) +/area/science) "awt" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -11729,7 +11724,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/science/research) +/area/science) "aDT" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/plasteel, @@ -11912,7 +11907,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/science/research) +/area/science) "aEA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/festive/sidewalk, @@ -13745,7 +13740,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aIV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -14273,7 +14268,7 @@ /area/service/bar/atrium) "aKg" = ( /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aKh" = ( /turf/open/floor/plasteel, /area/science/robotics/lab) @@ -14489,7 +14484,7 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aKJ" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/structure/closet/wardrobe/mixed, @@ -14539,31 +14534,17 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/science/research{ - name = "Science Street" - }) -"aKS" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/festive/alleyway, -/area/science/research{ - name = "Science Street" - }) +/area/science) "aKT" = ( /turf/open/floor/festive/alleyway, -/area/science/research{ - name = "Science Street" - }) +/area/science) "aKU" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 }, /obj/effect/festive/street/streetlineem, /turf/open/floor/festive/alleyway, -/area/science/research{ - name = "Science Street" - }) +/area/science) "aKV" = ( /obj/structure/fluff/lightpost/light, /turf/open/floor/grass/snow/edina{ @@ -14700,14 +14681,14 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aLp" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 }, /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aLq" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -14717,7 +14698,7 @@ dir = 6 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aLr" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -14727,7 +14708,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aLs" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -14736,7 +14717,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aLt" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -14746,7 +14727,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aLu" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/structure/fence/door/opened{ @@ -14759,20 +14740,16 @@ dir = 10 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aLv" = ( /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, -/area/science/research{ - name = "Science Street" - }) +/area/science) "aLw" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/festive/street/streetlineem, /turf/open/floor/festive/alleyway, -/area/science/research{ - name = "Science Street" - }) +/area/science) "aLx" = ( /turf/closed/festive/redbrick/redbrickns, /area/edina/crew_quarters/store/plushies) @@ -14939,7 +14916,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aLY" = ( /turf/closed/festive/redbrick, /area/security/checkpoint/science) @@ -14952,14 +14929,10 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/science/research{ - name = "Science Street" - }) +/area/science) "aMb" = ( /turf/closed/festive/whitebrick, -/area/science/research{ - name = "Science Street" - }) +/area/science) "aMc" = ( /obj/structure/reagent_dispensers/beerkeg{ reagent_id = /datum/reagent/consumable/ethanol/beer/light @@ -15063,7 +15036,7 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aMs" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -15072,7 +15045,7 @@ dir = 6 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aMt" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -15082,7 +15055,7 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aMu" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -15092,20 +15065,20 @@ dir = 10 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aMv" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aMw" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ dir = 1 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aMx" = ( /obj/effect/turf_decal/weather/snow/corner{ color = "#FFFFFF"; @@ -15115,7 +15088,7 @@ dir = 1 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aMy" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 6 @@ -15452,14 +15425,14 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aNe" = ( /turf/closed/festive/whitebrick, /area/science/research) "aNf" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/junction, /turf/closed/festive/whitebrick, -/area/science/research) +/area/science) "aNg" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Science Maintenance"; @@ -15467,7 +15440,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aNh" = ( /turf/closed/festive/whitebrick, /area/science/nanite) @@ -15481,7 +15454,7 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aNj" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/engine, @@ -15729,23 +15702,23 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aNQ" = ( /obj/machinery/door/airlock{ name = "Borg Charger" }, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aNR" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 6 }, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aNS" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/manifold, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aNT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -15754,7 +15727,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aNU" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 4 @@ -15818,7 +15791,7 @@ icon_state = "2-4" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aOe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -15880,7 +15853,7 @@ /turf/closed/festive/whitebrick{ color = "#555555" }, -/area/science/research) +/area/science) "aOj" = ( /obj/structure/fence{ dir = 4 @@ -15888,9 +15861,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/science/research{ - name = "Science Street" - }) +/area/science) "aOk" = ( /obj/structure/table, /obj/item/stack/sheet/metal/fifty, @@ -16089,12 +16060,12 @@ "aOP" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aOQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/blobstart, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aOR" = ( /obj/structure/sink{ dir = 4; @@ -16104,7 +16075,7 @@ pixel_x = 28 }, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aOS" = ( /obj/structure/table, /obj/item/folder/white, @@ -16438,18 +16409,18 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aPL" = ( /obj/machinery/door/airlock{ name = "Toilet Unit" }, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aPM" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aPN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sink{ @@ -16460,7 +16431,7 @@ pixel_x = 28 }, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aPO" = ( /obj/structure/chair/office/light{ dir = 4 @@ -17200,7 +17171,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aRu" = ( /obj/structure/rack, /obj/item/clothing/shoes/winterboots, @@ -17390,14 +17361,14 @@ name = "Bathroom" }, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aRV" = ( /turf/open/floor/festive/alleyway, /area/edina/backstreet) "aRW" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/closed/festive/whitebrick, -/area/science/research) +/area/science) "aRX" = ( /obj/machinery/vending/wardrobe/science_wardrobe, /turf/open/floor/plasteel/white, @@ -17687,7 +17658,7 @@ pixel_x = -26 }, /turf/open/floor/wood, -/area/science/research) +/area/science) "aSE" = ( /obj/structure/table/wood, /obj/structure/sign/poster/official/report_crimes{ @@ -17695,21 +17666,21 @@ }, /obj/item/storage/box/donkpockets, /turf/open/floor/wood, -/area/science/research) +/area/science) "aSF" = ( /obj/item/radio/intercom{ name = "Station Intercom"; pixel_y = 26 }, /turf/open/floor/wood, -/area/science/research) +/area/science) "aSG" = ( /turf/open/floor/wood, -/area/science/research) +/area/science) "aSH" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/wood, -/area/science/research) +/area/science) "aSI" = ( /obj/structure/cable/yellow{ icon_state = "2-4" @@ -17882,7 +17853,7 @@ "aTf" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/wood, -/area/science/research) +/area/science) "aTg" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -17895,7 +17866,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aTh" = ( /turf/open/floor/carpet/red, /area/service/bar) @@ -17907,7 +17878,7 @@ }, /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/wood, -/area/science/research) +/area/science) "aTj" = ( /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, @@ -17927,14 +17898,14 @@ icon_state = "4-8" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aTm" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aTn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -17961,7 +17932,7 @@ icon_state = "4-8" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aTq" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -17973,7 +17944,7 @@ icon_state = "4-8" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aTr" = ( /obj/structure/fence, /obj/effect/turf_decal/weather/snow/corner{ @@ -17986,7 +17957,7 @@ icon_state = "4-8" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aTs" = ( /obj/effect/festive/street/streetlinesw, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -17997,9 +17968,7 @@ dir = 1 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "aTu" = ( /obj/effect/festive/street/streetlinese, /turf/open/floor/festive/cobblestone, @@ -18180,7 +18149,7 @@ }, /obj/structure/chair/stool, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aTP" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, @@ -18192,7 +18161,7 @@ }, /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/wood, -/area/science/research) +/area/science) "aTQ" = ( /turf/closed/festive/whitebrick, /area/science/server) @@ -18216,7 +18185,7 @@ }, /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aTU" = ( /obj/structure/cable{ icon_state = "1-2" @@ -18275,7 +18244,7 @@ "aUe" = ( /obj/machinery/vending/coffee, /turf/open/floor/wood, -/area/science/research) +/area/science) "aUf" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -18289,7 +18258,7 @@ }, /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/plasteel, -/area/science/research) +/area/science) "aUg" = ( /obj/structure/table/wood, /obj/machinery/newscaster{ @@ -18300,13 +18269,11 @@ /obj/item/clothing/head/beret/sci, /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/wood, -/area/science/research) +/area/science) "aUh" = ( /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "aUi" = ( /obj/machinery/rnd/server, /turf/open/floor/circuit/telecomms/server, @@ -18462,13 +18429,13 @@ "aUH" = ( /obj/machinery/disposal/bin, /turf/open/floor/wood, -/area/science/research) +/area/science) "aUI" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 5 }, /turf/open/floor/wood, -/area/science/research) +/area/science) "aUJ" = ( /obj/machinery/status_display{ pixel_y = -32 @@ -18479,14 +18446,14 @@ dir = 4 }, /turf/open/floor/wood, -/area/science/research) +/area/science) "aUK" = ( /obj/machinery/vending/cigarette, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 4 }, /turf/open/floor/wood, -/area/science/research) +/area/science) "aUL" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -18495,7 +18462,7 @@ dir = 9 }, /turf/open/floor/wood, -/area/science/research) +/area/science) "aUM" = ( /obj/structure/flora/tree/pine/xmas, /turf/open/floor/grass/snow/edina{ @@ -18703,18 +18670,14 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "aVq" = ( /obj/effect/turf_decal/weather/snow/corner{ color = "#FFFFFF"; dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "aVr" = ( /obj/effect/festive/street/streetlinenorth, /obj/effect/turf_decal/arrows/white{ @@ -18729,9 +18692,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "aVu" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/research{ @@ -19096,7 +19057,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "aWo" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/plasteel/white, @@ -20325,9 +20286,7 @@ /area/service/chapel/office) "aZB" = ( /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "aZC" = ( /obj/machinery/light/small, /turf/open/indestructible/hotelwood, @@ -21020,7 +20979,7 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "bby" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/junction{ dir = 4 @@ -21130,7 +21089,7 @@ icon_state = "2-8" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "bbN" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -21139,7 +21098,7 @@ icon_state = "2-4" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "bbO" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -21712,7 +21671,7 @@ /area/commons/storage/tools) "bdA" = ( /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bdD" = ( /obj/structure/sink{ dir = 8; @@ -22105,7 +22064,7 @@ }, /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "bew" = ( /obj/effect/festive/street/sidewalkwem, /obj/structure/cable/yellow{ @@ -22120,7 +22079,7 @@ }, /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "bey" = ( /obj/effect/festive/street/sidewalkwem, /obj/structure/cable/yellow{ @@ -22200,7 +22159,7 @@ icon_state = "1-2" }, /turf/open/floor/wood, -/area/science/research) +/area/science) "beJ" = ( /obj/machinery/conveyor{ dir = 8; @@ -22371,7 +22330,7 @@ /area/edina/street/primary/perimeter) "bfm" = ( /turf/closed/festive/whitebrick, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bfn" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -22688,7 +22647,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/science/research) +/area/science) "bfT" = ( /obj/structure/table/reinforced, /obj/item/stock_parts/cell/high, @@ -22785,7 +22744,7 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "bgd" = ( /obj/structure/fence{ dir = 4 @@ -22795,7 +22754,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "bge" = ( /obj/structure/bodycontainer/morgue, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -23270,7 +23229,7 @@ icon_state = "4-8" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "bhm" = ( /obj/machinery/mech_bay_recharge_port{ dir = 1 @@ -23883,7 +23842,7 @@ icon_state = "1-2" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "bjg" = ( /turf/closed/festive/whitebrick, /area/commons/storage/tools) @@ -24412,17 +24371,13 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bkv" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bkw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24830,9 +24785,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bli" = ( /turf/closed/wall/r_wall, /area/command/heads_quarters/cmo) @@ -26275,27 +26228,21 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "boF" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "boG" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "boH" = ( /obj/structure/fireplace{ dir = 4; @@ -26794,9 +26741,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bpO" = ( /obj/structure/fluff/lightpost/light, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -26804,9 +26749,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bpP" = ( /turf/open/floor/plasteel, /area/medical/chemistry) @@ -26816,16 +26759,12 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bpR" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bpS" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -26833,9 +26772,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bpT" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/structure/fluff/lightpost/light, @@ -26843,17 +26780,13 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bpU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bpV" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -26862,9 +26795,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bpW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -27457,9 +27388,7 @@ icon_state = "4-8" }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "brj" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -27472,9 +27401,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "brk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27483,7 +27410,7 @@ icon_state = "4-8" }, /turf/closed/festive/whitebrick/whitebrickcornernw, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "brl" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSRightEnd, @@ -27494,7 +27421,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "brm" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSMiddle, @@ -27505,7 +27432,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "brn" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSLeftEnd, @@ -27516,7 +27443,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bro" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27525,7 +27452,7 @@ icon_state = "4-8" }, /turf/closed/festive/whitebrick, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "brp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -27540,7 +27467,7 @@ icon_state = "4-8" }, /turf/closed/festive/whitebrick, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "brq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27550,7 +27477,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/festive/whitebrick, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "brr" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -27559,7 +27486,7 @@ icon_state = "4-8" }, /turf/closed/festive/whitebrick, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "brs" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -27571,9 +27498,7 @@ icon_state = "4-8" }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "brt" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28101,9 +28026,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bsz" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -28113,9 +28036,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bsA" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -28124,17 +28045,13 @@ dir = 9 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bsB" = ( /obj/structure/flora/tree/pine/xmas, /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bsC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -28339,18 +28256,14 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bsT" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bsU" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowWERightEnd, @@ -28358,21 +28271,21 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bsV" = ( /obj/machinery/vending/coffee, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bsW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/decal/festive/green_stockings, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bsX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -28393,7 +28306,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bsY" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -28418,7 +28331,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bsZ" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -28440,7 +28353,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bta" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/red{ @@ -28456,7 +28369,7 @@ /obj/machinery/vending/snack/random, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plasteel, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "btb" = ( /obj/machinery/disposal/bin, /obj/machinery/camera{ @@ -28474,13 +28387,13 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "btc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/festive/whitebrick, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "btd" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -28489,9 +28402,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bte" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -29045,9 +28956,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "buq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -29056,9 +28965,7 @@ dir = 9 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bur" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -29067,9 +28974,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bus" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen, @@ -29079,15 +28984,15 @@ /obj/structure/grille, /obj/structure/festive/whitebrick/windowWELeftEnd, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "buu" = ( /obj/machinery/vending/cola/random, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "buv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "buw" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -29100,7 +29005,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bux" = ( /obj/effect/landmark/start/medical_doctor, /obj/effect/turf_decal/tile/red{ @@ -29114,17 +29019,17 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "buy" = ( /obj/machinery/light{ dir = 4; light_color = "#e8eaff" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "buz" = ( /turf/closed/festive/whitebrick/whitebrickwe, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "buA" = ( /obj/structure/grille, /obj/structure/window/reinforced/fulltile{ @@ -29604,31 +29509,23 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bvC" = ( /obj/structure/fluff/lightpost/light, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bvD" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/structure/fluff/lightpost/light, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bvE" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 }, /obj/effect/decal/festive/fairylights, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bvF" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -29642,9 +29539,7 @@ /obj/effect/decal/festive/fairylights, /obj/effect/decal/festive/fairylights, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bvH" = ( /obj/machinery/newscaster{ pixel_x = -32 @@ -29654,12 +29549,12 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bvI" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bvJ" = ( /obj/structure/chair/wood/normal{ dir = 4 @@ -29675,7 +29570,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bvK" = ( /obj/structure/table/wood, /obj/item/reagent_containers/spray/cleaner{ @@ -29694,7 +29589,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bvL" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/red, @@ -29709,7 +29604,7 @@ }, /obj/item/clothing/head/beret/med, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bvM" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -29725,18 +29620,18 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bvN" = ( /obj/machinery/newscaster{ pixel_x = 32 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bvO" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowWERightEnd, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bvP" = ( /obj/machinery/door/airlock/command{ name = "Chief Medical Officer's Office"; @@ -30074,20 +29969,18 @@ }, /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bwG" = ( /obj/structure/sign/poster/official/help_others{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bwH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bwI" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/red, @@ -30101,7 +29994,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bwJ" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -30117,7 +30010,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bwK" = ( /obj/effect/festive/street/sidewalkn, /obj/structure/disposalpipe/segment, @@ -30302,9 +30195,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bxm" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -30317,9 +30208,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bxn" = ( /obj/structure/chair/wood/normal, /obj/effect/decal/festive/christmas_ivy_string, @@ -30403,11 +30292,11 @@ /area/medical/exam_room) "bxA" = ( /turf/closed/festive/whitebrick/whitebrickcornernw, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bxB" = ( /obj/effect/decal/festive/fairylights, /turf/closed/festive/whitebrick, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bxC" = ( /obj/effect/landmark/start/roboticist, /turf/open/floor/plasteel/white, @@ -30421,7 +30310,7 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bxE" = ( /obj/structure/extinguisher_cabinet{ dir = 4; @@ -30434,20 +30323,20 @@ /obj/structure/extinguisher_cabinet, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/festive/whitebrick, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bxF" = ( /turf/closed/festive/whitebrick/whitebrickns, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bxG" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSRightEnd, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bxH" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSMiddle, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bxI" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -30465,11 +30354,11 @@ /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSLeftEnd, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bxK" = ( /obj/structure/sign/departments/medbay/alt, /turf/closed/festive/whitebrick/whitebrickcornerse, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bxL" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -30479,18 +30368,14 @@ }, /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bxM" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 }, /obj/structure/fence/door/opened, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bxN" = ( /turf/closed/festive/bluebrick/bluebrickcornersw, /area/command/heads_quarters/cmo) @@ -30639,9 +30524,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "byh" = ( /obj/structure/flora/tree/pine/xmas, /obj/structure/cable/yellow{ @@ -30650,9 +30533,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "byi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -30660,9 +30541,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "byj" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -30681,9 +30560,7 @@ icon_state = "1-8" }, /turf/open/floor/plasteel/dark, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "byk" = ( /obj/structure/chair/wood/normal, /turf/open/floor/carpet/green, @@ -30866,7 +30743,7 @@ "byJ" = ( /obj/machinery/computer/crew, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "byK" = ( /obj/structure/bed, /obj/effect/spawner/lootdrop/bedsheet, @@ -30890,22 +30767,22 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "byN" = ( /obj/structure/table/reinforced, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "byO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "byP" = ( /obj/machinery/vending/coffee, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "byQ" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -31037,18 +30914,18 @@ /obj/structure/grille, /obj/structure/festive/whitebrick/windowWEMiddle, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bzm" = ( /obj/structure/chair/office/light{ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bzn" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/food/drinks/britcup, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bzo" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -31056,7 +30933,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bzp" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -31069,7 +30946,7 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bzq" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -31344,7 +31221,7 @@ /obj/structure/table/reinforced, /obj/effect/decal/festive/holly, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bzY" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -31358,7 +31235,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bzZ" = ( /obj/machinery/door/airlock/command{ name = "Research Director's Quarters"; @@ -31571,9 +31448,7 @@ /turf/open/floor/festive/white_alleyway{ color = "#bae3ff" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bAB" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -31765,13 +31640,11 @@ /turf/open/floor/festive/white_alleyway{ color = "#bae3ff" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bAP" = ( /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bAQ" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -31787,7 +31660,7 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bAR" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -31799,11 +31672,11 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bAS" = ( /obj/structure/sign/departments/medbay, /turf/closed/festive/whitebrick, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bAT" = ( /obj/effect/festive/street/streetlinesw, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -31943,9 +31816,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bBl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -31954,9 +31825,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bBm" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -32065,9 +31934,7 @@ /turf/open/floor/festive/white_alleyway{ color = "#bae3ff" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bBu" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -32183,15 +32050,13 @@ /turf/open/floor/festive/white_alleyway{ color = "#bae3ff" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bBB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/festive/whitebrick/whitebrickwe, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bBC" = ( /obj/machinery/door/airlock/medical/glass{ name = "Medbay Desk"; @@ -32201,7 +32066,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bBD" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -32223,7 +32088,7 @@ pixel_x = -28 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bBE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -32233,7 +32098,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bBF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -32250,7 +32115,7 @@ /obj/effect/decal/festive/mistletoe, /obj/effect/decal/festive/christmas_reef, /turf/open/floor/plasteel, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bBG" = ( /obj/effect/festive/street/sidewalknsm, /obj/structure/cable/yellow{ @@ -32468,9 +32333,7 @@ /turf/open/floor/festive/white_alleyway{ color = "#bae3ff" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bCc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32484,9 +32347,7 @@ /turf/open/floor/festive/white_alleyway{ color = "#bae3ff" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bCd" = ( /obj/machinery/door/airlock/medical{ name = "Operating Theatre"; @@ -32649,9 +32510,7 @@ pixel_x = 3 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bCl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32662,9 +32521,7 @@ /turf/open/floor/festive/white_alleyway{ color = "#bae3ff" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bCm" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -32937,9 +32794,7 @@ /turf/open/floor/festive/white_alleyway{ color = "#bae3ff" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bCz" = ( /obj/structure/extinguisher_cabinet, /obj/structure/disposalpipe/segment{ @@ -32949,7 +32804,7 @@ icon_state = "4-8" }, /turf/closed/festive/whitebrick, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bCA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32958,7 +32813,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bCB" = ( /obj/vehicle/ridden/wheelchair, /obj/structure/disposalpipe/segment{ @@ -32975,7 +32830,7 @@ pixel_y = 30 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bCC" = ( /obj/vehicle/ridden/wheelchair, /obj/structure/disposalpipe/segment{ @@ -32985,7 +32840,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bCD" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33007,7 +32862,7 @@ icon_state = "2-8" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bCE" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33028,7 +32883,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bCF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -33047,7 +32902,7 @@ }, /obj/effect/decal/festive/christmas_reef, /turf/open/floor/plasteel, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bCG" = ( /obj/effect/festive/street/streetlinesw, /turf/open/floor/festive/cobblestone, @@ -33239,9 +33094,7 @@ pixel_y = 2 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bDb" = ( /obj/effect/turf_decal/weather/snow/corner{ color = "#FFFFFF"; @@ -33254,9 +33107,7 @@ pixel_y = 2 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bDc" = ( /obj/effect/spawner/structure/window, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -33364,9 +33215,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bDk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -33375,9 +33224,7 @@ pixel_y = 2 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bDl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -33455,9 +33302,7 @@ /turf/open/floor/festive/white_alleyway{ color = "#bae3ff" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bDw" = ( /obj/structure/closet/crate/trashcart, /obj/effect/spawner/lootdrop/maintenance{ @@ -33477,9 +33322,7 @@ /turf/open/floor/festive/white_alleyway{ color = "#bae3ff" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bDy" = ( /obj/machinery/door/airlock/public/glass{ name = "Aft Primary Hallway" @@ -33499,7 +33342,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bDz" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33515,7 +33358,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bDA" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33534,7 +33377,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bDB" = ( /obj/effect/turf_decal/weather/snow/corner{ color = "#FFFFFE"; @@ -33552,7 +33395,7 @@ dir = 4 }, /turf/closed/festive/whitebrick, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bDE" = ( /obj/effect/festive/street/streetlinewest, /obj/effect/turf_decal/arrows/white, @@ -33809,16 +33652,12 @@ /turf/open/floor/festive/white_alleyway{ color = "#bae3ff" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bEg" = ( /turf/open/floor/festive/white_alleyway{ color = "#bae3ff" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bEh" = ( /obj/machinery/door/airlock/public/glass{ name = "Aft Primary Hallway" @@ -33835,7 +33674,7 @@ }, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bEi" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33848,7 +33687,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bEj" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33862,7 +33701,7 @@ }, /obj/machinery/holopad, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bEk" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -33879,7 +33718,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bEl" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -33895,7 +33734,7 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bEm" = ( /obj/effect/festive/street/sidewalkw, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -34080,9 +33919,7 @@ pixel_y = 2 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bEI" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -34091,13 +33928,11 @@ pixel_y = 2 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bEJ" = ( /obj/structure/flora/tree/pine/xmas, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bEK" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -34113,13 +33948,13 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bEL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bEM" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -34154,7 +33989,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/power/apc{ - areastring = "/area/medical/medbay/central"; + areastring = "/area/medical/medbay/lobby"; dir = 8; name = "Medbay Reception APC"; pixel_x = 26 @@ -34162,7 +33997,7 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "bER" = ( /obj/effect/festive/street/sidewalkwem, /obj/structure/cable/yellow{ @@ -34219,9 +34054,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bEY" = ( /turf/closed/festive/greybrick, /area/edina) @@ -34376,9 +34209,7 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bFw" = ( /turf/closed/festive/whitebrick/whitebrickns, /area/medical/cryo) @@ -35903,7 +35734,7 @@ icon_state = "1-4" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "bIH" = ( /obj/item/radio/intercom{ dir = 8; @@ -36411,9 +36242,7 @@ dir = 6 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bJS" = ( /obj/machinery/door/airlock/medical{ name = "Cyrostasis" @@ -36533,9 +36362,7 @@ dir = 10 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bKa" = ( /obj/machinery/shower{ pixel_y = 8 @@ -37120,9 +36947,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bLn" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -37363,9 +37188,7 @@ dir = 1 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bLE" = ( /turf/closed/festive/whitebrick{ color = "#ffe6a8" @@ -37885,9 +37708,7 @@ }, /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bMI" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -38366,9 +38187,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bNL" = ( /obj/machinery/door/airlock/medical{ name = "Ambulance Bay" @@ -38421,9 +38240,7 @@ "bNP" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bNQ" = ( /obj/machinery/shower{ pixel_y = 8 @@ -39093,9 +38910,7 @@ icon_state = "4-8" }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bPq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39105,9 +38920,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bPr" = ( /obj/machinery/door/airlock/medical{ name = "Ambulance Bay" @@ -40104,9 +39917,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bRi" = ( /obj/structure/fence{ dir = 4 @@ -40117,9 +39928,7 @@ /obj/effect/turf_decal/weather/snow/corner, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bRj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -40168,9 +39977,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bRp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -40344,9 +40151,7 @@ dir = 4 }, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bRE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -40789,9 +40594,7 @@ }, /obj/structure/fence/door/opened, /turf/open/floor/festive/alleyway, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bSJ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -40942,12 +40745,6 @@ /obj/effect/festive/street/streetlinenw, /turf/open/floor/festive/cobblestone, /area/edina/street/primary/progress) -"bTd" = ( -/obj/structure/flora/grass/green, -/turf/open/floor/grass/snow/edina{ - initial_gas_mix = "o2=22;n2=82;TEMP=270" - }, -/area/science/research) "bTe" = ( /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, @@ -41087,9 +40884,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/science/research{ - name = "Science Street" - }) +/area/science) "bTu" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSRightEnd, @@ -41921,9 +41716,7 @@ /turf/open/floor/grass/snow/edina{ initial_gas_mix = "o2=22;n2=82;TEMP=270" }, -/area/medical/medbay/aft{ - name = "Hospital" - }) +/area/medical/medbay/aft) "bVs" = ( /obj/structure/table/wood, /obj/machinery/light, @@ -45502,7 +45295,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "cdx" = ( /obj/structure/fence, /obj/effect/turf_decal/weather/snow/corner{ @@ -45606,7 +45399,7 @@ }, /obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "cdI" = ( /obj/structure/chair/comfy/teal, /obj/effect/landmark/start/chief_medical_officer, @@ -45630,7 +45423,7 @@ }, /obj/effect/landmark/start/medical_doctor, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "cdM" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -45644,7 +45437,7 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "cdN" = ( /obj/structure/chair/wood/normal{ dir = 8 @@ -45655,7 +45448,7 @@ /turf/open/floor/plasteel/white/side{ dir = 8 }, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "cdO" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -45667,7 +45460,7 @@ icon_state = "1-2" }, /turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/area/medical/medbay/lobby) "cdP" = ( /obj/structure/grille, /obj/structure/festive/redbrick/windowNSRightEnd, @@ -45742,7 +45535,7 @@ icon_state = "4-8" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "cdY" = ( /obj/effect/spawner/structure/window/reinforced/indestructable, /obj/structure/disposalpipe/segment{ @@ -48484,7 +48277,7 @@ /turf/closed/festive/whitebrick{ color = "#555555" }, -/area/science/research) +/area/science) "ckc" = ( /obj/effect/festive/street/streetlineem{ pixel_x = 1 @@ -48505,7 +48298,7 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "cke" = ( /obj/effect/festive/street/streetlineeast, /obj/effect/festive/street/streetliftedtile2, @@ -48533,7 +48326,7 @@ dir = 1 }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "cki" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -52574,7 +52367,7 @@ icon_state = "2-8" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "cuC" = ( /obj/effect/festive/street/sidewalkwem, /obj/effect/festive/street/streetliftedtile2, @@ -52722,7 +52515,7 @@ icon_state = "1-2" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "cuT" = ( /obj/structure/grille, /obj/structure/festive/redbrick/windowWELeftEnd, @@ -52792,7 +52585,7 @@ icon_state = "1-4" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "cva" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -52804,7 +52597,7 @@ icon_state = "2-8" }, /turf/open/floor/festive/alleyway, -/area/science/research) +/area/science) "cvb" = ( /obj/machinery/door/airlock/security/glass{ id_tag = "meddoor"; @@ -55017,6 +54810,13 @@ /obj/effect/overlay/palmtree_r, /turf/open/floor/plating/beach/sand, /area/edina) +"ezS" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science) "ezY" = ( /obj/machinery/light/small, /turf/open/floor/wood, @@ -55222,6 +55022,16 @@ }, /turf/open/floor/grass/fakebasalt, /area/edina) +"gia" = ( +/obj/effect/turf_decal/weather/snow/corner{ + color = "#FFFFFE"; + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/science) "giH" = ( /obj/structure/statue/gold/cmo{ anchored = 1 @@ -55379,6 +55189,15 @@ /obj/structure/mineral_door/wood, /turf/closed/wall/mineral/wood, /area/edina) +"hya" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science) "hzc" = ( /obj/structure/window/reinforced{ dir = 1; @@ -55871,6 +55690,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/edina) +"lEK" = ( +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science) "lIt" = ( /obj/item/flashlight/glowstick/cyan, /turf/open/floor/wood, @@ -55995,6 +55820,12 @@ "mua" = ( /turf/open/floor/carpet/royalblack, /area/edina) +"mwL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/festive/alleyway, +/area/science) "mIf" = ( /obj/structure/festive/trainplatform/edge_east, /mob/living/simple_animal/jacq/car_spawner, @@ -56146,6 +55977,12 @@ }, /turf/open/floor/holofloor/beach, /area/edina) +"nZW" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/festive/alleyway, +/area/science) "oeX" = ( /obj/machinery/mecha_part_fabricator, /obj/effect/decal/festive/christmas_ivy_string, @@ -56335,6 +56172,12 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plasteel, /area/edina) +"pqA" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/festive/alleyway, +/area/science) "pqW" = ( /obj/structure/fluff/broken_flooring, /turf/open/space/basic, @@ -56616,6 +56459,16 @@ }, /turf/open/floor/plasteel/cafeteria, /area/edina) +"rEg" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science) "rKc" = ( /obj/structure/sign/poster/contraband/lusty_xenomorph{ pixel_x = 32 @@ -56694,6 +56547,12 @@ }, /turf/open/floor/plasteel, /area/service/hydroponics) +"slt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/festive/alleyway, +/area/science) "snc" = ( /obj/machinery/portable_atmospherics/canister/water_vapor, /turf/open/floor/plasteel/white/corner{ @@ -56883,6 +56742,15 @@ /area/cargo{ name = "Cargo Break Room" }) +"tHL" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/festive/alleyway, +/area/science) "tOA" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -57117,6 +56985,12 @@ }, /turf/open/floor/plating/beach/sand, /area/edina) +"vIN" = ( +/obj/structure/statue/snow/snowman, +/turf/open/floor/grass/snow/edina{ + initial_gas_mix = "o2=22;n2=82;TEMP=270" + }, +/area/science) "vLq" = ( /obj/machinery/vending/boozeomat{ pixel_x = 32; @@ -76687,7 +76561,7 @@ aHH aVs aVv bhd -aVv +aMb aVv aVv aVv @@ -77435,8 +77309,8 @@ bnD bWz bhh bia -aoX -aoX +aws +aws aKN aNc aNO @@ -77692,8 +77566,8 @@ bGn bWz bhh bij -aoX -aoX +aws +aws aKN aKN aKN @@ -77949,11 +77823,11 @@ bqf bWz bhh bij -aoX -aoX -aoX -aoX -aoX +aws +aws +aws +aws +aws aMw aPJ aQs @@ -78206,11 +78080,11 @@ bWz bWz bhh bij -aoX -aoX -aoX -aUM -aoX +aws +aws +aws +lEK +aws aMw aPJ aQt @@ -78463,11 +78337,11 @@ bqg bWz bhh bij -aoX -aoX -aoX -aoX -aoX +aws +aws +aws +aws +aws aMw aPJ aQu @@ -78720,11 +78594,11 @@ bHx bWz bhh bij -aoX -aoX -aoX -aoX -aoX +aws +aws +aws +aws +aws aMw aPJ aQv @@ -78977,11 +78851,11 @@ bHU bWz bhh bij -aoX -aoX -aUM -aoX -aKQ +aws +aws +lEK +aws +aMa aMw aPJ aQw @@ -79234,11 +79108,11 @@ bWz bWz bhh bik -aoX -aoX -aoX -aoX -aoX +aws +aws +aws +aws +aws aMw aPJ aPJ @@ -79494,28 +79368,28 @@ ckb awo ckb aMr -aLW -aLW -aoD -aLW -aLW -aLW -aLW +ezS +ezS +aKT +ezS +ezS +ezS +ezS bbM -bgB -bgB -bgB -bgB -bgB +gia +gia +gia +gia +gia bIG cdw -aLW -aLW -aLW cdw -aLW -aoD -aLW +cdw +cdw +cdw +ezS +aKT +ezS cdw cdw bFu @@ -80008,20 +79882,20 @@ bdO bdO ckb aMt -aNe -aNe -aNe -aNe -aNe -aNe -aNe -aoX -aoX -bTd -aoX -aoX -aoX -bgE +aMb +aMb +aMb +aMb +aMb +aMb +aMb +aws +aws +bTt +aws +aws +aws +rEg aVO aWf aWS @@ -80265,20 +80139,20 @@ bim bim aNi ckd -aNe +aMb aNP -aNe +aMb aPK -aNe +aMb aRt -aNe -aNe -aNe -aNe -aNe -aNe -aNe -bgE +aMb +aMb +aMb +aMb +aMb +aMb +aMb +rEg aVP aWg aWT @@ -80522,20 +80396,20 @@ bdO bdO ckb ckh -aNe +aMb aNQ -aNe +aMb aPL -aNe +aMb aPL -aNe +aMb aSD aTf aSG aUe aUH -aNe -bgE +aMb +rEg aVQ aWh aWU @@ -80779,13 +80653,13 @@ bdO bdO biE aMt -aNe +aMb aNR aOP aOP aOP aOP -aNe +aMb aSE aTg aTg @@ -81042,14 +80916,14 @@ aOQ aKg aKg aKg -aNe +aMb aSF aTg aTg aTg aUJ -aNe -bgE +aMb +rEg aVO aWj aWW @@ -81279,25 +81153,25 @@ bdS bgl aGk aGk -aCH -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aCH +aOj +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aws +aOj aMv aNg aIU aKg aPM -aNe +aMb aKg aRU aSG @@ -81305,7 +81179,7 @@ aTg aTO aTO aUK -aNe +aMb cva bfi bib @@ -81536,8 +81410,8 @@ bdS bgl aGk aRa -aCH -aoX +aOj +aws aCn aCn aCn @@ -81547,14 +81421,14 @@ aCn aCn aCn aCn -aoX -aCH +aws +aOj aMw -aNe +aMb aNT aOR aPN -aNe +aMb aNR aRW aSH @@ -81562,8 +81436,8 @@ aTi aTP aUg aUL -aNe -bgE +aMb +rEg aVO aWl aWY @@ -81793,8 +81667,8 @@ bdS bgl aGk aGk -aCH -aoX +aOj +aws aCn aGA aGA @@ -81804,8 +81678,8 @@ aGA aGA aGA aCn -aoX -aCH +aws +aOj aMw aNh aNU @@ -81815,12 +81689,12 @@ aNh aNU aNh aNh -aNe -aNe -aNe -aNe -aNe -bgE +aMb +aMb +aMb +aMb +aMb +rEg aVO aWm aVO @@ -82050,8 +81924,8 @@ bdT bgm aGk aGk -aCH -aoX +aOj +aws aCn aGB aHx @@ -82061,8 +81935,8 @@ aDU aDU aKF aCn -aoX -aCH +aws +aOj aLp aNh aNV @@ -82072,14 +81946,14 @@ aQx aRu aRX aNh -aoX -aoX -aoX -aoX -aoX -bgE -aKQ -aoX +aws +aws +aws +aws +aws +rEg +aMa +aws aWZ aYm aZW @@ -82307,8 +82181,8 @@ bdS bgm aGk aRa -aCH -aoX +aOj +aws aCn aGA aGA @@ -82318,8 +82192,8 @@ aGA aGA aGA aCn -aoX -aCH +aws +aOj aLp aNh aNW @@ -82329,14 +82203,14 @@ aQy aRv aOU aNh -aoX -aoX -aoX -aoX -aoX -bgE -aoX -aoX +aws +aws +aws +aws +aws +rEg +aws +aws aVO aWf aWS @@ -82564,8 +82438,8 @@ bdS bgm aGk aGk -aCH -aoX +aOj +aws aCn aCn aHy @@ -82575,8 +82449,8 @@ aJA aHy aCn aCn -aoX -aCH +aws +aOj aLp aNh aOa @@ -82586,22 +82460,22 @@ aOa aNh aRY aNh -aoX -aoX -aoX -aoX -aoX -aTo -aOc -aOc -aOc -aOc -aOc -aOc -aOc +aws +aws +aws +aws +aws +hya +nZW +nZW +nZW +nZW +nZW +nZW +nZW bev bfS -aCH +aOj bFZ bHZ bjZ @@ -82821,8 +82695,8 @@ bdS bgm aGk aGk -aCH -aoX +aOj +aws aCn aGC aHz @@ -82832,8 +82706,8 @@ aJB aKm aKG aCn -aoX -aCH +aws +aOj aLp aNh aNY @@ -82842,23 +82716,23 @@ aOU aOa aNh aMv -aLW -aOc -aOc -aOc -aOc -aOc +ezS +nZW +nZW +nZW +nZW +nZW bbM -bgK -aoD -aNn -aNn -aNn -aNn -aNn +mwL +aKT +pqA +pqA +pqA +pqA +pqA bex bfS -aCH +aOj bFZ bHZ bjZ @@ -83078,8 +82952,8 @@ bdS bgm aGk aRa -aCH -aoX +aOj +aws aCn aGD aHA @@ -83089,8 +82963,8 @@ aJC aKn aGD aCn -aoX -aCH +aws +aOj aLp aNh aNZ @@ -83099,15 +82973,15 @@ aOU aOa aRw aMv -aoD -aoD +aKT +aKT aLX aLX aLX aLX aLX -aTn -aTj +slt +aLv aXa aXa aZX @@ -83335,8 +83209,8 @@ bdS bgm aGk aGk -aCH -aoX +aOj +aws aCn aGG aHB @@ -83346,8 +83220,8 @@ aHB aHB aKH aCn -aoX -aCH +aws +aOj aLp aNh aOa @@ -83356,15 +83230,15 @@ aPO aQz aRx aMv -aoD -aTj -aKQ -aoX -aoX -aoX -aoX -aTo -aTj +aKT +aLv +aMa +aws +aws +aws +aws +hya +aLv aXb aYn aZY @@ -83603,8 +83477,8 @@ aIi aDT aDT aKP -aoX -aCH +aws +aOj aLp aNh aOb @@ -83613,15 +83487,15 @@ aPP aQA aNh aMv -aoD -aTj -aoX -aoX -aoX -cgF -aoX -aTo -aTj +aKT +aLv +aws +aws +aws +vIN +aws +hya +aLv aXc aYo aZZ @@ -83849,8 +83723,8 @@ bdS bgl aGk aRa -aCH -aoX +aOj +aws aCn aCn aCn @@ -83860,8 +83734,8 @@ aCn aCn aCn aCn -aoX -aCH +aws +aOj aLp aNh aNh @@ -83870,15 +83744,15 @@ aNh aNh aRy aMv -aoD -aTj -aoX -aoX -aUM -aoX -aoX -aTo -aTj +aKT +aLv +aws +aws +lEK +aws +aws +hya +aLv aXd aYp baa @@ -84106,36 +83980,36 @@ bdS bgl aGk aGk -aCH -aoX -aoX -aoX -aoX +aOj +aws +aws +aws +aws aCn aIS aCn -aoX -aoX -aoX -aoX -aCH +aws +aws +aws +aws +aOj aMx aNi aKI aKI aKI aKI -aOc +nZW aLX aLX -aTj -aoX -aoX -aoX -aoX -aoX -aTo -aTj +aLv +aws +aws +aws +aws +aws +hya +aLv aXa aYq baa @@ -84386,11 +84260,11 @@ aRz aRZ aLU aLp -aoX -aoX -aoX -aoX -bTd +aws +aws +aws +aws +bTt bhl bjf buh @@ -84629,9 +84503,9 @@ aIj aIQ aJD aCn -aoX -aoX -aoX +aws +aws +aws aLU aMy aNj @@ -84643,13 +84517,13 @@ aQH aSa aLU aLp -aoX -aoX -aoX -aoX -aoX -aTo -aTj +aws +aws +aws +aws +aws +hya +aLv aXa aYs baa @@ -84905,8 +84779,8 @@ aTQ aTQ aTQ aTQ -aTo -aTj +hya +aLv aXb aYr baa @@ -85143,8 +85017,8 @@ aDV aIX aCY aKo -aoX -aKQ +aws +aMa aLp aLU aMz @@ -85162,8 +85036,8 @@ aUi aUN aUi aTQ -aTo -aTj +hya +aLv aXc aYt baa @@ -85400,8 +85274,8 @@ aDV aIX aCY aKp -aoX -aoX +aws +aws aLp aLU aMA @@ -85419,8 +85293,8 @@ aUj aUO aVg aTQ -aTo -aTj +hya +aLv aXd aYu bab @@ -85657,8 +85531,8 @@ aDV aIX aCY aKp -aoX -aoX +aws +aws aLp aLU aMz @@ -85676,8 +85550,8 @@ aUk aUP aVh aTQ -aTo -aTj +hya +aLv aXa aXa aXa @@ -85914,8 +85788,8 @@ aHB aIV aCY aKq -aoX -aoX +aws +aws aLq aLV aMB @@ -85933,14 +85807,14 @@ bcS aUQ aVi aTQ -aTo -aoD -aOc -aOc -aOc -aOc -aOc -aOc +hya +aKT +nZW +nZW +nZW +nZW +nZW +nZW bgc bEr bGk @@ -86171,8 +86045,8 @@ aDV aIX aJE aCn -aoX -aoX +aws +aws aLr aLU aMC @@ -86192,12 +86066,12 @@ aVj aTQ bhl bjf -buE -buE -buE -buE -bgK -aNn +tHL +tHL +tHL +tHL +mwL +pqA bgd bEM bGk @@ -86428,8 +86302,8 @@ aDV aIX aCY aKo -aoX -aoX +aws +aws aLr aLU aLU @@ -86447,9 +86321,9 @@ aUn aUS aVk aTQ -aTo -aTj -aoX +hya +aLv +aws aXf aXf aXf @@ -86685,28 +86559,28 @@ aDV aIX aCY aKp -aoX -aoX +aws +aws aLs -aLW -aLW -aLW -aOc -aOc -aOc -aOc -aTn -aOc -aOc +ezS +ezS +ezS +nZW +nZW +nZW +nZW +slt +nZW +nZW aTm aTQ aTQ aTQ aTQ aTQ -aTo -aTj -aKQ +hya +aLv +aMa aXf bac bbK @@ -86942,28 +86816,28 @@ aHB aIV aCY aKp -bTd -aoX +bTt +aws aLs aLX aLX -aNn +pqA aOd -buE -buE -buE +tHL +tHL +tHL cuB cuS cuS cuZ -aLW -aLW -aLW -aLW -aLW -aTn -aTj -aoX +ezS +ezS +ezS +ezS +ezS +slt +aLv +aws aXf bad bal @@ -87199,8 +87073,8 @@ aDV aIX aCY aKq -aoX -aoX +aws +aws aLt aLY aLY @@ -87212,15 +87086,15 @@ aSI cuQ cuT cuV -aTo -aoD -aNn +hya +aKT +pqA aLX aLX aLX -aTn +slt aWn -aoX +aws aXf bae bal @@ -87456,8 +87330,8 @@ aCW aIY aJG aCn -aoX -aoX +aws +aws aLt aLY aMD @@ -87469,8 +87343,8 @@ aSJ aRC aSh cuW -aTo -aTj +hya +aLv aUo aUo aUo @@ -87727,7 +87601,7 @@ aRD aPW cuX aTp -aTj +aLv aUo aUT aVl @@ -87984,7 +87858,7 @@ aRE aSi cuY aTq -aTj +aLv aUo aUU aVm @@ -88228,7 +88102,7 @@ aJb aJI aKs aCn -aKS +aMv aLv aLY aLY @@ -88485,7 +88359,7 @@ aJc aJI aKt aCn -aKS +aMv aLv aws aws @@ -88742,7 +88616,7 @@ aIZ aJJ aKu aCn -aKS +aMv aLv aMa aws @@ -88999,7 +88873,7 @@ aJd aJK aCn aCn -aKS +aMv aLv aws aMG @@ -89256,7 +89130,7 @@ aJe aJL aKv aKo -aKS +aMv aLv aws aMG @@ -89513,7 +89387,7 @@ aJf aJM aKw aKq -aKS +aMv aLv aws aMG @@ -89770,7 +89644,7 @@ aJg aJN aKx aCn -aKS +aMv aLv aws aMG @@ -90027,7 +89901,7 @@ aJh aJO aKw aKo -aKS +aMv aKT aws aMH @@ -90284,7 +90158,7 @@ aJi aJP aKy aKq -aKS +aMv aLv aws aMI @@ -90541,7 +90415,7 @@ aJj aJQ aKz aCn -aKS +aMv aLv aws aMJ @@ -90798,7 +90672,7 @@ aJk aJR aKA aCn -aKS +aMv aLv aws aMG @@ -91055,7 +90929,7 @@ aJl aCZ aCn aCn -aKS +aMv aLv aws aMG @@ -91312,7 +91186,7 @@ aJm aJS aDW aCn -aKS +aMv aLv aws aMK @@ -91826,7 +91700,7 @@ aJn aJT aDW aCn -aKS +aMv aLv bTt aMK From 05a7e25ced8dc0d45e44ff874ce924a84ca1b78d Mon Sep 17 00:00:00 2001 From: keronshb Date: Sun, 21 Nov 2021 00:27:34 -0500 Subject: [PATCH 06/11] Fixes the area names --- .../map_files/FestiveBall/FestiveStation.dmm | 936 +++++------------- 1 file changed, 234 insertions(+), 702 deletions(-) diff --git a/_maps/map_files/FestiveBall/FestiveStation.dmm b/_maps/map_files/FestiveBall/FestiveStation.dmm index cdd8e047d1..a5268250fc 100644 --- a/_maps/map_files/FestiveBall/FestiveStation.dmm +++ b/_maps/map_files/FestiveBall/FestiveStation.dmm @@ -21334,9 +21334,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bcG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -21349,9 +21347,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bcH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 @@ -21359,9 +21355,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bcI" = ( /obj/machinery/light/small{ dir = 1; @@ -21373,9 +21367,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bcJ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ dir = 4 @@ -21383,9 +21375,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bcK" = ( /obj/structure/cable/yellow{ icon_state = "0-4" @@ -21794,17 +21784,13 @@ "bdV" = ( /obj/effect/spawner/structure/window/reinforced/indestructable, /turf/open/floor/plating, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bdW" = ( /obj/structure/table/wood/fancy/green, /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bdX" = ( /obj/structure/cable/yellow{ icon_state = "0-4" @@ -21819,9 +21805,7 @@ dir = 1; icon_state = "chapel" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bdY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -21834,9 +21818,7 @@ dir = 4; icon_state = "chapel" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bdZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -21848,9 +21830,7 @@ dir = 1; icon_state = "chapel" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bea" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -21859,9 +21839,7 @@ dir = 4; icon_state = "chapel" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "beb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -21870,9 +21848,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bec" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -21888,33 +21864,25 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bed" = ( /turf/open/indestructible{ dir = 1; icon_state = "chapel" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bee" = ( /turf/open/indestructible{ dir = 4; icon_state = "chapel" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bef" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "beg" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -22365,16 +22333,12 @@ dir = 8; icon_state = "chapel" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bfr" = ( /turf/open/indestructible{ icon_state = "chapel" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bfs" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -22384,9 +22348,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bft" = ( /obj/structure/chair/wood/wings{ dir = 8 @@ -22395,9 +22357,7 @@ dir = 8; icon_state = "chapel" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bfu" = ( /obj/structure/cable/yellow{ icon_state = "2-4" @@ -22431,9 +22391,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bfy" = ( /turf/closed/wall/mineral/iron, /area/service/chapel/main) @@ -23044,9 +23002,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bgM" = ( /obj/structure/chair/wood/wings{ dir = 8 @@ -23055,9 +23011,7 @@ dir = 1; icon_state = "chapel" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bgN" = ( /obj/structure/table/wood/fancy/red, /turf/open/indestructible/hotelwood, @@ -23131,9 +23085,7 @@ /area/service/chapel/main) "bgY" = ( /turf/open/floor/festive/cobblestone, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bgZ" = ( /obj/machinery/light/small{ dir = 1; @@ -23391,9 +23343,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bhR" = ( /obj/structure/table/wood/fancy/red, /obj/item/flashlight/lantern{ @@ -23402,9 +23352,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bhS" = ( /obj/structure/table/wood/fancy/red, /obj/item/flashlight/lantern{ @@ -23694,9 +23642,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "biQ" = ( /obj/structure/table/wood/fancy/red, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -23705,9 +23651,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "biR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -23715,9 +23659,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "biS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -23747,9 +23689,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "biW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -23762,9 +23702,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "biX" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ dir = 8 @@ -23775,9 +23713,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "biY" = ( /obj/structure/mineral_door/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -23965,17 +23901,13 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bjB" = ( /obj/effect/landmark/start/chaplain, /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bjC" = ( /obj/structure/table/wood/fancy/red, /obj/item/storage/book/bible{ @@ -23984,9 +23916,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bjD" = ( /obj/structure/disposalpipe/junction/yjunction{ dir = 4 @@ -24004,9 +23934,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bjE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24018,9 +23946,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bjF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24031,9 +23957,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bjG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24045,9 +23969,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bjH" = ( /obj/structure/mineral_door/wood, /obj/structure/disposalpipe/segment{ @@ -24330,9 +24252,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bkr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -24340,9 +24260,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bks" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24351,9 +24269,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bkt" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -24363,9 +24279,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bku" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -24386,9 +24300,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bkx" = ( /obj/structure/mineral_door/wood, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24951,9 +24863,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "blA" = ( /obj/structure/table/wood/fancy/red, /obj/item/flashlight/lantern{ @@ -25374,9 +25284,7 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/service/abandoned_gambling_den/secondary{ - name = "Arcade" - }) +/area/service/abandoned_gambling_den/secondary) "bmw" = ( /turf/closed/festive/creambrick, /area/edina/crew_quarters/store/clothes) @@ -25808,9 +25716,7 @@ /area/command/heads_quarters/rd) "bnw" = ( /turf/closed/festive/greybrick/greybrickcornernw, -/area/service/abandoned_gambling_den/secondary{ - name = "Arcade" - }) +/area/service/abandoned_gambling_den/secondary) "bnB" = ( /obj/structure/grille, /obj/structure/festive/greybrick/windowNSLeftEnd, @@ -26450,9 +26356,7 @@ /turf/open/indestructible{ icon_state = "chapel" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bpg" = ( /obj/machinery/door/airlock/wood, /obj/machinery/door/firedoor, @@ -26463,9 +26367,7 @@ /area/commons/fitness/recreation) "bph" = ( /turf/closed/wall/mineral/iron, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bpi" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -26474,9 +26376,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bpj" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -26489,9 +26389,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bpk" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32 @@ -26500,9 +26398,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bpl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -26998,9 +26894,7 @@ /area/cargo/miningoffice) "bqA" = ( /turf/closed/wall/mineral/iron, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bqB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -27013,9 +26907,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bqC" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -27024,9 +26916,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bqD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 9 @@ -27034,17 +26924,13 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock{ - name = "Chapel Hall" - }) +/area/service/chapel/dock) "bqE" = ( /obj/structure/closet/secure_closet/freezer/fridge, /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bqF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -27056,9 +26942,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bqG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -27067,15 +26951,11 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bqH" = ( /obj/effect/spawner/structure/window/reinforced/indestructable, /turf/open/floor/plating, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bqI" = ( /obj/effect/festive/street/sidewalknsm, /obj/effect/festive/street/streetliftedtile2, @@ -27683,9 +27563,7 @@ /area/edina) "brH" = ( /turf/closed/festive/greybrick, -/area/service/abandoned_gambling_den/secondary{ - name = "Arcade" - }) +/area/service/abandoned_gambling_den/secondary) "brI" = ( /obj/machinery/door/airlock/silver/glass, /turf/open/floor/festive/wooden/wooden1, @@ -27890,9 +27768,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bsl" = ( /obj/structure/dresser, /obj/machinery/airalarm{ @@ -27901,9 +27777,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bsm" = ( /obj/machinery/light/small{ dir = 1; @@ -27913,18 +27787,14 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bsn" = ( /obj/structure/bed, /obj/item/bedsheet/black, /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bso" = ( /obj/structure/fence/corner{ dir = 4 @@ -27948,9 +27818,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bsr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -27959,9 +27827,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bss" = ( /obj/structure/sink/kitchen{ dir = 8; @@ -27970,9 +27836,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bst" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -28678,33 +28542,25 @@ /obj/structure/curtain, /obj/effect/spawner/structure/window/reinforced/indestructable, /turf/open/floor/plating, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "btS" = ( /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "btT" = ( /obj/effect/landmark/start/chaplain, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "btU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "btV" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -28716,9 +28572,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "btW" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -28734,9 +28588,7 @@ light_color = "#ffc1c1" }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "btX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -28748,9 +28600,7 @@ dir = 4 }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "btY" = ( /obj/structure/chair/sofa/right, /obj/structure/cable/yellow{ @@ -28761,9 +28611,7 @@ }, /obj/effect/landmark/start/chaplain, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "btZ" = ( /obj/structure/chair/sofa, /obj/structure/cable/yellow{ @@ -28777,9 +28625,7 @@ dir = 8 }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bua" = ( /obj/structure/chair/sofa/left, /obj/structure/cable/yellow{ @@ -28789,9 +28635,7 @@ pixel_y = 22 }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bub" = ( /obj/structure/cable/yellow{ icon_state = "0-8" @@ -28807,15 +28651,11 @@ pixel_y = 2 }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "buc" = ( /obj/structure/bookcase/random/religion, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bud" = ( /obj/structure/curtain, /obj/machinery/shower{ @@ -28823,9 +28663,7 @@ }, /obj/item/soap/deluxe, /turf/open/indestructible/hoteltile, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bue" = ( /obj/structure/table/wood, /obj/structure/cable/yellow{ @@ -28840,9 +28678,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "buf" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -28851,16 +28687,12 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bug" = ( /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "buh" = ( /obj/machinery/door/airlock/research/glass{ name = "Circuitry Lab"; @@ -29290,9 +29122,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 @@ -29300,9 +29130,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 @@ -29313,9 +29141,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvi" = ( /obj/machinery/door/airlock/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -29325,9 +29151,7 @@ dir = 4 }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 @@ -29336,9 +29160,7 @@ dir = 4 }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvk" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -29348,9 +29170,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvl" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -29359,44 +29179,32 @@ dir = 4 }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/carpet/green, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvo" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvp" = ( /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvq" = ( /obj/machinery/door/airlock/wood, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvr" = ( /obj/structure/mirror{ pixel_x = 28 @@ -29406,9 +29214,7 @@ pixel_x = 11 }, /turf/open/indestructible/hoteltile, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bvs" = ( /turf/open/floor/carpet/green, /area/service/cafeteria) @@ -29417,9 +29223,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bvu" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -29428,9 +29232,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bvv" = ( /obj/structure/table/wood, /obj/machinery/microwave{ @@ -29439,9 +29241,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery{ - name = "Chapel Kitchen" - }) +/area/service/chapel/asteroid/monastery) "bvw" = ( /obj/structure/table, /obj/item/pen/fountain, @@ -29878,29 +29678,21 @@ }, /obj/machinery/disposal/bin, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bwu" = ( /obj/structure/table/wood, /obj/item/storage/fancy/candle_box{ pixel_y = 4 }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bwv" = ( /turf/open/floor/carpet/green, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bww" = ( /obj/machinery/light/small, /turf/open/floor/carpet/green, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bwx" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -29915,9 +29707,7 @@ dir = 8 }, /turf/open/indestructible/hoteltile, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bwz" = ( /obj/machinery/door/airlock/titanium{ name = "Kitchen"; @@ -31003,9 +30793,7 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bzA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31258,9 +31046,7 @@ /area/edina/street/intersection/princessprogress) "bAc" = ( /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bAd" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -31275,9 +31061,7 @@ dir = 1 }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bAf" = ( /obj/structure/closet/crate/freezer, /obj/structure/sign/poster/official/random{ @@ -31704,23 +31488,17 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/festive/cobblestone, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bAY" = ( /obj/effect/turf_decal/loading_area{ dir = 8 }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bAZ" = ( /obj/effect/turf_decal/delivery, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bBa" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -32162,9 +31940,7 @@ dir = 8 }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bBM" = ( /obj/machinery/button/door{ id = "qm_warehouse"; @@ -32953,17 +32729,13 @@ pixel_y = 16 }, /turf/open/floor/festive/cobblestone, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bCO" = ( /obj/machinery/light{ dir = 4 }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bCP" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; @@ -33060,9 +32832,7 @@ dir = 4 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bCY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -33759,9 +33529,7 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bEp" = ( /obj/machinery/door/airlock/mining/glass{ name = "Loading Garage"; @@ -33769,9 +33537,7 @@ }, /obj/machinery/door/firedoor, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bEq" = ( /obj/structure/fence, /turf/open/floor/grass/snow/edina{ @@ -34017,9 +33783,7 @@ id = "cargocars" }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bEU" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/festive/alleyway, @@ -34434,9 +34198,7 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bGi" = ( /obj/structure/table/reinforced, /turf/open/floor/festive/wooden/wooden1, @@ -34461,18 +34223,14 @@ }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bGm" = ( /obj/machinery/conveyor{ id = "garbage" }, /obj/structure/plasticflaps, /turf/open/floor/plating, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bGn" = ( /obj/structure/chair/sofa/right{ dir = 1 @@ -35053,9 +34811,7 @@ pixel_y = 32 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bHE" = ( /obj/structure/chair, /obj/effect/turf_decal/tile/brown{ @@ -35069,9 +34825,7 @@ pixel_y = 32 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bHF" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -35088,9 +34842,7 @@ }, /obj/effect/decal/festive/mistletoe, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bHG" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -35107,18 +34859,14 @@ light_color = "#d1dfff" }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bHH" = ( /obj/effect/turf_decal/caution/stand_clear{ pixel_y = 8 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bHI" = ( /obj/machinery/autolathe{ name = "public autolathe" @@ -35136,9 +34884,7 @@ pixel_y = 24 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bHJ" = ( /obj/machinery/computer/cargo/request, /obj/effect/turf_decal/tile/brown{ @@ -35154,9 +34900,7 @@ pixel_y = 32 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bHK" = ( /obj/structure/table/wood/fancy/green, /obj/effect/turf_decal/tile/brown{ @@ -35180,9 +34924,7 @@ }, /obj/machinery/door/firedoor, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bHL" = ( /obj/machinery/computer/cargo, /obj/effect/turf_decal/tile/brown{ @@ -35196,9 +34938,7 @@ }, /obj/effect/decal/festive/red_stockings, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bHM" = ( /obj/effect/festive/street/streetlinenorth, /obj/effect/turf_decal/arrows/white{ @@ -35239,9 +34979,7 @@ }, /obj/effect/decal/festive/fairylights, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bHP" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -35249,9 +34987,7 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bHQ" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -35266,9 +35002,7 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bHS" = ( /obj/structure/chair/stool, /obj/machinery/requests_console{ @@ -35280,9 +35014,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bHT" = ( /obj/structure/window/reinforced{ dir = 8 @@ -35298,9 +35030,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bHU" = ( /obj/structure/chair/sofa/corner{ dir = 8 @@ -35318,9 +35048,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bHW" = ( /obj/structure/table, /obj/item/stack/wrapping_paper, @@ -35365,9 +35093,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel/white/corner, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bHX" = ( /obj/item/storage/box, /obj/structure/table, @@ -35390,15 +35116,11 @@ dir = 8 }, /turf/open/floor/plasteel/white/corner, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bHY" = ( /obj/effect/spawner/structure/window/reinforced/indestructable, /turf/open/floor/plating, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bHZ" = ( /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, @@ -35926,9 +35648,7 @@ /obj/machinery/door/firedoor, /obj/effect/decal/festive/christmas_reef, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bJj" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 1 @@ -35947,38 +35667,28 @@ dir = 4 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bJl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bJm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bJn" = ( /obj/effect/turf_decal/bot, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bJo" = ( /obj/effect/turf_decal/delivery, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bJp" = ( /obj/structure/table/wood/fancy/green, /obj/effect/turf_decal/tile/brown{ @@ -35993,27 +35703,21 @@ req_access_txt = "50" }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bJq" = ( /obj/structure/chair/office/dark{ dir = 8 }, /obj/effect/landmark/start/cargo_technician, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bJr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bJs" = ( /obj/effect/festive/street/sidewalkn, /turf/open/floor/festive/cobblestone, @@ -36025,9 +35729,7 @@ req_access_txt = "27" }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bJu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -36040,9 +35742,7 @@ req_access_txt = "27" }, /turf/open/indestructible/hotelwood, -/area/service/chapel/main/monastery{ - name = "Chaplain's Quarters" - }) +/area/service/chapel/main/monastery) "bJv" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -36058,9 +35758,7 @@ "bJw" = ( /obj/effect/turf_decal/stripes/line, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bJx" = ( /obj/structure/sign/departments/botany{ pixel_x = 32; @@ -36079,9 +35777,7 @@ name = "Reclaiming center" }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bJz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -36616,9 +36312,7 @@ /obj/effect/spawner/structure/window/reinforced/indestructable, /obj/structure/sign/poster/official/foam_force_ad, /turf/open/floor/plating, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bKG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36627,9 +36321,7 @@ icon_state = "4-8" }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bKH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -36638,9 +36330,7 @@ dir = 8 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bKI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ @@ -36650,9 +36340,7 @@ icon_state = "4-8" }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bKJ" = ( /obj/machinery/holopad, /obj/structure/disposalpipe/segment{ @@ -36662,9 +36350,7 @@ icon_state = "4-8" }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bKK" = ( /obj/effect/landmark/start/quartermaster, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -36675,9 +36361,7 @@ icon_state = "4-8" }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bKL" = ( /obj/structure/table/wood/fancy/green, /obj/effect/turf_decal/tile/brown{ @@ -36697,9 +36381,7 @@ }, /obj/machinery/door/firedoor, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bKM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36714,9 +36396,7 @@ pixel_y = 6 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bKN" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -36745,9 +36425,7 @@ dir = 8 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bKP" = ( /obj/machinery/conveyor{ dir = 4; @@ -36758,9 +36436,7 @@ }, /obj/structure/disposalpipe/trunk, /turf/open/floor/plating, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bKQ" = ( /obj/machinery/conveyor{ dir = 4; @@ -36772,9 +36448,7 @@ pixel_y = -22 }, /turf/open/floor/plating, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bKR" = ( /obj/machinery/conveyor{ dir = 4; @@ -36785,9 +36459,7 @@ light_color = "#e8eaff" }, /turf/open/floor/plating, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bKS" = ( /obj/machinery/conveyor{ dir = 4; @@ -36795,9 +36467,7 @@ }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bKT" = ( /obj/machinery/conveyor{ dir = 4; @@ -36808,9 +36478,7 @@ dir = 1 }, /turf/open/floor/plating, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bKU" = ( /obj/machinery/disposal/deliveryChute{ dir = 8 @@ -36822,9 +36490,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bKV" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -37066,9 +36732,7 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "bLv" = ( /obj/machinery/button/door{ id = "idquarters"; @@ -37321,30 +36985,22 @@ }, /obj/structure/disposalpipe/segment, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bLW" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bLX" = ( /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bLY" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bLZ" = ( /obj/structure/table/wood/fancy/green, /obj/effect/turf_decal/tile/brown{ @@ -37362,9 +37018,7 @@ req_access_txt = "50" }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bMa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -37373,9 +37027,7 @@ dir = 8 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bMb" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -37417,30 +37069,22 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bMf" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSRightEnd, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bMg" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSMiddle, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bMh" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSLeftEnd, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "bMi" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/structure/disposalpipe/segment{ @@ -37924,9 +37568,7 @@ }, /obj/effect/turf_decal/tile/brown, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bNk" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/tile/brown{ @@ -37937,16 +37579,12 @@ dir = 1 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bNl" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bNm" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -37957,9 +37595,7 @@ pixel_y = -32 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bNn" = ( /obj/effect/turf_decal/caution/stand_clear{ dir = 1; @@ -37967,9 +37603,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bNo" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -37977,9 +37611,7 @@ /obj/effect/turf_decal/tile/brown, /obj/machinery/vending/donksofttoyvendor, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bNp" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -37987,9 +37619,7 @@ /obj/effect/turf_decal/tile/brown, /obj/machinery/vending/toyliberationstation, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bNq" = ( /obj/structure/table/wood/fancy/green, /obj/effect/turf_decal/tile/brown{ @@ -38008,9 +37638,7 @@ }, /obj/machinery/door/firedoor, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bNr" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -38021,9 +37649,7 @@ }, /obj/machinery/photocopier, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bNs" = ( /obj/effect/turf_decal/bot, /obj/machinery/autolathe, @@ -38031,9 +37657,7 @@ pixel_x = 32 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bNt" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -38643,9 +38267,7 @@ /obj/structure/plasticflaps/opaque, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bOH" = ( /obj/machinery/door/airlock/mining/glass{ name = "Delivery Office"; @@ -38653,15 +38275,11 @@ req_one_access_txt = "48;50" }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bOI" = ( /obj/effect/spawner/structure/window/reinforced/indestructable, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bOJ" = ( /turf/open/floor/carpet/royalblue, /area/edina/crew_quarters/store/clothes) @@ -38670,9 +38288,7 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "bOL" = ( /obj/structure/closet/secure_closet/quartermaster, /obj/item/clothing/suit/hooded/wintercoat/cargo, @@ -43523,9 +43139,7 @@ /obj/item/clothing/neck/scarf/orange, /obj/effect/decal/festive/red_stockings, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "bZG" = ( /obj/structure/closet/wardrobe/cargotech, /obj/item/clothing/suit/hooded/wintercoat/cargo, @@ -43540,9 +43154,7 @@ /obj/structure/closet/secure_closet/quartermaster, /obj/effect/decal/festive/red_stockings, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "bZH" = ( /obj/machinery/vending/wardrobe/cargo_wardrobe, /obj/machinery/light/small{ @@ -43554,9 +43166,7 @@ dir = 8 }, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "bZI" = ( /obj/structure/closet/wardrobe/cargotech, /obj/item/clothing/suit/hooded/wintercoat/cargo, @@ -43569,9 +43179,7 @@ /obj/item/radio, /obj/item/clothing/neck/scarf/orange, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "bZJ" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -44026,9 +43634,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "caD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/indestructible, @@ -44045,9 +43651,7 @@ icon_state = "4-8" }, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "caF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44056,9 +43660,7 @@ icon_state = "4-8" }, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "caG" = ( /obj/effect/landmark/start/cargo_technician, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -44071,9 +43673,7 @@ icon_state = "4-8" }, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "caH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -44087,9 +43687,7 @@ }, /obj/machinery/door/firedoor, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "caI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -44620,9 +44218,7 @@ /obj/machinery/light/small, /obj/structure/closet/secure_closet/quartermaster, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "cbE" = ( /obj/item/clothing/suit/hooded/wintercoat/cargo, /obj/item/clothing/shoes/winterboots, @@ -44641,9 +44237,7 @@ /obj/structure/closet/wardrobe/cargotech, /obj/item/clothing/neck/scarf/orange, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "cbF" = ( /obj/structure/closet/wardrobe/cargotech, /obj/item/clothing/suit/hooded/wintercoat/cargo, @@ -44659,9 +44253,7 @@ /obj/item/clothing/neck/scarf/orange, /obj/structure/closet/secure_closet/quartermaster, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "cbG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ @@ -45542,9 +45134,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "cdZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/start/paramedic, @@ -46877,9 +46467,7 @@ light_color = "#e8eaff" }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "chb" = ( /obj/structure/closet/crate, /turf/open/floor/plating, @@ -47404,9 +46992,7 @@ "cir" = ( /obj/effect/turf_decal/bot, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "cis" = ( /obj/machinery/conveyor{ dir = 8; @@ -47420,9 +47006,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "cit" = ( /obj/machinery/conveyor{ dir = 8; @@ -47433,9 +47017,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "ciu" = ( /obj/machinery/conveyor{ dir = 8; @@ -47448,9 +47030,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "civ" = ( /obj/structure/disposalpipe/segment, /turf/closed/festive/whitebrick{ @@ -47477,9 +47057,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "ciz" = ( /obj/machinery/door/airlock/mining/glass{ name = "Cargo Office"; @@ -47488,9 +47066,7 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "ciA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposaloutlet, @@ -47503,9 +47079,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "ciB" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -47574,9 +47148,7 @@ }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "ciJ" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -47649,9 +47221,7 @@ dir = 5 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "ciT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -47660,9 +47230,7 @@ dir = 8 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "ciU" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -47672,9 +47240,7 @@ dir = 4 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "ciV" = ( /obj/machinery/door/airlock/mining/glass{ name = "Cargo Office"; @@ -47685,9 +47251,7 @@ dir = 4 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "ciW" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -47705,36 +47269,28 @@ dir = 4 }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "ciY" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "ciZ" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "cja" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "cjb" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/stripes/line, @@ -47742,9 +47298,7 @@ dir = 4 }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "cjc" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/stripes/line, @@ -47755,9 +47309,7 @@ dir = 4 }, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "cjd" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -47880,9 +47432,7 @@ dir = 6 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "cjq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -47895,9 +47445,7 @@ dir = 4 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "cjr" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -47907,15 +47455,11 @@ dir = 8 }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "cjs" = ( /obj/effect/spawner/structure/window/reinforced/indestructable, /turf/open/floor/plating, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "cjt" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/structure/disposalpipe/segment{ @@ -52468,9 +52012,7 @@ icon_state = "2-4" }, /turf/open/indestructible, -/area/cargo/office{ - name = "Post Office Lobby" - }) +/area/cargo/office) "cuO" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -53076,9 +52618,7 @@ dir = 8 }, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "cwl" = ( /turf/open/floor/wood, /area/maintenance/bar) @@ -53249,9 +52789,7 @@ dir = 4 }, /turf/open/indestructible, -/area/commons/locker{ - name = "Cargo Locker Room" - }) +/area/commons/locker) "cwP" = ( /obj/effect/turf_decal/weather/snow/corner{ color = "#FFFFFE"; @@ -55067,9 +54605,7 @@ dir = 8 }, /turf/open/floor/festive/alleyway, -/area/service/abandoned_gambling_den/secondary{ - name = "Arcade" - }) +/area/service/abandoned_gambling_den/secondary) "gzG" = ( /obj/structure/table/wood/fancy/red, /obj/item/reagent_containers/food/snacks/taco, @@ -56607,9 +56143,7 @@ "sMS" = ( /obj/effect/decal/festive/fairylights, /turf/open/indestructible, -/area/cargo{ - name = "Reclaiming center and Garage" - }) +/area/cargo "sQo" = ( /turf/open/floor/plasteel/white/side{ dir = 4 @@ -56631,9 +56165,7 @@ dir = 9 }, /turf/open/floor/festive/alleyway, -/area/service/abandoned_gambling_den/secondary{ - name = "Arcade" - }) +/area/service/abandoned_gambling_den/secondary) "sVS" = ( /obj/structure/table/wood, /obj/machinery/light{ From ef37f4b3b8908a08077c01eab232b1d7ab69a903 Mon Sep 17 00:00:00 2001 From: keronshb Date: Sun, 21 Nov 2021 00:42:19 -0500 Subject: [PATCH 07/11] more area fixes --- .../map_files/FestiveBall/FestiveStation.dmm | 212 +++++------------- 1 file changed, 53 insertions(+), 159 deletions(-) diff --git a/_maps/map_files/FestiveBall/FestiveStation.dmm b/_maps/map_files/FestiveBall/FestiveStation.dmm index a5268250fc..55b3003e44 100644 --- a/_maps/map_files/FestiveBall/FestiveStation.dmm +++ b/_maps/map_files/FestiveBall/FestiveStation.dmm @@ -19099,16 +19099,12 @@ /area/edina/street/secondary/command) "aWv" = ( /turf/closed/wall/mineral/iron, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "aWw" = ( /obj/structure/curtain, /obj/effect/spawner/structure/window/reinforced/indestructable, /turf/open/floor/plating, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "aWx" = ( /obj/structure/disposalpipe/trunk, /obj/machinery/disposal/bin, @@ -19185,15 +19181,11 @@ /area/service/chapel/office) "aWH" = ( /turf/closed/wall/mineral/iron, -/area/service/chapel/asteroid{ - name = "Chapel Dining Room" - }) +/area/service/chapel/asteroid) "aWI" = ( /obj/effect/spawner/structure/window/reinforced/indestructable, /turf/open/floor/plating, -/area/service/chapel/asteroid{ - name = "Chapel Dining Room" - }) +/area/service/chapel/asteroid) "aWJ" = ( /obj/structure/fluff/lightpost/light, /turf/open/floor/festive/alleyway, @@ -19503,9 +19495,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "aXG" = ( /obj/structure/reagent_dispensers/watertank/high, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -19514,9 +19504,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "aXH" = ( /obj/structure/cable/yellow{ icon_state = "2-4" @@ -19540,9 +19528,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "aXI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -19556,9 +19542,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "aXJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -19576,9 +19560,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "aXK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -19741,9 +19723,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid{ - name = "Chapel Dining Room" - }) +/area/service/chapel/asteroid) "aYc" = ( /obj/structure/sign/warning/nosmoking{ pixel_x = -32 @@ -20241,9 +20221,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "aZw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -20252,9 +20230,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "aZx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -20316,9 +20292,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid{ - name = "Chapel Dining Room" - }) +/area/service/chapel/asteroid) "aZH" = ( /obj/effect/festive/street/streetlinenorth, /obj/effect/turf_decal/arrows/white{ @@ -20829,9 +20803,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "bbj" = ( /obj/structure/bodycontainer/morgue{ dir = 1 @@ -20843,9 +20815,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "bbk" = ( /obj/effect/turf_decal/caution, /turf/open/floor/plasteel/freezer, @@ -20877,9 +20847,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "bbo" = ( /obj/structure/bodycontainer/crematorium{ dir = 1 @@ -20887,9 +20855,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/medical/morgue{ - name = "Chapel Morgue" - }) +/area/medical/morgue) "bbp" = ( /obj/machinery/door/airlock/public/glass{ name = "Chapel Office"; @@ -20931,18 +20897,14 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid{ - name = "Chapel Dining Room" - }) +/area/service/chapel/asteroid) "bbt" = ( /obj/structure/table/wood/fancy/green, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid{ - name = "Chapel Dining Room" - }) +/area/service/chapel/asteroid) "bbu" = ( /obj/structure/table/wood/fancy/green, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -20953,9 +20915,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid{ - name = "Chapel Dining Room" - }) +/area/service/chapel/asteroid) "bbv" = ( /obj/effect/festive/street/streetlinenorth, /obj/effect/festive/street/streetliftedtile2, @@ -21389,9 +21349,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid{ - name = "Chapel Dining Room" - }) +/area/service/chapel/asteroid) "bcL" = ( /obj/structure/chair/wood/wings{ dir = 1 @@ -21403,9 +21361,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid{ - name = "Chapel Dining Room" - }) +/area/service/chapel/asteroid) "bcM" = ( /obj/structure/chair/wood/wings{ dir = 1 @@ -21414,9 +21370,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid{ - name = "Chapel Dining Room" - }) +/area/service/chapel/asteroid) "bcN" = ( /obj/structure/closet/crate/trashcart, /obj/effect/spawner/lootdrop/maintenance, @@ -21895,9 +21849,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid{ - name = "Chapel Dining Room" - }) +/area/service/chapel/asteroid) "beh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -21905,9 +21857,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid{ - name = "Chapel Dining Room" - }) +/area/service/chapel/asteroid) "bei" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -41810,9 +41760,7 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bWz" = ( /turf/closed/festive/whitebrick, /area/commons/dorms) @@ -42213,9 +42161,7 @@ pixel_y = 32 }, /turf/open/indestructible/hoteltile, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bXy" = ( /obj/structure/sign/poster/official/cleanliness{ pixel_x = 32 @@ -42224,9 +42170,7 @@ dir = 4 }, /turf/open/indestructible/hoteltile, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bXz" = ( /obj/effect/landmark/start/geneticist, /turf/open/floor/plasteel/white, @@ -42493,14 +42437,10 @@ dir = 4 }, /turf/open/indestructible/hoteltile, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bYl" = ( /turf/open/indestructible/hoteltile, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bYm" = ( /obj/structure/fence{ dir = 4 @@ -42726,15 +42666,11 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bYN" = ( /obj/effect/spawner/structure/window/reinforced/indestructable, /turf/open/floor/plating, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bYO" = ( /obj/machinery/light{ dir = 8 @@ -43025,9 +42961,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bZx" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -43036,9 +42970,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bZy" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -43051,9 +42983,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bZz" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -43070,9 +43000,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bZA" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -43083,9 +43011,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bZB" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -43095,9 +43021,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bZC" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -43107,9 +43031,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "bZD" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -43505,9 +43427,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "cat" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -43517,9 +43437,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "cau" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -43531,9 +43449,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "cav" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -43549,9 +43465,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "caw" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -43569,9 +43483,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "cax" = ( /obj/structure/chair/office/light, /obj/structure/disposalpipe/segment{ @@ -44104,9 +44016,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "cbw" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -44118,9 +44028,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "cbx" = ( /obj/machinery/light/small, /obj/effect/turf_decal/tile/brown, @@ -44133,9 +44041,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "cby" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -44151,9 +44057,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "cbz" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -44166,9 +44070,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "cbA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44451,9 +44353,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "ccj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -45626,9 +45526,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "cfa" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -52552,9 +52450,7 @@ /turf/open/indestructible{ icon_state = "sepia" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "cwd" = ( /obj/effect/turf_decal/weather/snow/corner{ color = "#FFFFFF"; @@ -56271,9 +56167,7 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo{ - name = "Cargo Break Room" - }) +/area/cargo) "tHL" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 From 5498d7ed139f75e4282781201e865a77540389f5 Mon Sep 17 00:00:00 2001 From: keronshb Date: Sun, 21 Nov 2021 10:50:22 -0500 Subject: [PATCH 08/11] Reverts unintended area changes to other maps --- _maps/map_files/LambdaStation/lambda.dmm | 50 +++--- _maps/map_files/PubbyStation/PubbyStation.dmm | 150 +++++++++--------- code/game/area/Space_Station_13_areas.dm | 2 +- 3 files changed, 101 insertions(+), 101 deletions(-) diff --git a/_maps/map_files/LambdaStation/lambda.dmm b/_maps/map_files/LambdaStation/lambda.dmm index c4d59b9a59..3e32f923a0 100644 --- a/_maps/map_files/LambdaStation/lambda.dmm +++ b/_maps/map_files/LambdaStation/lambda.dmm @@ -36662,31 +36662,31 @@ /area/service/library) "bxG" = ( /turf/closed/wall, -/area/commons/lounge) +/area/service/library/lounge) "bxH" = ( /obj/structure/table, /obj/item/storage/crayons, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bxI" = ( /obj/machinery/vending/games, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bxJ" = ( /obj/machinery/photocopier, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bxK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bxL" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bxM" = ( /obj/structure/grille, /turf/closed/wall/r_wall, @@ -36902,7 +36902,7 @@ /area/service/library) "byQ" = ( /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "byR" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -36920,14 +36920,14 @@ dir = 4 }, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "byT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{ dir = 9 }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "byU" = ( /obj/structure/chair{ dir = 4 @@ -37071,18 +37071,18 @@ dir = 4 }, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bzP" = ( /obj/structure/table/wood, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bzQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bzR" = ( /obj/structure/cable{ icon_state = "1-2" @@ -37091,7 +37091,7 @@ dir = 4 }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bzT" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -37334,7 +37334,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bAP" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -37342,7 +37342,7 @@ pixel_y = 9 }, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bAQ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -37617,13 +37617,13 @@ dir = 4 }, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bBT" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bBU" = ( /obj/structure/table, /obj/machinery/light/small{ @@ -37935,22 +37935,22 @@ pixel_y = -24 }, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bCL" = ( /obj/machinery/camera/autoname{ dir = 1 }, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bCM" = ( /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bCN" = ( /obj/structure/cable{ icon_state = "1-4" }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bCO" = ( /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; @@ -38403,7 +38403,7 @@ dir = 4 }, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bEb" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -39769,7 +39769,7 @@ icon_state = "0-2" }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bHp" = ( /obj/structure/cable{ icon_state = "4-8" @@ -45616,7 +45616,7 @@ dir = 1 }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bWB" = ( /obj/machinery/requests_console{ department = "AI"; @@ -60035,7 +60035,7 @@ name = "library camera" }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "cNb" = ( /obj/machinery/light/small{ dir = 4; diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 65e8e5e4d6..5c52516bdc 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -23913,7 +23913,7 @@ /area/hallway/secondary/entry) "bfZ" = ( /turf/closed/wall/r_wall, -/area/commons/lounge) +/area/service/library/lounge) "bga" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -23921,7 +23921,7 @@ name = "privacy shutters" }, /turf/open/floor/plating, -/area/commons/lounge) +/area/service/library/lounge) "bgb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -23931,7 +23931,7 @@ icon_state = "1-2" }, /turf/open/floor/plasteel, -/area/commons/lounge) +/area/service/library/lounge) "bgc" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -23940,10 +23940,10 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, -/area/commons/lounge) +/area/service/library/lounge) "bgd" = ( /turf/closed/wall, -/area/commons/lounge) +/area/service/library/lounge) "bge" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/sign/directions/security{ @@ -24272,10 +24272,10 @@ pixel_y = 5 }, /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "bgV" = ( /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "bgW" = ( /obj/structure/cable{ icon_state = "1-2" @@ -24284,13 +24284,13 @@ dir = 4 }, /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "bgX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "bgY" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -24303,7 +24303,7 @@ pixel_y = 25 }, /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "bgZ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -24618,16 +24618,16 @@ pixel_x = -32 }, /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "bhG" = ( /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bhH" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bhI" = ( /obj/structure/chair/comfy/beige{ dir = 8 @@ -24637,7 +24637,7 @@ dir = 8 }, /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "bhJ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -24754,20 +24754,20 @@ dir = 4 }, /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "bic" = ( /obj/effect/landmark/start/assistant, /obj/structure/cable{ icon_state = "1-4" }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bid" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "bie" = ( /obj/structure/chair/comfy/beige{ dir = 8 @@ -24776,7 +24776,7 @@ icon_state = "2-8" }, /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "bif" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -25001,7 +25001,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/commons/lounge) +/area/service/library/lounge) "biK" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -25016,19 +25016,19 @@ dir = 4 }, /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "biL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "biM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "biN" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -25042,7 +25042,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/grimy, -/area/commons/lounge) +/area/service/library/lounge) "biO" = ( /obj/structure/table/glass, /obj/item/healthanalyzer{ @@ -25314,15 +25314,15 @@ "bjI" = ( /obj/structure/bookcase/random/nonfiction, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bjJ" = ( /obj/structure/bookcase/random/fiction, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bjK" = ( /obj/structure/bookcase/random/religion, /turf/open/floor/wood, -/area/commons/lounge) +/area/service/library/lounge) "bjL" = ( /turf/closed/wall, /area/commons/storage/emergency/port) @@ -45848,7 +45848,7 @@ /obj/structure/window/reinforced/fulltile, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, -/area/commons/lounge) +/area/service/library/lounge) "cdW" = ( /obj/structure/reflector/box/anchored, /turf/open/floor/plasteel/dark, @@ -47328,7 +47328,7 @@ "ckp" = ( /obj/structure/closet/crate/bin, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "ckt" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating/asteroid/airless, @@ -47423,7 +47423,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "ckH" = ( /turf/open/floor/plasteel/dark, /area/service/library) @@ -47432,7 +47432,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "ckJ" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, @@ -47487,12 +47487,12 @@ }, /obj/machinery/libraryscanner, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "ckV" = ( /obj/effect/landmark/barthpot, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "ckW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47503,7 +47503,7 @@ /obj/structure/table/wood, /obj/machinery/computer/libraryconsole, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "clb" = ( /obj/structure/window/reinforced{ dir = 1; @@ -47556,7 +47556,7 @@ "clm" = ( /obj/machinery/photocopier, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "cln" = ( /obj/machinery/newscaster{ pixel_x = -32; @@ -47564,7 +47564,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "cls" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/closed/mineral, @@ -50542,7 +50542,7 @@ /area/maintenance/department/security/brig) "cwe" = ( /turf/closed/wall/mineral/iron, -/area/commons/lounge) +/area/service/library/lounge) "cwg" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -50617,7 +50617,7 @@ pixel_y = 26 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "cww" = ( /obj/structure/cable{ icon_state = "4-8" @@ -50711,7 +50711,7 @@ /obj/item/folder/yellow, /obj/item/pen, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "cxb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/effect/turf_decal/tile/purple, @@ -50794,7 +50794,7 @@ dir = 6 }, /turf/closed/wall, -/area/commons/lounge) +/area/service/library/lounge) "cxL" = ( /obj/machinery/door/window/eastright{ base_state = "left"; @@ -50828,7 +50828,7 @@ /obj/structure/window/reinforced/fulltile, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, -/area/commons/lounge) +/area/service/library/lounge) "cxX" = ( /obj/structure/table/wood, /obj/item/folder/red, @@ -50864,7 +50864,7 @@ dir = 5 }, /turf/closed/wall, -/area/commons/lounge) +/area/service/library/lounge) "cyP" = ( /obj/structure/closet/secure_closet/warden, /obj/item/clothing/mask/gas/sechailer, @@ -51577,7 +51577,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "cJo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -52249,7 +52249,7 @@ "dRT" = ( /obj/structure/bookcase/random/reference, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "dSp" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ dir = 1 @@ -52371,7 +52371,7 @@ "eeG" = ( /obj/machinery/bookbinder, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "eeQ" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -52662,7 +52662,7 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "eLt" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/tile/neutral{ @@ -53265,7 +53265,7 @@ "fWv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "fZq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -53383,7 +53383,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "giI" = ( /obj/machinery/light/small{ dir = 1 @@ -53557,7 +53557,7 @@ "gqi" = ( /obj/structure/bookcase/random/religion, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "gtX" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating, @@ -53943,7 +53943,7 @@ /area/maintenance/department/science) "gXv" = ( /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "gXZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/camera{ @@ -53995,7 +53995,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "heC" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 8; @@ -54807,7 +54807,7 @@ dir = 9 }, /turf/closed/wall, -/area/commons/lounge) +/area/service/library/lounge) "iyP" = ( /obj/structure/disposaloutlet, /turf/open/floor/plating, @@ -55080,7 +55080,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "iYQ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -55101,7 +55101,7 @@ dir = 10 }, /turf/closed/wall, -/area/commons/lounge) +/area/service/library/lounge) "jen" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 @@ -55386,7 +55386,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "jzz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external, @@ -55599,7 +55599,7 @@ dir = 1 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "jXA" = ( /obj/structure/table, /obj/item/stack/ore/iron, @@ -56081,7 +56081,7 @@ icon_state = "1-2" }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "kPi" = ( /obj/structure/table, /obj/machinery/microwave, @@ -56169,7 +56169,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "kSb" = ( /obj/structure/chair/office/light{ dir = 8 @@ -57232,7 +57232,7 @@ icon_state = "1-2" }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "mKk" = ( /obj/structure/cable{ icon_state = "1-8" @@ -57319,7 +57319,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "mXq" = ( /obj/item/taperecorder, /obj/item/cartridge/lawyer, @@ -57861,7 +57861,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "nOY" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -58407,7 +58407,7 @@ icon_state = "1-2" }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "oIU" = ( /obj/structure/table/wood, /obj/item/folder/yellow, @@ -59536,7 +59536,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "qBv" = ( /obj/item/clothing/head/ushanka, /turf/open/floor/plating, @@ -59684,7 +59684,7 @@ dir = 8 }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "qOH" = ( /obj/structure/cable{ icon_state = "1-2" @@ -59880,7 +59880,7 @@ "qYW" = ( /obj/structure/bookcase/random/nonfiction, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "rar" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -60004,7 +60004,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "roc" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -60284,13 +60284,13 @@ icon_state = "cobweb2" }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "rSE" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "rSH" = ( /obj/item/trash/can, /turf/open/floor/wood, @@ -60422,7 +60422,7 @@ "sgD" = ( /obj/structure/bookcase/random/adult, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "shw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ @@ -61731,7 +61731,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "uzB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -62173,7 +62173,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "vrQ" = ( /obj/machinery/power/terminal{ dir = 8 @@ -62452,7 +62452,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "vRi" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -62906,7 +62906,7 @@ "wDq" = ( /obj/structure/bookcase/random/fiction, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "wDZ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -63325,7 +63325,7 @@ icon_state = "1-2" }, /turf/open/floor/carpet, -/area/commons/lounge) +/area/service/library/lounge) "xje" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, @@ -63385,7 +63385,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "xlg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/heat_exchanging/junction, @@ -63697,7 +63697,7 @@ pixel_y = 22 }, /turf/open/floor/plasteel/dark, -/area/commons/lounge) +/area/service/library/lounge) "xNy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ diff --git a/code/game/area/Space_Station_13_areas.dm b/code/game/area/Space_Station_13_areas.dm index d8d16cb028..caf8fda213 100644 --- a/code/game/area/Space_Station_13_areas.dm +++ b/code/game/area/Space_Station_13_areas.dm @@ -924,7 +924,7 @@ NOTE: there are two lists of areas in the end of this file: centcom and station area_flags = BLOBS_ALLOWED | UNIQUE_AREA | CULT_PERMITTED sound_environment = SOUND_AREA_LARGE_SOFTFLOOR -/area/commons/lounge +/area/service/library/lounge name = "Library Lounge" icon_state = "library_lounge" sound_environment = SOUND_AREA_SMALL_SOFTFLOOR From a8f6f409f89d997b6bfc64f5a4e8efa34fbbf0a7 Mon Sep 17 00:00:00 2001 From: keronshb Date: Sun, 21 Nov 2021 10:55:53 -0500 Subject: [PATCH 09/11] Another round of reverts for unintended changes --- _maps/map_files/LambdaStation/lambda.dmm | 2 +- _maps/map_files/PubbyStation/PubbyStation.dmm | 50 +++++++++---------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/_maps/map_files/LambdaStation/lambda.dmm b/_maps/map_files/LambdaStation/lambda.dmm index 3e32f923a0..e676dea0e5 100644 --- a/_maps/map_files/LambdaStation/lambda.dmm +++ b/_maps/map_files/LambdaStation/lambda.dmm @@ -39760,7 +39760,7 @@ icon_state = "1-2" }, /obj/machinery/power/apc{ - areastring = "/area/commons/lounge"; + areastring = "/area/service/library/lounge"; dir = 4; name = "Library Lounge APC"; pixel_x = 24 diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 5c52516bdc..c07101e924 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -23913,7 +23913,7 @@ /area/hallway/secondary/entry) "bfZ" = ( /turf/closed/wall/r_wall, -/area/service/library/lounge) +/area/commons/lounge) "bga" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -23921,7 +23921,7 @@ name = "privacy shutters" }, /turf/open/floor/plating, -/area/service/library/lounge) +/area/commons/lounge) "bgb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -23931,7 +23931,7 @@ icon_state = "1-2" }, /turf/open/floor/plasteel, -/area/service/library/lounge) +/area/commons/lounge) "bgc" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -23940,10 +23940,10 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, -/area/service/library/lounge) +/area/commons/lounge) "bgd" = ( /turf/closed/wall, -/area/service/library/lounge) +/area/commons/lounge) "bge" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/sign/directions/security{ @@ -24272,10 +24272,10 @@ pixel_y = 5 }, /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "bgV" = ( /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "bgW" = ( /obj/structure/cable{ icon_state = "1-2" @@ -24284,13 +24284,13 @@ dir = 4 }, /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "bgX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "bgY" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -24303,7 +24303,7 @@ pixel_y = 25 }, /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "bgZ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -24618,16 +24618,16 @@ pixel_x = -32 }, /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "bhG" = ( /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bhH" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bhI" = ( /obj/structure/chair/comfy/beige{ dir = 8 @@ -24637,7 +24637,7 @@ dir = 8 }, /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "bhJ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -24754,20 +24754,20 @@ dir = 4 }, /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "bic" = ( /obj/effect/landmark/start/assistant, /obj/structure/cable{ icon_state = "1-4" }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bid" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/carpet, -/area/service/library/lounge) +/area/commons/lounge) "bie" = ( /obj/structure/chair/comfy/beige{ dir = 8 @@ -24776,7 +24776,7 @@ icon_state = "2-8" }, /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "bif" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -25001,7 +25001,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/service/library/lounge) +/area/commons/lounge) "biK" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -25016,19 +25016,19 @@ dir = 4 }, /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "biL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "biM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "biN" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -25314,15 +25314,15 @@ "bjI" = ( /obj/structure/bookcase/random/nonfiction, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bjJ" = ( /obj/structure/bookcase/random/fiction, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bjK" = ( /obj/structure/bookcase/random/religion, /turf/open/floor/wood, -/area/service/library/lounge) +/area/commons/lounge) "bjL" = ( /turf/closed/wall, /area/commons/storage/emergency/port) From c4a81b43887c586cb3617d2acfa40309e02511f3 Mon Sep 17 00:00:00 2001 From: keronshb Date: Sun, 21 Nov 2021 10:57:38 -0500 Subject: [PATCH 10/11] Missed one --- _maps/map_files/PubbyStation/PubbyStation.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index c07101e924..154d6ec230 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -25042,7 +25042,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/grimy, -/area/service/library/lounge) +/area/commons/lounge) "biO" = ( /obj/structure/table/glass, /obj/item/healthanalyzer{ From 2152e5b749422a1bf2e18b0fd2379e86dfef7bae Mon Sep 17 00:00:00 2001 From: keronshb Date: Fri, 26 Nov 2021 20:40:31 -0500 Subject: [PATCH 11/11] Critical map fix --- .../map_files/FestiveBall/FestiveStation.dmm | 501 ++++++++---------- 1 file changed, 231 insertions(+), 270 deletions(-) diff --git a/_maps/map_files/FestiveBall/FestiveStation.dmm b/_maps/map_files/FestiveBall/FestiveStation.dmm index 55b3003e44..6687416ac4 100644 --- a/_maps/map_files/FestiveBall/FestiveStation.dmm +++ b/_maps/map_files/FestiveBall/FestiveStation.dmm @@ -19179,13 +19179,6 @@ icon_state = "darkfull" }, /area/service/chapel/office) -"aWH" = ( -/turf/closed/wall/mineral/iron, -/area/service/chapel/asteroid) -"aWI" = ( -/obj/effect/spawner/structure/window/reinforced/indestructable, -/turf/open/floor/plating, -/area/service/chapel/asteroid) "aWJ" = ( /obj/structure/fluff/lightpost/light, /turf/open/floor/festive/alleyway, @@ -19707,7 +19700,7 @@ }, /obj/machinery/power/apc{ areastring = "/area/service/chapel/office"; - dir = 8; + dir = 4; name = "Chapel Office APC"; pixel_x = 26 }, @@ -19719,11 +19712,6 @@ /obj/machinery/atmospherics/pipe/layer_manifold, /turf/open/floor/plating, /area/service/chapel/office) -"aYb" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/service/chapel/asteroid) "aYc" = ( /obj/structure/sign/warning/nosmoking{ pixel_x = -32 @@ -20292,7 +20280,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid) +/area/service/chapel/main/monastery) "aZH" = ( /obj/effect/festive/street/streetlinenorth, /obj/effect/turf_decal/arrows/white{ @@ -20897,14 +20885,14 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid) +/area/service/chapel/main/monastery) "bbt" = ( /obj/structure/table/wood/fancy/green, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid) +/area/service/chapel/main/monastery) "bbu" = ( /obj/structure/table/wood/fancy/green, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -20915,7 +20903,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid) +/area/service/chapel/main/monastery) "bbv" = ( /obj/effect/festive/street/streetlinenorth, /obj/effect/festive/street/streetliftedtile2, @@ -21294,7 +21282,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bcG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -21307,7 +21295,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bcH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 @@ -21315,7 +21303,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bcI" = ( /obj/machinery/light/small{ dir = 1; @@ -21327,7 +21315,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bcJ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ dir = 4 @@ -21335,13 +21323,13 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bcK" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, /obj/machinery/power/apc{ - areastring = "/area/service/chapel/asteroid"; + areastring = "/area/service/chapel/main/monastery"; dir = 8; name = "Chapel Dining Room APC"; pixel_x = -26 @@ -21349,7 +21337,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid) +/area/service/chapel/main/monastery) "bcL" = ( /obj/structure/chair/wood/wings{ dir = 1 @@ -21361,7 +21349,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid) +/area/service/chapel/main/monastery) "bcM" = ( /obj/structure/chair/wood/wings{ dir = 1 @@ -21370,7 +21358,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid) +/area/service/chapel/main/monastery) "bcN" = ( /obj/structure/closet/crate/trashcart, /obj/effect/spawner/lootdrop/maintenance, @@ -21735,22 +21723,12 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/festive/cobblestone, /area/edina/street/intersection/princessperimeter/north) -"bdV" = ( -/obj/effect/spawner/structure/window/reinforced/indestructable, -/turf/open/floor/plating, -/area/service/chapel/dock) -"bdW" = ( -/obj/structure/table/wood/fancy/green, -/turf/open/indestructible{ - icon_state = "darkfull" - }, -/area/service/chapel/dock) "bdX" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, /obj/machinery/power/apc{ - areastring = "/area/service/chapel/dock"; + areastring = "/area/service/chapel/main/monastery"; dir = 8; name = "Chapel Hall APC"; pixel_y = 24 @@ -21759,7 +21737,7 @@ dir = 1; icon_state = "chapel" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bdY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -21772,7 +21750,7 @@ dir = 4; icon_state = "chapel" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bdZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -21784,7 +21762,7 @@ dir = 1; icon_state = "chapel" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bea" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -21793,7 +21771,7 @@ dir = 4; icon_state = "chapel" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "beb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -21802,7 +21780,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bec" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -21818,25 +21796,25 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bed" = ( /turf/open/indestructible{ dir = 1; icon_state = "chapel" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bee" = ( /turf/open/indestructible{ dir = 4; icon_state = "chapel" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bef" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "beg" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -21849,7 +21827,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid) +/area/service/chapel/main/monastery) "beh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -21857,7 +21835,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/asteroid) +/area/service/chapel/main/monastery) "bei" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -22277,18 +22255,18 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/main) +/area/service/chapel/main/monastery) "bfq" = ( /turf/open/indestructible{ dir = 8; icon_state = "chapel" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bfr" = ( /turf/open/indestructible{ icon_state = "chapel" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bfs" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -22298,7 +22276,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bft" = ( /obj/structure/chair/wood/wings{ dir = 8 @@ -22307,7 +22285,7 @@ dir = 8; icon_state = "chapel" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bfu" = ( /obj/structure/cable/yellow{ icon_state = "2-4" @@ -22341,7 +22319,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bfy" = ( /turf/closed/wall/mineral/iron, /area/service/chapel/main) @@ -22948,11 +22926,6 @@ }, /turf/open/floor/festive/alleyway, /area/science/research) -"bgL" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/service/chapel/dock) "bgM" = ( /obj/structure/chair/wood/wings{ dir = 8 @@ -22961,7 +22934,7 @@ dir = 1; icon_state = "chapel" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bgN" = ( /obj/structure/table/wood/fancy/red, /turf/open/indestructible/hotelwood, @@ -23035,7 +23008,7 @@ /area/service/chapel/main) "bgY" = ( /turf/open/floor/festive/cobblestone, -/area/cargo +/area/cargo) "bgZ" = ( /obj/machinery/light/small{ dir = 1; @@ -23293,7 +23266,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bhR" = ( /obj/structure/table/wood/fancy/red, /obj/item/flashlight/lantern{ @@ -23302,7 +23275,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bhS" = ( /obj/structure/table/wood/fancy/red, /obj/item/flashlight/lantern{ @@ -23592,7 +23565,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "biQ" = ( /obj/structure/table/wood/fancy/red, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -23601,7 +23574,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "biR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -23609,7 +23582,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "biS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -23639,7 +23612,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "biW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -23652,7 +23625,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "biX" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ dir = 8 @@ -23663,7 +23636,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "biY" = ( /obj/structure/mineral_door/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -23851,13 +23824,13 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bjB" = ( /obj/effect/landmark/start/chaplain, /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bjC" = ( /obj/structure/table/wood/fancy/red, /obj/item/storage/book/bible{ @@ -23866,7 +23839,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bjD" = ( /obj/structure/disposalpipe/junction/yjunction{ dir = 4 @@ -23884,7 +23857,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bjE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -23896,7 +23869,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bjF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -23907,7 +23880,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bjG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -23919,7 +23892,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bjH" = ( /obj/structure/mineral_door/wood, /obj/structure/disposalpipe/segment{ @@ -24202,7 +24175,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bkr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -24210,7 +24183,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bks" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24219,7 +24192,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bkt" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -24229,7 +24202,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bku" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -24250,7 +24223,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bkx" = ( /obj/structure/mineral_door/wood, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24813,7 +24786,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "blA" = ( /obj/structure/table/wood/fancy/red, /obj/item/flashlight/lantern{ @@ -25362,7 +25335,7 @@ "bmL" = ( /obj/machinery/light/small, /obj/machinery/power/apc{ - areastring = "/area/service/chapel/main"; + areastring = "/area/service/chapel/main/monastery"; dir = 8; name = "Chapel APC"; pixel_y = -26 @@ -26306,7 +26279,7 @@ /turf/open/indestructible{ icon_state = "chapel" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bpg" = ( /obj/machinery/door/airlock/wood, /obj/machinery/door/firedoor, @@ -26315,9 +26288,6 @@ }, /turf/open/floor/plasteel, /area/commons/fitness/recreation) -"bph" = ( -/turf/closed/wall/mineral/iron, -/area/service/chapel/asteroid/monastery) "bpi" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -26326,7 +26296,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bpj" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -26339,7 +26309,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bpk" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32 @@ -26348,7 +26318,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bpl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -26857,7 +26827,7 @@ /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bqC" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -26866,7 +26836,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bqD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 9 @@ -26874,13 +26844,13 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/dock) +/area/service/chapel/main/monastery) "bqE" = ( /obj/structure/closet/secure_closet/freezer/fridge, /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bqF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -26892,7 +26862,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bqG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -26901,11 +26871,11 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bqH" = ( /obj/effect/spawner/structure/window/reinforced/indestructable, /turf/open/floor/plating, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bqI" = ( /obj/effect/festive/street/sidewalknsm, /obj/effect/festive/street/streetliftedtile2, @@ -27768,7 +27738,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bsr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -27777,7 +27747,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bss" = ( /obj/structure/sink/kitchen{ dir = 8; @@ -27786,7 +27756,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bst" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -28620,7 +28590,7 @@ icon_state = "0-4" }, /obj/machinery/power/apc{ - areastring = "/area/service/chapel/asteroid/monastery"; + areastring = "/area/service/chapel/main/monastery"; dir = 8; name = "Chapel Kitchen APC"; pixel_x = -26 @@ -28628,7 +28598,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "buf" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -28637,12 +28607,12 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bug" = ( /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "buh" = ( /obj/machinery/door/airlock/research/glass{ name = "Circuitry Lab"; @@ -29173,7 +29143,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bvu" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -29182,7 +29152,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bvv" = ( /obj/structure/table/wood, /obj/machinery/microwave{ @@ -29191,7 +29161,7 @@ /turf/open/indestructible{ icon_state = "darkfull" }, -/area/service/chapel/asteroid/monastery) +/area/service/chapel/main/monastery) "bvw" = ( /obj/structure/table, /obj/item/pen/fountain, @@ -30739,11 +30709,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/festive/cobblestone, /area/edina/street/intersection/princessprogress) -"bzz" = ( -/turf/closed/festive/whitebrick{ - color = "#967832" - }, -/area/cargo "bzA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -30996,7 +30961,7 @@ /area/edina/street/intersection/princessprogress) "bAc" = ( /turf/open/indestructible, -/area/cargo +/area/cargo) "bAd" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 8 @@ -31011,7 +30976,7 @@ dir = 1 }, /turf/open/indestructible, -/area/cargo +/area/cargo) "bAf" = ( /obj/structure/closet/crate/freezer, /obj/structure/sign/poster/official/random{ @@ -31438,17 +31403,17 @@ }, /obj/machinery/door/firedoor, /turf/open/floor/festive/cobblestone, -/area/cargo +/area/cargo) "bAY" = ( /obj/effect/turf_decal/loading_area{ dir = 8 }, /turf/open/indestructible, -/area/cargo +/area/cargo) "bAZ" = ( /obj/effect/turf_decal/delivery, /turf/open/indestructible, -/area/cargo +/area/cargo) "bBa" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -31890,7 +31855,7 @@ dir = 8 }, /turf/open/indestructible, -/area/cargo +/area/cargo) "bBM" = ( /obj/machinery/button/door{ id = "qm_warehouse"; @@ -32679,13 +32644,13 @@ pixel_y = 16 }, /turf/open/floor/festive/cobblestone, -/area/cargo +/area/cargo) "bCO" = ( /obj/machinery/light{ dir = 4 }, /turf/open/indestructible, -/area/cargo +/area/cargo) "bCP" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; @@ -33342,7 +33307,7 @@ dir = 8 }, /obj/machinery/power/apc{ - areastring = "/area/medical/medbay/central"; + areastring = "/area/medical/exam_room"; dir = 8; name = "Medbay APC"; pixel_x = -26 @@ -33479,7 +33444,7 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo +/area/cargo) "bEp" = ( /obj/machinery/door/airlock/mining/glass{ name = "Loading Garage"; @@ -33487,7 +33452,7 @@ }, /obj/machinery/door/firedoor, /turf/open/indestructible, -/area/cargo +/area/cargo) "bEq" = ( /obj/structure/fence, /turf/open/floor/grass/snow/edina{ @@ -33733,7 +33698,7 @@ id = "cargocars" }, /turf/open/indestructible, -/area/cargo +/area/cargo) "bEU" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/festive/alleyway, @@ -34173,14 +34138,14 @@ }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, -/area/cargo +/area/cargo) "bGm" = ( /obj/machinery/conveyor{ id = "garbage" }, /obj/structure/plasticflaps, /turf/open/floor/plating, -/area/cargo +/area/cargo) "bGn" = ( /obj/structure/chair/sofa/right{ dir = 1 @@ -34952,7 +34917,7 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo +/area/cargo) "bHS" = ( /obj/structure/chair/stool, /obj/machinery/requests_console{ @@ -34964,7 +34929,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/cargo +/area/cargo) "bHT" = ( /obj/structure/window/reinforced{ dir = 8 @@ -34980,7 +34945,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/cargo +/area/cargo) "bHU" = ( /obj/structure/chair/sofa/corner{ dir = 8 @@ -34998,7 +34963,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel, -/area/cargo +/area/cargo) "bHW" = ( /obj/structure/table, /obj/item/stack/wrapping_paper, @@ -35043,7 +35008,7 @@ icon_state = "4-8" }, /turf/open/floor/plasteel/white/corner, -/area/cargo +/area/cargo) "bHX" = ( /obj/item/storage/box, /obj/structure/table, @@ -35066,11 +35031,7 @@ dir = 8 }, /turf/open/floor/plasteel/white/corner, -/area/cargo -"bHY" = ( -/obj/effect/spawner/structure/window/reinforced/indestructable, -/turf/open/floor/plating, -/area/cargo +/area/cargo) "bHZ" = ( /obj/effect/turf_decal/weather/snow/corner, /turf/open/floor/festive/alleyway, @@ -35708,7 +35669,7 @@ "bJw" = ( /obj/effect/turf_decal/stripes/line, /turf/open/indestructible, -/area/cargo +/area/cargo) "bJx" = ( /obj/structure/sign/departments/botany{ pixel_x = 32; @@ -35727,7 +35688,7 @@ name = "Reclaiming center" }, /turf/open/indestructible, -/area/cargo +/area/cargo) "bJz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -36386,7 +36347,7 @@ }, /obj/structure/disposalpipe/trunk, /turf/open/floor/plating, -/area/cargo +/area/cargo) "bKQ" = ( /obj/machinery/conveyor{ dir = 4; @@ -36398,7 +36359,7 @@ pixel_y = -22 }, /turf/open/floor/plating, -/area/cargo +/area/cargo) "bKR" = ( /obj/machinery/conveyor{ dir = 4; @@ -36409,7 +36370,7 @@ light_color = "#e8eaff" }, /turf/open/floor/plating, -/area/cargo +/area/cargo) "bKS" = ( /obj/machinery/conveyor{ dir = 4; @@ -36417,7 +36378,7 @@ }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/cargo +/area/cargo) "bKT" = ( /obj/machinery/conveyor{ dir = 4; @@ -36428,7 +36389,7 @@ dir = 1 }, /turf/open/floor/plating, -/area/cargo +/area/cargo) "bKU" = ( /obj/machinery/disposal/deliveryChute{ dir = 8 @@ -36440,7 +36401,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/cargo +/area/cargo) "bKV" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -37019,22 +36980,22 @@ /turf/closed/festive/whitebrick{ color = "#967832" }, -/area/cargo +/area/cargo) "bMf" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSRightEnd, /turf/open/indestructible, -/area/cargo +/area/cargo) "bMg" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSMiddle, /turf/open/indestructible, -/area/cargo +/area/cargo) "bMh" = ( /obj/structure/grille, /obj/structure/festive/whitebrick/windowNSLeftEnd, /turf/open/indestructible, -/area/cargo +/area/cargo) "bMi" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/structure/disposalpipe/segment{ @@ -43959,42 +43920,42 @@ }, /obj/item/reagent_containers/food/condiment/flour{ desc = "A large sack of flour for restaurants, not the home-baker!"; - list_reagents = list("flour" = 90); + list_reagents = list(/datum/reagent/consumable/flour = 90); name = "Large Flour Sack" }, /obj/item/reagent_containers/food/condiment/flour{ desc = "A large sack of flour for restaurants, not the home-baker!"; - list_reagents = list("flour" = 90); + list_reagents = list(/datum/reagent/consumable/flour = 90); name = "Large Flour Sack" }, /obj/item/reagent_containers/food/condiment/flour{ desc = "A large sack of flour for restaurants, not the home-baker!"; - list_reagents = list("flour" = 90); + list_reagents = list(/datum/reagent/consumable/flour = 90); name = "Large Flour Sack" }, /obj/item/reagent_containers/food/condiment/flour{ desc = "A large sack of flour for restaurants, not the home-baker!"; - list_reagents = list("flour" = 90); + list_reagents = list(/datum/reagent/consumable/flour = 90); name = "Large Flour Sack" }, /obj/item/reagent_containers/food/condiment/rice{ desc = "A huge sack of rice. Probably for restaurants that actually go through such a huge volume of it easily, not for the home cook."; - list_reagents = list("rice" = 90); + list_reagents = list(/datum/reagent/consumable/rice = 90); name = "Large Rice Sack" }, /obj/item/reagent_containers/food/condiment/rice{ desc = "A huge sack of rice. Probably for restaurants that actually go through such a huge volume of it easily, not for the home cook."; - list_reagents = list("rice" = 90); + list_reagents = list(/datum/reagent/consumable/rice = 90); name = "Large Rice Sack" }, /obj/item/reagent_containers/food/condiment/rice{ desc = "A huge sack of rice. Probably for restaurants that actually go through such a huge volume of it easily, not for the home cook."; - list_reagents = list("rice" = 90); + list_reagents = list(/datum/reagent/consumable/rice = 90); name = "Large Rice Sack" }, /obj/item/reagent_containers/food/condiment/rice{ desc = "A huge sack of rice. Probably for restaurants that actually go through such a huge volume of it easily, not for the home cook."; - list_reagents = list("rice" = 90); + list_reagents = list(/datum/reagent/consumable/rice = 90); name = "Large Rice Sack" }, /turf/open/floor/plasteel/freezer, @@ -45034,7 +44995,7 @@ dir = 4 }, /turf/open/floor/plating, -/area/cargo +/area/cargo) "cdZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/start/paramedic, @@ -46365,7 +46326,7 @@ light_color = "#e8eaff" }, /turf/open/indestructible, -/area/cargo +/area/cargo) "chb" = ( /obj/structure/closet/crate, /turf/open/floor/plating, @@ -46890,7 +46851,7 @@ "cir" = ( /obj/effect/turf_decal/bot, /turf/open/indestructible, -/area/cargo +/area/cargo) "cis" = ( /obj/machinery/conveyor{ dir = 8; @@ -46904,7 +46865,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/cargo +/area/cargo) "cit" = ( /obj/machinery/conveyor{ dir = 8; @@ -46915,7 +46876,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/cargo +/area/cargo) "ciu" = ( /obj/machinery/conveyor{ dir = 8; @@ -46928,7 +46889,7 @@ }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/cargo +/area/cargo) "civ" = ( /obj/structure/disposalpipe/segment, /turf/closed/festive/whitebrick{ @@ -46977,7 +46938,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel, -/area/cargo +/area/cargo) "ciB" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -47046,7 +47007,7 @@ }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/cargo +/area/cargo) "ciJ" = ( /obj/effect/turf_decal/weather/snow/corner, /obj/effect/turf_decal/weather/snow/corner{ @@ -47167,28 +47128,28 @@ dir = 4 }, /turf/open/indestructible, -/area/cargo +/area/cargo) "ciY" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/indestructible, -/area/cargo +/area/cargo) "ciZ" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/indestructible, -/area/cargo +/area/cargo) "cja" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/indestructible, -/area/cargo +/area/cargo) "cjb" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/stripes/line, @@ -47196,7 +47157,7 @@ dir = 4 }, /turf/open/indestructible, -/area/cargo +/area/cargo) "cjc" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/stripes/line, @@ -47207,7 +47168,7 @@ dir = 4 }, /turf/open/indestructible, -/area/cargo +/area/cargo) "cjd" = ( /obj/effect/turf_decal/weather/snow/corner{ dir = 4 @@ -56039,7 +56000,7 @@ "sMS" = ( /obj/effect/decal/festive/fairylights, /turf/open/indestructible, -/area/cargo +/area/cargo) "sQo" = ( /turf/open/floor/plasteel/white/side{ dir = 4 @@ -63396,15 +63357,15 @@ aal aal aal aal -bdV -bdV -bdV -bdV -bdV -bdV -bdV -bdV -bdV +bqH +bqH +bqH +bqH +bqH +bqH +bqH +bqH +bqH aal aal aal @@ -63652,17 +63613,17 @@ aWv aWw aWv aWv -bdV -bdV -bgL -bgL -bgL -bgL -bgL -bgL -bgL -bdV -bdV +bqH +bqH +btS +btS +btS +btS +btS +btS +btS +bqH +bqH bqA bqA btR @@ -63909,17 +63870,17 @@ aXF aZv bbi aWv -bdW bfp -bgL -bgL -bgL +bfp +btS +btS +btS bjA -bgL -bgL -bgL -bdW -bdW +btS +btS +btS +bfp +bfp bqA bsk btS @@ -64168,13 +64129,13 @@ bbj aWv bdX bfq -bgL -bgL -bgL -bgL -bgL -bgL -bgL +btS +btS +btS +btS +btS +btS +btS bed bfq bqA @@ -64425,13 +64386,13 @@ bbn aWv bdY bfr -bgL +btS bhQ biP bjB biP blz -bgL +btS bee bpf bqA @@ -64682,13 +64643,13 @@ bbo aWv bdZ bfq -bgL +btS bhR biQ bjC bkq bhR -bgL +btS bed bft bqA @@ -64939,13 +64900,13 @@ aWv aWv bea bfr -bgL -bgL +btS +btS biR -bgL +btS bkr -bgL -bgL +btS +btS bee bfr bqA @@ -68018,10 +67979,10 @@ aal aVV aVV aVV -aWH -aWH -aWH -aWH +bqA +bqA +bqA +bqA bfy bfy bfy @@ -68031,8 +67992,8 @@ bkx bfy bfy bfy -bph -bph +bqA +bqA bqA bqA bqA @@ -68273,12 +68234,12 @@ aal aal aal aal -aWH -aYb -aYb +bqA +btS +btS bbs bcK -aYb +btS bfy bgN bhS @@ -68293,7 +68254,7 @@ bqE bsq bue bvt -bph +bqA aal aal brL @@ -68530,8 +68491,8 @@ aal acZ aal aal -aWI -aYb +bqH +btS aZG bbt bcL @@ -68787,8 +68748,8 @@ aal aal aal aal -aWH -aYb +bqA +btS aZG bbu bcM @@ -68807,7 +68768,7 @@ bqG bss bug bvv -bph +bqA aal aal alN @@ -69044,12 +69005,12 @@ aal aal aal aal -aWH -aWH -aWI -aWH -aWI -aWH +bqA +bqA +bqH +bqA +bqH +bqA bfy bgZ bhT @@ -69059,12 +69020,12 @@ bkA bhT bmL bfy -bph +bqA bqH -bph +bqA bqH -bph -bph +bqA +bqA aal aal aal @@ -102743,11 +102704,11 @@ bQG crb ckO csd -bzz +bWy bHR ciX -bzz -bzz +bWy +bWy bKV bOM cjE @@ -103261,7 +103222,7 @@ bGm bHT bJw bKQ -bzz +bWy bKV bOM cjG @@ -103505,20 +103466,20 @@ bUx bNi bNi cjt -bzz -bzz +bWy +bWy bAX bAX bAX bAX bEo -bzz -bzz +bWy +bWy ciA ciI ciZ bKR -bzz +bWy bKV bOM cjH @@ -103762,7 +103723,7 @@ bxc bTM bTM bKV -bzz +bWy sMS bgY bgY @@ -103771,7 +103732,7 @@ bgY bAc cha cir -bzz +bWy bHV cja bKS @@ -104019,7 +103980,7 @@ cdJ cbs bTM bKV -bzz +bWy sMS bgY bgY @@ -104028,7 +103989,7 @@ bgY bAc bAc bAY -bzz +bWy bHW cjb bKT @@ -104276,7 +104237,7 @@ cdK cbt bTM bKV -bzz +bWy bAe bAY bBL @@ -104285,7 +104246,7 @@ bBL bAc bAc cis -bzz +bWy bHX cjc bKU @@ -104533,7 +104494,7 @@ bUp bUp bTM bKV -bzz +bWy sMS bAZ bAZ @@ -104542,11 +104503,11 @@ bAZ bAc bET cit -bzz -bHY +bWy +bYN bJy cdY -bzz +bWy ciB bDF cjI @@ -104790,7 +104751,7 @@ bTM bTM bTM bKV -bzz +bWy sMS bAc bAc @@ -104799,7 +104760,7 @@ bAc bAc bAc cit -bzz +bWy byD bZE cay @@ -105047,16 +105008,16 @@ bDB bDB bDB bMi -bzz -bzz -bzz -bzz -bzz -bzz +bWy +bWy +bWy +bWy +bWy +bWy bEp bEp ciu -bzz +bWy bDN bEP bUb