diff --git a/citadel.dme b/citadel.dme index 303ee5f6c75..c115d9139ca 100644 --- a/citadel.dme +++ b/citadel.dme @@ -1258,6 +1258,7 @@ #include "code\game\machinery\embedded_controller\embedded_controller_base.dm" #include "code\game\machinery\embedded_controller\embedded_program_base.dm" #include "code\game\machinery\embedded_controller\mapping_helpers.dm" +#include "code\game\machinery\embedded_controller\mapping_helpers_conveyorids.dm" #include "code\game\machinery\embedded_controller\simple_docking_controller.dm" #include "code\game\machinery\lathes\autolathe.dm" #include "code\game\machinery\lathes\lathe.dm" diff --git a/code/game/area/Ship_Station_Areas.dm b/code/game/area/Ship_Station_Areas.dm index 1f190afaa7b..0e0a373702f 100644 --- a/code/game/area/Ship_Station_Areas.dm +++ b/code/game/area/Ship_Station_Areas.dm @@ -1,83 +1,237 @@ +/** + *! Ship/Space Station Areas + *? Generic Maint Areas for use in ship maps and potentially space maps. Uses proper nautical terms for funzies + */ +/area/main_map + +/area/main_map/species_maintanence + icon_state = "yellow" + sound_env = ROOM +/area/main_map/species_maintanence/protean + name = "Nanite Workshop" + +/area/main_map/species_maintanence/adheraet + name = "\improper Adherent Maintenance" + + +/area/main_map/hanger_cafe + name = "Fuel Cafe" + +/** + * Hallways + */ +/area/main_map/hallway + sound_env = HALLWAY + ambience = AMBIENCE_GENERIC + +/area/main_map/hallway/deck0 + name = "Flight Deck Main Hallway" + +/area/main_map/hallway/deck1 + name = "Deck 1 Main Hallway" + +/area/main_map/hallway/deck1/fore + name = "Deck 1 Fore Hallway" +/area/main_map/hallway/deck2 + name = "Deck 2 Main Hallway" + +/area/main_map/hallway/deck2/stairs + name = "Deck 2 Stairway" + sound_env = ROOM + +/area/main_map/hallway/deck2/port_fore + name = "Deck 2 Port Fore Hallway" + +/area/main_map/hallway/deck2/starboard_fore + name = "Deck 2 Starboard Fore Hallway" +/area/main_map/hallway/deck3 + name = "Deck 3 Main Hallway" + +/area/main_map/hallway/deck4 + name = "Deck 4 Main Hallway" + +/area/main_map/hallway/deck4/fore + name = "Deck 4 Fore Hallway" +/** + * Hangar + */ +/area/main_map/Hangar_bay + name = "\improper Hangar Bay" + sound_env = HANGAR + +/area/main_map/Hangar_bay/deck0 + +/area/main_map/Hangar_bay/deck0/a + +/area/main_map/Hangar_bay/deck0/b + +/area/main_map/Hangar_bay/deck0/c + +/area/main_map/Hangar_bay/deck0/d + +/area/main_map/Hangar_bay/deck1 + name = "\improper Hangar Bay Deck 1" + +/area/main_map/Hangar_bay/deck1/a + name = "\improper Hangar Bay Deck 1A" + +/area/main_map/Hangar_bay/deck1/b + name = "\improper Hangar Bay Deck 1B" + +/area/main_map/Hangar_bay/deck1/c + name = "\improper Hangar Bay Deck 1C" + +/area/main_map/Hangar_bay/deck1/d + name = "\improper Hangar Bay Deck 1D" + +/area/main_map/Hangar_bay/deck2 + name = "\improper Hangar Bay Deck 2" + +/area/main_map/Hangar_bay/deck2/a + name = "\improper Hangar Bay Deck 2A" + +/area/main_map/Hangar_bay/deck2/b + name = "\improper Hangar Bay Deck 2B" + +/area/main_map/Hangar_bay/deck2/c + name = "\improper Hangar Bay Deck 1C" + +/area/main_map/Hangar_bay/deck2/d + name = "\improper Hangar Bay Deck 2D" + +/area/main_map/Hangar_bay/deck3 + name = "\improper Hangar Bay Deck 3" + +/area/main_map/Hangar_bay/deck3/a + name = "\improper Hangar Bay Deck 3A" + +/area/main_map/Hangar_bay/deck3/b + name = "\improper Hangar Bay Deck 3B" + +/area/main_map/Hangar_bay/deck3/c + name = "\improper Hangar Bay Deck 3C" + +/area/main_map/Hangar_bay/deck3/d + name = "\improper Hangar Bay Deck 3D" + +/area/main_map/Hangar_bay/deck4 + name = "\improper Hangar Bay Deck 4" + +/area/main_map/Hangar_bay/deck4/a + name = "\improper Hangar Bay Deck 4A" + +/area/main_map/Hangar_bay/deck4/b + name = "\improper Hangar Bay Deck 4B" + +/area/main_map/Hangar_bay/deck4/c + name = "\improper Hangar Bay Deck 4C" + +/area/main_map/Hangar_bay/deck4/d + name = "\improper Hangar Bay Deck 4D" + /** *! Ship/Space Station Areas *? Generic Maint Areas for use in ship maps and potentially space maps. Uses proper nautical terms for funzies */ +/area/main_map/maintenance + area_flags = AREA_RAD_SHIELDED + sound_env = TUNNEL_ENCLOSED + turf_initializer = new /datum/turf_initializer/maintenance() + ambience = AMBIENCE_MAINTENANCE + + +/area/main_map/maintenance/engineering + name = "Engineering Maintenance" + icon_state = "maint_engineering" + +/area/main_map/maintenance/engineering/deck2 + name = "Engineering Maintenance Deck 2" +/area/main_map/maintenance/engineering/deck2/atmospheric_entrance + name = "Engineering Maintenance Deck Atmospherics" + +/area/main_map/maintenance/engineering/deck2/power_line + +/area/main_map/maintenance/engineering/deck3 + +/area/main_map/maintenance/engineering/deck4 + +/area/main_map/maintenance/engineering/deck4/secondary /** *! Deck One Maint Areas */ -/area/maintenance/deck_one +/area/main_map/maintenance/deck_one name = "\improper Deck 1 Maintenance" icon_state = "maintcentral" -/area/maintenance/deck_one/port +/area/main_map/maintenance/deck_one/port name = "\improper Deck 1 Port Maintenance" icon_state = "pmaint" -/area/maintenance/deck_one/starboard +/area/main_map/maintenance/deck_one/starboard name = "\improper Deck 1 Starboard Maintenance" icon_state = "smaint" -/area/maintenance/deck_one/forward +/area/main_map/maintenance/deck_one/forward name = "\improper Deck 1 Forward Maintenance" icon_state = "fmaint" -/area/maintenance/deck_one/forward/port +/area/main_map/maintenance/deck_one/forward/port name = "\improper Deck 1 Forward Port Maintenance" icon_state = "fpmaint" -/area/maintenance/deck_one/forward/starboard +/area/main_map/maintenance/deck_one/forward/starboard name = "\improper Deck 1 Forward Starboard Maintenance" icon_state = "fsmaint" -/area/maintenance/deck_one/aft +/area/main_map/maintenance/deck_one/aft name = "\improper Deck 1 Aft Maintenance" icon_state = "amaint" -/area/maintenance/deck_one/aft/port +/area/main_map/maintenance/deck_one/aft/port name = "\improper Deck 1 Aft Port Maintenance" icon_state = "apmaint" -/area/maintenance/deck_one/aft/starboard +/area/main_map/maintenance/deck_one/aft/starboard name = "\improper Deck 1 Aft Starboard Maintenance" icon_state = "asmaint" /** *! Deck Two Maint Areas */ -/area/maintenance/deck_two +/area/main_map/maintenance/deck_two name = "\improper Deck 2 Maintenance" icon_state = "maintcentral" -/area/maintenance/deck_two/port +/area/main_map/maintenance/deck_two/port name = "\improper Deck 2 Port Maintenance" icon_state = "pmaint" -/area/maintenance/deck_two/starboard +/area/main_map/maintenance/deck_two/starboard name = "\improper Deck 2 Starboard Maintenance" icon_state = "smaint" -/area/maintenance/deck_two/forward +/area/main_map/maintenance/deck_two/forward name = "\improper Deck 2 Forward Maintenance" icon_state = "fmaint" -/area/maintenance/deck_two/forward/port +/area/main_map/maintenance/deck_two/forward/port name = "\improper Deck 2 Forward Port Maintenance" icon_state = "fpmaint" -/area/maintenance/deck_two/forward/starboard +/area/main_map/maintenance/deck_two/forward/starboard name = "\improper Deck 2 Forward Starboard Maintenance" icon_state = "fsmaint" -/area/maintenance/deck_two/aft +/area/main_map/maintenance/deck_two/aft name = "\improper Deck 2 Aft Maintenance" icon_state = "amaint" -/area/maintenance/deck_two/aft/port +/area/main_map/maintenance/deck_two/aft/port name = "\improper Deck 2 Aft Port Maintenance" icon_state = "apmaint" -/area/maintenance/deck_two/aft/starboard +/area/main_map/maintenance/deck_two/aft/starboard name = "\improper Deck 2 Aft Starboard Maintenance" icon_state = "asmaint" @@ -85,38 +239,38 @@ /** *! Deck Three Maint Areas */ -/area/maintenance/deck_three +/area/main_map/maintenance/deck_three name = "\improper Deck 3 Maintenance" icon_state = "maintcentral" -/area/maintenance/deck_three/port +/area/main_map/maintenance/deck_three/port name = "\improper Deck 3 Port Maintenance" icon_state = "pmaint" -/area/maintenance/deck_three/starboard +/area/main_map/maintenance/deck_three/starboard name = "\improper Deck 3 Starboard Maintenance" icon_state = "smaint" -/area/maintenance/deck_three/forward +/area/main_map/maintenance/deck_three/forward name = "\improper Deck 3 Forward Maintenance" icon_state = "fmaint" -/area/maintenance/deck_three/forward/port +/area/main_map/maintenance/deck_three/forward/port name = "\improper Deck 3 Forward Port Maintenance" icon_state = "fpmaint" -/area/maintenance/deck_three/forward/starboard +/area/main_map/maintenance/deck_three/forward/starboard name = "\improper Deck 3 Forward Starboard Maintenance" icon_state = "fsmaint" -/area/maintenance/deck_three/aft +/area/main_map/maintenance/deck_three/aft name = "\improper Deck 3 Aft Maintenance" icon_state = "amaint" -/area/maintenance/deck_three/aft/port +/area/main_map/maintenance/deck_three/aft/port name = "\improper Deck 3 Aft Port Maintenance" icon_state = "apmaint" -/area/maintenance/deck_three/aft/starboard +/area/main_map/maintenance/deck_three/aft/starboard name = "\improper Deck 3 Aft Starboard Maintenance" icon_state = "asmaint" @@ -124,39 +278,39 @@ /** *! Deck Four Maint Areas */ -/area/maintenance/deck_four +/area/main_map/maintenance/deck_four name = "\improper Deck 4 Maintenance" icon_state = "maintcentral" -/area/maintenance/deck_four/port +/area/main_map/maintenance/deck_four/port name = "\improper Deck 4 Port Maintenance" icon_state = "pmaint" -/area/maintenance/deck_four/starboard +/area/main_map/maintenance/deck_four/starboard name = "\improper Deck 4 Starboard Maintenance" icon_state = "smaint" -/area/maintenance/deck_four/forward +/area/main_map/maintenance/deck_four/forward name = "\improper Deck 4 Forward Maintenance" icon_state = "fmaint" -/area/maintenance/deck_four/forward/port +/area/main_map/maintenance/deck_four/forward/port name = "\improper Deck 4 Forward Port Maintenance" icon_state = "fpmaint" -/area/maintenance/deck_four/forward/starboard +/area/main_map/maintenance/deck_four/forward/starboard name = "\improper Deck 4 Forward Starboard Maintenance" icon_state = "fsmaint" -/area/maintenance/deck_four/aft +/area/main_map/maintenance/deck_four/aft name = "\improper Deck 4 Aft Maintenance" icon_state = "amaint" -/area/maintenance/deck_four/aft/port +/area/main_map/maintenance/deck_four/aft/port name = "\improper Deck 4 Aft Port Maintenance" icon_state = "apmaint" -/area/maintenance/deck_four/aft/starboard +/area/main_map/maintenance/deck_four/aft/starboard name = "\improper Deck 4 Aft Starboard Maintenance" icon_state = "asmaint" @@ -165,19 +319,19 @@ * Panic Bunkers */ -/area/maintenance/panic_bunker +/area/main_map/maintenance/panic_bunker name = "\improper Panic Bunker One" -/area/maintenance/panic_bunker/two +/area/main_map/maintenance/panic_bunker/two name = "\improper Panic Bunker Two" -/area/maintenance/panic_bunker/three +/area/main_map/maintenance/panic_bunker/three name = "\improper Panic Bunker Three" -/area/maintenance/panic_bunker/four +/area/main_map/maintenance/panic_bunker/four name = "\improper Panic Bunker Four" -/area/maintenance/panic_bunker/five +/area/main_map/maintenance/panic_bunker/five name = "\improper Panic Bunker Five" @@ -185,35 +339,36 @@ * Atomspheric Substation */ -/area/maintenance/atmospheric_substation +/area/main_map/maintenance/atmospheric_substation name = "\improper Atmospheric Substation" icon_state = "substation" sound_env = SMALL_ENCLOSED ambience = AMBIENCE_ATMOS -/area/maintenance/atmospheric_substation/medical +/area/main_map/maintenance/atmospheric_substation/medical name = "\improper Medical Atmospheric Substation" -/area/maintenance/atmospheric_substation/cargo +/area/main_map/maintenance/atmospheric_substation/cargo name = "\improper Cargo Atmospheric Substation" -/area/maintenance/atmospheric_substation/security +/area/main_map/maintenance/atmospheric_substation/security name = "\improper Security Atmospheric Substation" -/area/maintenance/atmospheric_substation/command +/area/main_map/maintenance/atmospheric_substation/command name = "\improper Command Atmospheric Substation" -/area/maintenance/atmospheric_substation/service +/area/main_map/maintenance/atmospheric_substation/service name = "\improper Service Atmospheric Substation" -/area/maintenance/atmospheric_substation/civilian +/area/main_map/maintenance/atmospheric_substation/civilian name = "\improper Civilian Atmospheric Substation" -/area/maintenance/atmospheric_substation/hanger_bay - name = "\improper Hanger Bay Atmospheric Substation" +/area/main_map/maintenance/atmospheric_substation/Hangar_bay + name = "\improper Hangar Bay Atmospheric Substation" -/area/maintenance/atmospheric_substation/research +/area/main_map/maintenance/atmospheric_substation/research name = "\improper Research Atmospheric Substation" -/area/maintenance/atmospheric_substation/ai +/area/main_map/maintenance/atmospheric_substation/ai name = "\improper AI Atmospheric Substation" + diff --git a/code/game/area/Space Station 13 areas.dm b/code/game/area/Space Station 13 areas.dm index 6a93736d751..f29a19ce0d0 100644 --- a/code/game/area/Space Station 13 areas.dm +++ b/code/game/area/Space Station 13 areas.dm @@ -1085,6 +1085,9 @@ NOTE: there are two lists of areas in the end of this file: centcom and station /area/maintenance/substation/outpost name = "Research Outpost Substation" +/area/maintenance/substation/flight_deck + name = "Flight Deck Outpost Substation" + /area/maintenance/substation/medsec name = "\improper MedSec Substation" @@ -1302,6 +1305,9 @@ NOTE: there are two lists of areas in the end of this file: centcom and station music = null sound_env = MEDIUM_SOFTFLOOR +/area/bridge/hop_office + name = "Head Of Personal Office" + /area/triumph/station/public_meeting_room name = "Public Meeting Room" icon_state = "blue" diff --git a/code/game/machinery/embedded_controller/mapping_helpers_conveyorids.dm b/code/game/machinery/embedded_controller/mapping_helpers_conveyorids.dm new file mode 100644 index 00000000000..34407d2a8fa --- /dev/null +++ b/code/game/machinery/embedded_controller/mapping_helpers_conveyorids.dm @@ -0,0 +1,50 @@ +/obj/map_helper/conveyor + name = "use a subtype!" + icon = 'icons/misc/map_helpers.dmi' + plane = 20 //I dunno just high. + alpha = 170 + + //The device we're setting up + var/my_device + var/my_device_type = /obj/machinery/conveyor + //Most things have a radio tag of some sort that needs adjusting + var/id_tag + +/obj/map_helper/conveyor/Initialize(mapload) + ..() + my_device = locate(my_device_type) in get_turf(src) + if(!my_device) + TO_WORLD("WARNING:conveyor helper '[name]' couldn't find what it wanted at: X:[x] Y:[y] Z:[z]") + else + setup() + return INITIALIZE_HINT_QDEL + +/obj/map_helper/conveyor/Destroy() + my_device = null + return ..() + + +/obj/map_helper/conveyor/proc/setup() + return //Stub for subtypes + +/obj/map_helper/conveyor/belt + name = "Rename me Jerry!" + icon_state = "belt" + my_device_type = /obj/machinery/conveyor + +/obj/map_helper/conveyor/belt/setup() + var/obj/machinery/conveyor/my_belt = my_device + my_belt.tag = id_tag + my_belt.name = name + + + +/obj/map_helper/conveyor/lever + name = "Rename me Jerry!" + icon_state = "lever" + my_device_type = /obj/machinery/conveyor_switch + +/obj/map_helper/conveyor/lever/setup() + var/obj/machinery/conveyor_switch/my_switch = my_device + my_switch.tag = id_tag + my_switch.name = name diff --git a/code/game/objects/structures/transit_tubes.dm b/code/game/objects/structures/transit_tubes.dm index e7998b36dfd..dff69f30274 100644 --- a/code/game/objects/structures/transit_tubes.dm +++ b/code/game/objects/structures/transit_tubes.dm @@ -14,6 +14,8 @@ var/exit_delay = 2 var/enter_delay = 1 + level = 2 + // alldirs in global.dm is the same list of directions, but since // the specific order matters to get a usable icon_state, it is // copied here so that, in the unlikely case that alldirs is changed, @@ -26,6 +28,10 @@ exit_delay = 0.5 enter_delay = 0.5 +//A variant that will can be hidden underneath tiles similiar to pipes and such +/obj/structure/transit_tube/hidden + level = 1 + // A place where tube pods stop, and people can get in or out. // Mappers: use "Generate Instances from Directions" for this // one. @@ -99,6 +105,10 @@ if(tube_dirs == null) init_dirs() + var/turf/T = loc + if(level == 1 && !T.is_plating()) hide(1) + update_icon() + /obj/structure/transit_tube/Bumped(mob/AM as mob|obj) var/obj/structure/transit_tube/T = locate() in AM.loc if(T) diff --git a/code/modules/events/apc_damage.dm b/code/modules/events/apc_damage.dm index 14e9ee7cfe6..ae76a79f464 100644 --- a/code/modules/events/apc_damage.dm +++ b/code/modules/events/apc_damage.dm @@ -39,6 +39,9 @@ if(istype(A,/area/maintenance)) apcs += apc apcs += apc + if(istype(A,/area/main_map/maintenance)) + apcs += apc + apcs += apc if(!apcs.len) return diff --git a/code/modules/gamemaster/actions/stowaway.dm b/code/modules/gamemaster/actions/stowaway.dm index 53429a7ee33..72b27ccc531 100644 --- a/code/modules/gamemaster/actions/stowaway.dm +++ b/code/modules/gamemaster/actions/stowaway.dm @@ -14,7 +14,8 @@ ) var/list/area/included = list( - /area/maintenance + /area/maintenance, + /area/main_map/maintenance ) /datum/gm_action/stowaway/set_up() diff --git a/code/modules/gamemaster/actions/swarmboarder.dm b/code/modules/gamemaster/actions/swarmboarder.dm index 9cef8a653d7..f1a27138d67 100644 --- a/code/modules/gamemaster/actions/swarmboarder.dm +++ b/code/modules/gamemaster/actions/swarmboarder.dm @@ -14,7 +14,8 @@ ) var/list/area/included = list( - /area/maintenance + /area/maintenance, + /area/main_map/maintenance ) /datum/gm_action/swarm_boarder/set_up() diff --git a/code/modules/mapping/map_helpers/network_builder/_network_builder.dm b/code/modules/mapping/map_helpers/network_builder/_network_builder.dm index 0775b6977c8..3b0df658c2b 100644 --- a/code/modules/mapping/map_helpers/network_builder/_network_builder.dm +++ b/code/modules/mapping/map_helpers/network_builder/_network_builder.dm @@ -10,6 +10,8 @@ var/adminspawned = FALSE /// our base type var/base_type + /// constraint + var/network_constraint /obj/map_helper/network_builder/Initialize(mapload) . = ..() diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm index c533d84c85c..8c50706afa7 100644 --- a/code/modules/recycling/conveyor2.dm +++ b/code/modules/recycling/conveyor2.dm @@ -7,7 +7,7 @@ /obj/machinery/conveyor icon = 'icons/obj/recycling.dmi' - icon_state = "conveyor0" + icon_state = "conveyor_map" name = "conveyor belt" desc = "A conveyor belt." plane = TURF_PLANE @@ -32,6 +32,7 @@ // create a conveyor /obj/machinery/conveyor/Initialize(mapload, newdir, on = 0) . = ..() + icon_state = "conveyor0" if(newdir) setDir(newdir) diff --git a/icons/atmos/vent_pump.dmi b/icons/atmos/vent_pump.dmi index 71117a1e215..fb7ba39aaa2 100644 Binary files a/icons/atmos/vent_pump.dmi and b/icons/atmos/vent_pump.dmi differ diff --git a/icons/atmos/vent_scrubber.dmi b/icons/atmos/vent_scrubber.dmi index d523c4c493a..e66a8da3c48 100644 Binary files a/icons/atmos/vent_scrubber.dmi and b/icons/atmos/vent_scrubber.dmi differ diff --git a/icons/misc/map_helpers.dmi b/icons/misc/map_helpers.dmi index da565a67c08..6d1d0c0c166 100644 Binary files a/icons/misc/map_helpers.dmi and b/icons/misc/map_helpers.dmi differ diff --git a/icons/obj/recycling.dmi b/icons/obj/recycling.dmi index 8e64bc7d7bb..0e581098756 100644 Binary files a/icons/obj/recycling.dmi and b/icons/obj/recycling.dmi differ diff --git a/maps/euthenia/euthenia.dm b/maps/euthenia/euthenia.dm index 81e42d83441..0f05160cb94 100644 --- a/maps/euthenia/euthenia.dm +++ b/maps/euthenia/euthenia.dm @@ -1,19 +1,30 @@ /datum/map/station/euthenia id = "euthenia" name = "World - Euthenia" + levels = list( + /datum/map_level/euthenia/deck/four, + /datum/map_level/euthenia/deck/three, + /datum/map_level/euthenia/deck/two, + /datum/map_level/euthenia/deck/one, + /datum/map_level/euthenia/deck/zero, + /datum/map_level/euthenia/misc, + ) width = 192 height = 192 - levels = list( - /datum/map_level/euthenia/deck/one, - /datum/map_level/euthenia/deck/two, - /datum/map_level/euthenia/deck/three, - /datum/map_level/euthenia/deck/four, - /datum/map_level/euthenia/deck/five, - /datum/map_level/euthenia/misc, + lateload = list( + /datum/map/sector/debrisfield_192, + /datum/map/sector/piratebase_192, + /datum/map/sector/mining_192, + /datum/map/sector/gaia_192, + /datum/map/sector/frozen_192, + /datum/map/sector/wasteland_192, + /datum/map/sector/tradeport_192, + /datum/map/sector/lavaland_192, + /datum/map/sector/miaphus_192, + /datum/map/sector/roguemining_192/one, ) - full_name = "NSV Euthenia" legacy_persistence_id = "euthenia" full_name = "NSV Euthenia" @@ -60,10 +71,11 @@ "bnny", ), ) - +/* admin_levels = list() sealed_levels = list() empty_levels = null + station_levels = list(Z_LEVEL_DECK_ONE, Z_LEVEL_DECK_TWO, Z_LEVEL_DECK_THREE, @@ -82,7 +94,7 @@ Z_LEVEL_DECK_TWO, Z_LEVEL_DECK_THREE, Z_LEVEL_DECK_FOUR)) - +*/ station_name = "NSV Euthenia" station_short = "Euthenia" dock_name = "NDV Marksman" @@ -152,34 +164,21 @@ /area/engineering/engineering_airlock, /area/solar/) -/datum/map_level/euthenia/deck/one - id = "EutheniaDeck1" - name = "Euthenia - Deck 1" - display_id = "euthenia-1" - display_name = "NSV Euthenia Deck 1" - absolute_path = "maps/euthenia/levels/deck1.dmm" + +/datum/map_level/euthenia/deck/four + id = "EutheniaDeck4" + name = "Euthenia - Deck 4" + display_id = "euthenia-4" + display_name = "NSV Euthenia Deck 4" + absolute_path = "maps/euthenia/levels/deck4.dmm" traits = list( ZTRAIT_STATION, ZTRAIT_FACILITY_SAFETY, ) base_turf = /turf/space - flags = LEGACY_LEVEL_CONTACT | LEGACY_LEVEL_PLAYER | LEGACY_LEVEL_CONSOLES - link_above = /datum/map_level/euthenia/deck/two - -/datum/map_level/euthenia/deck/two - id = "EutheniaDeck2" - name = "Euthenia - Deck 2" - display_id = "euthenia-2" - display_name = "NSV Euthenia Deck 2" - absolute_path = "maps/euthenia/levels/deck2.dmm" - traits = list( - ZTRAIT_STATION, - ZTRAIT_FACILITY_SAFETY, - ) - base_turf = /turf/simulated/open - flags = LEGACY_LEVEL_CONTACT | LEGACY_LEVEL_PLAYER | LEGACY_LEVEL_CONSOLES + flags = LEGACY_LEVEL_CONTACT | LEGACY_LEVEL_PLAYER | LEGACY_LEVEL_CONSOLES | LEGACY_LEVEL_STATION link_above = /datum/map_level/euthenia/deck/three - link_below = /datum/map_level/euthenia/deck/one + /datum/map_level/euthenia/deck/three id = "EutheniaDeck3" @@ -192,38 +191,54 @@ ZTRAIT_FACILITY_SAFETY, ) base_turf = /turf/simulated/open - flags = LEGACY_LEVEL_CONTACT | LEGACY_LEVEL_PLAYER | LEGACY_LEVEL_CONSOLES - link_above = /datum/map_level/euthenia/deck/four - link_below = /datum/map_level/euthenia/deck/two + flags = LEGACY_LEVEL_CONTACT | LEGACY_LEVEL_PLAYER | LEGACY_LEVEL_CONSOLES | LEGACY_LEVEL_STATION + link_above = /datum/map_level/euthenia/deck/two + link_below = /datum/map_level/euthenia/deck/four -/datum/map_level/euthenia/deck/four - id = "EutheniaDeck4" - name = "Euthenia - Deck 4" - display_id = "euthenia-4" - display_name = "NSV Euthenia Deck 4" - absolute_path = "maps/euthenia/levels/deck4.dmm" + +/datum/map_level/euthenia/deck/two + id = "EutheniaDeck2" + name = "Euthenia - Deck 2" + display_id = "euthenia-2" + display_name = "NSV Euthenia Deck 2" + absolute_path = "maps/euthenia/levels/deck2.dmm" traits = list( ZTRAIT_STATION, ZTRAIT_FACILITY_SAFETY, ) base_turf = /turf/simulated/open - flags = LEGACY_LEVEL_CONTACT | LEGACY_LEVEL_PLAYER | LEGACY_LEVEL_CONSOLES - link_above = /datum/map_level/euthenia/deck/five + flags = LEGACY_LEVEL_CONTACT | LEGACY_LEVEL_PLAYER | LEGACY_LEVEL_CONSOLES | LEGACY_LEVEL_STATION + link_above = /datum/map_level/euthenia/deck/one link_below = /datum/map_level/euthenia/deck/three -/datum/map_level/euthenia/deck/five - id = "EutheniaDeck5" - name = "Euthenia - Deck 5" - display_id = "euthenia-5" - display_name = "NSV Euthenia Deck 5" - absolute_path = "maps/euthenia/levels/deck5.dmm" +/datum/map_level/euthenia/deck/one + id = "EutheniaDeck1" + name = "Euthenia - Deck 1" + display_id = "euthenia-1" + display_name = "NSV Euthenia Deck 1" + absolute_path = "maps/euthenia/levels/deck1.dmm" traits = list( ZTRAIT_STATION, ZTRAIT_FACILITY_SAFETY, ) base_turf = /turf/simulated/open - flags = LEGACY_LEVEL_CONTACT | LEGACY_LEVEL_PLAYER | LEGACY_LEVEL_CONSOLES - link_below = /datum/map_level/euthenia/deck/four + flags = LEGACY_LEVEL_CONTACT | LEGACY_LEVEL_PLAYER | LEGACY_LEVEL_CONSOLES | LEGACY_LEVEL_STATION + link_above = /datum/map_level/euthenia/deck/zero + link_below = /datum/map_level/euthenia/deck/two + +/datum/map_level/euthenia/deck/zero + id = "EutheniaDeck0" + name = "Euthenia - Flight Deck" + display_id = "euthenia-0" + display_name = "NSV Euthenia Flight Deck" + absolute_path = "maps/euthenia/levels/deck0.dmm" + traits = list( + ZTRAIT_STATION, + ZTRAIT_FACILITY_SAFETY, + ) + base_turf = /turf/simulated/open + flags = LEGACY_LEVEL_CONTACT | LEGACY_LEVEL_PLAYER | LEGACY_LEVEL_CONSOLES | LEGACY_LEVEL_STATION + link_below = /datum/map_level/euthenia/deck/one /datum/map_level/euthenia/misc id = "EutheniaMisc" diff --git a/maps/euthenia/levels/deck5.dmm b/maps/euthenia/levels/deck0.dmm similarity index 80% rename from maps/euthenia/levels/deck5.dmm rename to maps/euthenia/levels/deck0.dmm index 6a7a3efd9fe..bf5983e0708 100644 --- a/maps/euthenia/levels/deck5.dmm +++ b/maps/euthenia/levels/deck0.dmm @@ -39,6 +39,25 @@ }, /turf/simulated/floor/tiled/techfloor, /area/space) +"aQ" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck0) +"bE" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/open, +/area/space) "cC" = ( /obj/structure/table/reinforced, /obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/pilot{ @@ -75,6 +94,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/space) +"fD" = ( +/obj/machinery/holoplant, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"fT" = ( +/obj/machinery/door/airlock/lift, +/turf/simulated/floor/holofloor/tiled/dark, +/area/space) "fU" = ( /turf/simulated/wall, /area/space) @@ -98,6 +125,16 @@ /obj/structure/catwalk, /turf/simulated/floor/reinforced/airless, /area/space) +"gN" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/space) +"gU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/space) "hh" = ( /obj/structure/railing, /obj/structure/lattice, @@ -110,8 +147,9 @@ "hD" = ( /turf/simulated/floor/plating, /area/maintenance/substation/command) -"hJ" = ( -/turf/simulated/floor/carpet/sblucarpet, +"ih" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/reinforced, /area/space) "iD" = ( /obj/effect/floor_decal/corner/mauve{ @@ -119,20 +157,53 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/space) -"iH" = ( -/turf/simulated/floor/airless, +"iE" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/hallway/deck0) +"jm" = ( +/turf/simulated/wall/r_wall/prepainted/medical, /area/space) -"jq" = ( -/turf/simulated/wall{ - can_open = 1 +"jR" = ( +/obj/spawner/window/low_wall/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/space) +"jS" = ( +/obj/machinery/door/airlock/maintenance/command, +/obj/machinery/door/firedoor{ + dir = 4 }, -/area/space) -"jD" = ( -/turf/simulated/floor/lino, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"jZ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/open, /area/space) "kd" = ( /turf/simulated/shuttle/wall/voidcraft/hard_corner, /area/space) +"kY" = ( +/obj/spawner/window/reinforced/full/firelocks, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "chemistry"; + layer = 3.1; + name = "Chemistry Shutters" + }, +/turf/simulated/floor/plating, +/area/space) +"lB" = ( +/obj/machinery/door/airlock/maintenance/command, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) "lD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -144,15 +215,21 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/space) -"lQ" = ( -/obj/machinery/door/airlock/glass/security{ - id_tag = "BrigFoyer"; - layer = 2.8; - name = "Security"; - req_one_access = list(38,63) +"mk" = ( +/obj/structure/railing{ + dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_grid, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/open, +/area/space) +"mw" = ( +/obj/machinery/camera/network/outside{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/reinforced/airless, /area/space) "my" = ( /obj/structure/railing{ @@ -160,14 +237,11 @@ }, /turf/simulated/open, /area/space) -"mZ" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/command) -"nk" = ( -/obj/structure/railing{ - dir = 8 +"ns" = ( +/obj/machinery/power/pointdefense{ + id_tag = "forward_pd" }, -/turf/simulated/open, +/turf/simulated/floor/reinforced/airless, /area/space) "ny" = ( /obj/structure/lattice, @@ -176,6 +250,17 @@ }, /turf/space, /area/space) +"nW" = ( +/obj/structure/railing, +/obj/structure/window/reinforced, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/open, +/area/space) "ok" = ( /obj/structure/table/reinforced, /obj/item/radio/intercom{ @@ -185,6 +270,19 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/space) +"ov" = ( +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck0) +"oD" = ( +/obj/machinery/door/airlock/glass/security{ + id_tag = "BrigFoyer"; + layer = 2.8; + name = "Security"; + req_one_access = list(38,63) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/hallway/deck0) "oE" = ( /turf/simulated/floor/tiled/steel_grid, /area/space) @@ -194,6 +292,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/space) +"pA" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/hallway/deck0) "pG" = ( /obj/structure/railing, /turf/simulated/open, @@ -218,6 +322,11 @@ /obj/map_helper/airlock/sensor/chamber_sensor, /turf/simulated/floor/plating, /area/space) +"qo" = ( +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/space) "qx" = ( /obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ dir = 8 @@ -237,9 +346,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/space) -"rd" = ( -/turf/simulated/floor/carpet/blucarpet, -/area/space) "rl" = ( /obj/structure/table/reinforced, /obj/machinery/ai_status_display{ @@ -271,6 +377,9 @@ }, /turf/simulated/floor/tiled/techmaint, /area/space) +"rS" = ( +/turf/simulated/open, +/area/main_map/hallway/deck0) "sJ" = ( /obj/structure/cable{ icon_state = "2-4" @@ -278,30 +387,29 @@ /obj/structure/railing, /turf/simulated/floor/plating, /area/space) -"sT" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"sX" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/space) "to" = ( /obj/effect/floor_decal/techfloor{ dir = 10 }, /turf/simulated/floor/tiled/techfloor, /area/space) +"tq" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/space) "uj" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, /area/space) +"uD" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/space) "uS" = ( /obj/structure/railing{ dir = 4 @@ -323,9 +431,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/space) -"ws" = ( -/turf/simulated/floor/wood, -/area/space) "wJ" = ( /turf/simulated/floor/plating, /area/space) @@ -335,6 +440,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/space) +"wQ" = ( +/obj/machinery/door/airlock/maintenance/command, +/turf/simulated/floor/plating, +/area/space) "wU" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -348,8 +457,19 @@ }, /turf/simulated/floor/tiled/techmaint, /area/space) -"xe" = ( -/turf/simulated/floor, +"xR" = ( +/turf/simulated/floor/glass/reinforced, +/area/main_map/hallway/deck0) +"xY" = ( +/obj/machinery/door/airlock/glass/command, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/space) +"yN" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, /area/space) "yU" = ( /obj/machinery/atmospherics/component/unary/vent_pump/high_volume, @@ -361,29 +481,14 @@ }, /turf/simulated/floor/plating, /area/space) -"yX" = ( -/obj/machinery/door/airlock/maintenance/command, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) -"zl" = ( -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) "zp" = ( /turf/simulated/floor/tiled/monotile, /area/space) +"zx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck0) "zO" = ( /obj/structure/railing{ dir = 4 @@ -397,9 +502,6 @@ /obj/item/tank/emergency/oxygen, /turf/simulated/floor/plating, /area/space) -"AF" = ( -/turf/simulated/floor/bluegrid, -/area/space) "AL" = ( /obj/structure/cable{ icon_state = "4-8" @@ -411,15 +513,16 @@ /obj/machinery/computer/ship/sensors, /turf/simulated/floor/tiled/techfloor/grid, /area/space) -"AX" = ( -/turf/simulated/floor/carpet, -/area/space) "Bf" = ( /obj/machinery/computer/ship/navigation{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, /area/space) +"CT" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck0) "CU" = ( /obj/machinery/door/airlock/glass_external, /obj/map_helper/airlock/door/ext_door, @@ -429,15 +532,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/space) -"DC" = ( -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) -"DL" = ( -/turf/simulated/shuttle/wall, -/area/space) -"DS" = ( -/turf/simulated/floor/airless/ceiling, -/area/space) "Ee" = ( /obj/structure/cable{ icon_state = "4-8" @@ -475,17 +569,14 @@ /obj/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, /area/space) -"Fm" = ( -/obj/machinery/door/airlock/glass/research{ - name = "Research Entrance"; - req_access = list(47) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/space) "Fp" = ( /turf/simulated/wall/r_wall, /area/space) +"FO" = ( +/obj/structure/railing, +/obj/structure/window/reinforced, +/turf/simulated/open, +/area/space) "GJ" = ( /obj/machinery/atmospherics/pipe/tank, /turf/simulated/floor/tiled/techmaint, @@ -496,6 +587,10 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/space) +"Hb" = ( +/obj/spawner/window/low_wall/borosillicate/full/firelocks, +/turf/simulated/floor/plating, +/area/space) "Hj" = ( /turf/space/basic, /area/space) @@ -544,9 +639,6 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/space) -"HN" = ( -/turf/simulated/shuttle/floor/black, -/area/space) "If" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, @@ -572,6 +664,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techfloor, /area/space) +"Jl" = ( +/obj/machinery/holoplant, +/turf/simulated/floor/tiled/monotile, +/area/space) "JP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 4 @@ -587,6 +683,23 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) +"JX" = ( +/obj/machinery/door/airlock/maintenance/command, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) "Ke" = ( /obj/machinery/oxygen_pump/mobile, /turf/simulated/floor/tiled/techfloor, @@ -599,12 +712,11 @@ /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/wall/r_wall, /area/space) -"Lr" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, +"KG" = ( +/turf/simulated/floor/tiled/monofloor, +/area/space) +"KO" = ( +/turf/simulated/wall/r_wall/prepainted/command, /area/space) "LA" = ( /obj/machinery/light/small{ @@ -615,6 +727,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/space) +"LW" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/space) "Ma" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 @@ -631,6 +747,22 @@ }, /turf/simulated/floor/tiled/techmaint, /area/space) +"MI" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/space) "MQ" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -642,19 +774,22 @@ /obj/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techfloor, /area/space) -"Nl" = ( -/mob/living/simple_mob/animal/passive/bird/ringneck_dove{ - desc = "The bartenders newest pet on the station. They seem like they want to help you out."; - name = "Brewster" - }, -/turf/simulated/floor/wood, -/area/space) "Nu" = ( /obj/structure/railing/grey{ dir = 4 }, /turf/simulated/open, /area/space) +"NG" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/hallway/deck0) +"NQ" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/reinforced/airless, +/area/space) "NT" = ( /turf/space, /area/space) @@ -676,22 +811,27 @@ "OM" = ( /turf/simulated/floor/glass/reinforced, /area/space) -"PM" = ( -/obj/machinery/camera/network/outside{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"PW" = ( -/turf/simulated/floor/tiled/dark, +"Pm" = ( +/obj/machinery/door/airlock/maintenance/command, +/obj/machinery/door/firedoor, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"Pr" = ( +/obj/machinery/door/airlock/glass/command, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor, /area/space) "Qd" = ( /obj/structure/table/reinforced, /turf/simulated/floor/tiled/techfloor/grid, /area/space) -"QA" = ( -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/carry, +"QR" = ( +/obj/machinery/door/airlock/maintenance/engi{ + name = "Elevator Shaft Access"; + req_one_access = null + }, +/turf/simulated/floor/plating, /area/space) "Rj" = ( /obj/structure/cable{ @@ -705,8 +845,9 @@ }, /turf/simulated/floor/tiled/techfloor, /area/space) -"Rs" = ( -/turf/simulated/shuttle/plating/airless, +"RX" = ( +/obj/structure/railing, +/turf/simulated/floor/reinforced/airless, /area/space) "Sl" = ( /obj/machinery/shield_diffuser, @@ -724,9 +865,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/space) -"Sr" = ( -/turf/simulated/floor/carpet/turcarpet, -/area/space) "SH" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 8 @@ -742,6 +880,9 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/space) +"SU" = ( +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck0) "Ti" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/space) @@ -761,9 +902,6 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/reinforced/airless, /area/space) -"TF" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/space) "Us" = ( /obj/structure/catwalk, /turf/simulated/floor/airless/ceiling, @@ -776,9 +914,6 @@ /obj/machinery/door/airlock/glass_external, /turf/simulated/floor/tiled/techfloor/grid, /area/space) -"VD" = ( -/turf/simulated/floor/tiled, -/area/space) "VJ" = ( /turf/simulated/floor/reinforced/airless, /area/space) @@ -786,10 +921,17 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled/techfloor, /area/space) +"VO" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/maintenance/substation/command) "VR" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/space) +"Wy" = ( +/obj/item/banner/command, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck0) "WG" = ( /obj/structure/catwalk, /obj/structure/handrail{ @@ -797,21 +939,16 @@ }, /turf/simulated/floor/airless/ceiling, /area/space) -"WX" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 5 +"WT" = ( +/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/pilot{ + pixel_y = 3 }, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/air_alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techmaint, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/space) +"WW" = ( +/obj/spawner/window/low_wall/borosillicate/full/firelocks, +/turf/simulated/floor/reinforced, /area/space) "Xg" = ( /obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ @@ -830,6 +967,19 @@ /obj/machinery/power/apc/critical/west_bump, /turf/simulated/floor/tiled/techfloor/grid, /area/space) +"Xz" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck0) +"XL" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck0) +"XN" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/space) "XX" = ( /obj/structure/railing, /obj/structure/railing{ @@ -860,15 +1010,16 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled/techmaint, /area/space) +"YL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/hallway/deck0) "Zt" = ( /obj/structure/catwalk, /turf/simulated/open, /area/space) -"ZA" = ( -/obj/machinery/door/airlock/maintenance/command, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) (1,1,1) = {" NT @@ -985,34 +1136,34 @@ NT NT NT NT -NT -Fp -Fp -PW -Fp -Fp -Fp -Fp -VD -VD -Fp -VD -VD -VD -VD -VD -Fp -NT -NT -Fp -PW -PW -PW -PW -PW -PW -NT -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -1179,34 +1330,34 @@ NT NT NT NT -NT -Fp -PW -PW -PW -PW -PW -Fp -PW -PW -Fp -Fp -PW -Fp -Fp -Fp -Fp -NT -NT -PW -PW -PW -PW -PW -PW -PW -NT -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -1373,34 +1524,34 @@ NT NT NT NT -NT -Fp -PW -PW -PW -PW -PW -Fp -xe -xe -PW -PW -PW -PW -PW -Fp -Fp -NT -NT -PW -PW -PW -PW -PW -PW -PW -NT -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -1567,34 +1718,34 @@ NT NT NT NT -NT -Fp -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -Fp -Fp -NT -NT -Fp -PW -PW -PW -PW -PW -PW -NT -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -1725,18 +1876,27 @@ NT NT NT NT -DC -DC -DC -DC -DC -fU -fU -fU -fU -fU -Ox -wJ +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -1752,43 +1912,34 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Fp -Fp -Fp -Fp -Fp -Fp -Fp -PW -PW -PW -PW -PW -PW -PW -Fp -Fp -NT -NT -Fp -PW -PW -PW -PW -PW -PW -NT -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -1919,18 +2070,27 @@ NT NT NT NT -DC -DC -DC -DC -DC -fU -PW -PW -PW -fU -fU -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -1946,43 +2106,34 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -Fp -Fp -NT -NT -Fp -Fp -Fp -PW -PW -PW -Fp -Fp -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -2090,6 +2241,50 @@ NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -2105,78 +2300,34 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -DC -DC -fU -fU -fU -fU -PW -PW -PW -PW -PW -wJ -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -Fp -Fp -NT -NT -Fp -PW -PW -PW -PW -PW -PW -PW -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -2284,6 +2435,50 @@ NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -2299,78 +2494,34 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -DC -fU -fU -VD -VD -fU -PW -PW -PW -PW -PW -wJ -NT -NT -Fp -Fp -Fp -Fp -jD -Fp -wJ -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Fp -PW -PW -PW -PW -PW -Fp -PW -PW -Fp -Fp -Fp -Fp -Fp -Fp -Fp -NT -NT -Fp -NT -PW -PW -PW -PW -PW -PW -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -2478,6 +2629,50 @@ NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -2493,78 +2688,34 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -DC -fU -VD -VD -VD -PW -PW -PW -PW -PW -PW -wJ -NT -NT -Fp -AX -AX -AX -AX -AX -AX -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Fp -PW -PW -PW -PW -PW -Fp -PW -PW -Fp -Fp -Fp -Fp -Fp -Fp -Fp -NT -NT -Fp -NT -PW -PW -PW -PW -PW -PW -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -2672,99 +2823,6 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -DC -wJ -VD -VD -VD -fU -PW -PW -PW -PW -PW -fU -NT -NT -Fp -AX -AX -AX -AX -AX -AX -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Fp -PW -PW -PW -PW -PW -Fp -Fp -Fp -Fp -Hu -Hu -Hu -Hu -Hu -Ox -NT -NT -Fp -NT -PW -PW -PW -PW -PW -PW -Fp -NT -NT -NT -NT -NT -NT Hj Hj Hj @@ -2788,6 +2846,27 @@ NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -2803,6 +2882,78 @@ NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT NT NT NT @@ -2866,125 +3017,125 @@ NT NT NT NT -NT -NT -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -DC -wJ -VD -VD -VD -VD -VD -VD -VD -VD -VD -VD -NT -NT -Fp -AX -AX -AX -AX -AX -AX -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Fp -NT -PW -PW -PW -PW -PW -PW -Fp -NT -NT -NT -NT -NT -NT -fU -fU -fU -fU -fU -fU -fU -fU -Fp -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj Hj Hj NT NT NT NT -fU -fU -fU -VD -fU -fU -xe -xe -xe -fU +NT +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -3060,125 +3211,125 @@ NT NT NT NT -NT -NT -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -DC -wJ -VD -VD -VD -VD -VD -VD -VD -VD -VD -VD -NT -NT -wJ -AX -AX -AX -AX -AX -AX -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Fp -Fp -Fp -Fp -PW -Fp -Fp -Fp -Fp -NT -NT -NT -NT -NT -NT -fU -PW -PW -PW -PW -PW -PW -PW -Fp -DS +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj Hj Hj NT NT NT NT -fU -VD -VD -VD -VD -VD -VD -VD -VD -fU +NT +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -3254,14 +3405,50 @@ NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT -Ox -Ox -Ox -Ox -Ox -Ox +NT +NT +NT +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -3277,102 +3464,66 @@ NT NT NT NT -DC -wJ -VD -VD -VD -fU -PW -PW -PW -PW -PW -fU -NT -NT -wJ -jD -jD -jD -jD -jD -jD +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Fp -Fp -Fp -PW -PW -PW -Fp -Fp -Fp -NT -VD -VD -VD -NT -NT -fU -PW -PW -PW -PW -PW -PW -PW -Fp -Fp -NT -NT -NT -NT -NT -NT -fU -VD -VD -VD -VD -VD -VD -VD -VD -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -3448,18 +3599,18 @@ NT NT NT NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -3471,27 +3622,27 @@ NT NT NT NT -DC -fU -VD -VD -VD -PW -PW -PW -PW -PW -PW -wJ -NT -NT -jD -jD -jD -jD -jD -jD -jD +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -3507,66 +3658,66 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Fp -Fp -Fp -PW -PW -PW -Fp -Fp -Fp -NT -VD -VD -VD -NT -NT -fU -PW -PW -PW -PW -PW -PW -PW -Fp -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT Ox NT NT -wJ -VD -VD -VD -VD -VD -VD -VD -VD -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -3642,18 +3793,18 @@ NT NT NT NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -iH -Ox -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -3665,27 +3816,27 @@ NT NT NT NT -DC -fU -fU -VD -wJ -fU -PW -PW -PW -PW -PW -wJ -NT -NT -Fp -jD -jD -jD -jD -jD -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -3701,66 +3852,66 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Fp -Fp -Fp -Fp -PW -Fp -Fp -Fp -Fp -NT -VD -VD -VD -NT -NT -fU -PW -PW -PW -PW -PW -PW -PW -Fp -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT Ox NT NT -wJ -VD -VD -VD -VD -VD -VD -VD -VD -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -3836,18 +3987,18 @@ NT NT NT NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -iH -Ox -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -3859,27 +4010,27 @@ NT NT NT NT -DC -fU -VD -VD -VD -fU -PW -PW -PW -PW -PW -wJ -NT -NT -Fp -Fp -Fp -Fp -Fp -wJ -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -3914,47 +4065,47 @@ NT NT NT NT -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -NT -VD -VD -VD -NT -NT -fU -PW -fU -wJ -fU -fU -PW -PW -Fp -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT Ox NT NT -wJ -VD -VD -VD -VD -VD -VD -VD -VD -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4030,18 +4181,18 @@ NT NT NT NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -iH -Ox -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4053,18 +4204,27 @@ NT NT NT NT -DC -wJ -VD -VD -VD -fU -PW -PW -PW -PW -PW -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4099,56 +4259,47 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -fU -VD -VD -VD -fU -NT -wJ -VD -zp -zp -zp -fU -PW -wJ -Fp -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT Ox NT NT -fU -VD -VD -VD -VD -VD -VD -VD -VD -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4224,18 +4375,18 @@ NT NT NT NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -iH -Ox -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4247,27 +4398,27 @@ NT NT NT NT -DC -wJ -VD -VD -VD -fU -fU -fU -fU -fU -fU -fU -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4302,47 +4453,47 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -fU -Ox -Ox -Ox -fU -NT -fU -VD -zp -zp -zp -VD -VD -VD -Fp -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT Ox NT NT -fU -VD -VD -VD -VD -VD -VD -VD -VD -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4418,18 +4569,18 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4441,27 +4592,27 @@ NT NT NT NT -DC -fU -VD -VD -VD -VD -VD -VD -fU -Ox -wJ -jq -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4496,47 +4647,47 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -fU -Ox -Ox -Ox -fU -NT -PW -VD -zp -zp -zp -VD -VD -VD -Fp -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT Ox NT NT -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4612,18 +4763,18 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4635,27 +4786,27 @@ NT NT NT NT -fU -fU -fU -fU -fU -fU -VD -VD -fU -fU -fU -fU -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4668,6 +4819,7 @@ Ox Ox VJ VJ +my Ox Ox Ox @@ -4677,8 +4829,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ Ox @@ -4690,31 +4841,31 @@ Ox NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -fU -fU -fU -fU -fU -NT -PW -VD -zp -zp -zp -VD -VD -VD -Fp -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4806,18 +4957,18 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -4862,6 +5013,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -4871,8 +5023,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -4884,31 +5035,31 @@ VJ VJ VJ VJ -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -fU -VD -zp -zp -zp -VD -VD -VD -Fp -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT Ox @@ -5056,6 +5207,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -5065,8 +5217,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -5093,16 +5244,16 @@ NT NT NT NT -wJ -VD -zp -zp -zp -fU -pZ -fU -Fp -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT Ox @@ -5250,6 +5401,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -5259,8 +5411,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -5444,6 +5595,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -5453,8 +5605,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -5638,6 +5789,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -5647,8 +5799,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -5832,6 +5983,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -5841,8 +5993,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -6026,6 +6177,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -6035,8 +6187,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -6220,6 +6371,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -6229,8 +6381,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -6414,6 +6565,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -6423,8 +6575,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -6608,6 +6759,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -6617,8 +6769,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -6802,6 +6953,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -6811,8 +6963,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -6996,6 +7147,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -7005,8 +7157,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -7190,6 +7341,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -7199,8 +7351,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -7384,6 +7535,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -7393,8 +7545,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -7578,6 +7729,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -7587,8 +7739,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -7772,6 +7923,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -7781,8 +7933,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -7966,6 +8117,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -7975,8 +8127,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -8160,6 +8311,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -8169,8 +8321,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -8354,6 +8505,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -8363,8 +8515,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -8548,6 +8699,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -8557,8 +8709,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -8729,7 +8880,7 @@ VJ VJ VJ JP -WX +MI Ao Ki Tx @@ -8742,6 +8893,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -8751,8 +8903,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -8936,6 +9087,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -8945,8 +9097,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -9130,6 +9281,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -9139,8 +9291,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -9324,6 +9475,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -9333,8 +9485,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -9518,6 +9669,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -9527,8 +9679,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -9712,6 +9863,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -9721,8 +9873,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -9906,6 +10057,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -9915,8 +10067,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -10100,6 +10251,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -10109,8 +10261,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -10294,6 +10445,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -10303,8 +10455,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -10488,6 +10639,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -10497,8 +10649,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -10656,10 +10807,10 @@ VJ VJ VJ VJ -Fp -Xi -Xi -Fp +ov +CT +CT +ov VJ VJ VJ @@ -10682,6 +10833,7 @@ VJ VJ VJ VJ +my Ox Ox Ox @@ -10691,8 +10843,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -10703,10 +10854,10 @@ VJ VJ VJ Fp -zp +Fp Ox Ox -zp +Fp Fp VJ VJ @@ -10745,14 +10896,14 @@ Ox Ox NT NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -10850,13 +11001,10 @@ VJ VJ VJ VJ -Xi -Ox -Ox -Xi -VJ -VJ -VJ +CT +rS +rS +CT VJ VJ VJ @@ -10876,6 +11024,10 @@ VJ VJ VJ VJ +RX +gM +gM +my Ox Ox Ox @@ -10885,8 +11037,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -10939,14 +11090,14 @@ Ox Ox Ox NT -DL -DL -DL -HN -DL -DL -DL -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -11044,13 +11195,10 @@ VJ VJ VJ VJ -Xi -Ox -Ox -Xi -VJ -VJ -VJ +CT +rS +rS +CT VJ VJ VJ @@ -11070,6 +11218,10 @@ VJ VJ VJ VJ +RX +gM +gM +my Ox Ox Ox @@ -11079,8 +11231,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -11133,14 +11284,14 @@ Ox Ox Ox NT -Rs -HN -HN -HN -HN -Rs -QA -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -11238,13 +11389,10 @@ VJ VJ VJ VJ -Xi -Ox -Ox -Xi -VJ -VJ -VJ +CT +rS +rS +CT VJ VJ VJ @@ -11264,6 +11412,10 @@ VJ VJ VJ VJ +RX +gM +gM +my Ox Ox Ox @@ -11273,8 +11425,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -11327,14 +11478,14 @@ Ox Ox Ox NT -Rs -HN -HN -HN -HN -Rs -QA -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -11431,15 +11582,12 @@ VJ VJ VJ VJ -Fp -Fp -Hu -Hu -Fp -Fp -VJ -VJ -VJ +ov +ov +SU +SU +ov +ov VJ VJ VJ @@ -11458,6 +11606,10 @@ VJ VJ VJ VJ +RX +gM +gM +my Ox Ox Ox @@ -11467,8 +11619,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -11521,14 +11672,14 @@ Ox Ox Ox NT -Rs -HN -HN -HN -HN -Rs -QA -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -11625,15 +11776,12 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp -VJ -VJ -VJ +ov +XL +NG +NG +XL +ov VJ VJ VJ @@ -11652,6 +11800,10 @@ VJ VJ VJ VJ +RX +gM +gM +my Ox Ox Ox @@ -11661,8 +11813,7 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ @@ -11715,14 +11866,14 @@ Ox Ox Ox NT -DL -DL -DL -DL -DL -DL -DL -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -11819,15 +11970,12 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp -VJ -VJ -VJ +ov +XL +NG +NG +XL +ov VJ VJ VJ @@ -11846,6 +11994,10 @@ VJ VJ VJ VJ +RX +gM +gM +my Ox Ox Ox @@ -11855,40 +12007,39 @@ Ox Ox Ox Ox -Ox -Ox +pG VJ VJ VJ -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -lQ -lQ -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp +ov +ov +ov +ov +ov +ov +ov +ov +oD +oD +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov Fp pq to @@ -11909,14 +12060,14 @@ Ox Ox Ox NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -12013,15 +12164,12 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp -VJ -VJ -VJ +ov +XL +NG +NG +XL +ov VJ VJ VJ @@ -12040,49 +12188,52 @@ VJ VJ VJ VJ +RX +gM +gM +my Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox +uS +uS +uS +uS +uS +uS +uS +uS +uD VJ VJ VJ -Fp -zp -zp -zp -zp -zp -zp -zp -oE -oE -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -Fp +ov +XL +XL +XL +XL +XL +XL +XL +NG +NG +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +ov qJ MQ HA @@ -12207,15 +12358,12 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp -VJ -VJ -VJ +ov +XL +NG +NG +XL +ov VJ VJ VJ @@ -12236,49 +12384,52 @@ VJ VJ gM gM +gM +gM +gM +gM +gM +gM +gM +gM +gM +gM +gM +gM VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -Fp -zp -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -Fm +ov +XL +xR +xR +xR +xR +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +zx pq -Hu +XN HA Xi Ox @@ -12401,15 +12552,12 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp -VJ -VJ -VJ +ov +XL +NG +NG +XL +ov VJ VJ VJ @@ -12430,47 +12578,50 @@ VJ VJ gM gM +gM +gM +gM +gM +gM +gM +gM +gM +gM +gM +gM +gM VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -Fp -zp -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -Fm +ov +XL +xR +xR +xR +xR +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +zx Rp dl Sq @@ -12595,12 +12746,12 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp +ov +XL +NG +NG +XL +ov VJ VJ VJ @@ -12619,52 +12770,52 @@ VJ VJ VJ VJ -VJ -zl -PM +NQ +mw +gM +gM +gM +NQ +gM +gM +gM +gM +gM +gM gM gM VJ -zl VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -Fp -zp -oE -oE -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -Fp +ov +XL +xR +xR +xR +xR +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +ov iD iD iD @@ -12689,19 +12840,19 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (62,1,1) = {" @@ -12789,15 +12940,12 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp -VJ -VJ -VJ +ov +XL +NG +NG +XL +ov VJ VJ VJ @@ -12809,6 +12957,8 @@ VJ VJ VJ VJ +Hu +Hu VJ VJ VJ @@ -12830,35 +12980,36 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp +VJ +ov +XL +xR +xR +xR +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +Xz +ov +ov +ov +ov +ov +ov +ov +ov Fp Fp Fp @@ -12883,19 +13034,19 @@ Ox NT NT NT -fU -fU -fU -fU -fU -fU -fU -fU -Fp -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (63,1,1) = {" @@ -12983,12 +13134,12 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp +ov +XL +NG +NG +XL +ov VJ VJ VJ @@ -13000,14 +13151,13 @@ VJ VJ VJ VJ +gj +Ke VJ VJ VJ VJ VJ -Hu -Hu -VJ VR yU Jj @@ -13024,72 +13174,73 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -Fp VJ -VJ -VJ -VJ -VJ -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT +ov +XL +NG +NG +XL +ov +wJ +wJ +wJ +wJ +Ao +LW +Ao +Ao +Ao +Ao +Ao fU -PW -PW -PW -PW -PW -PW -PW +wJ +wJ +Ao +wJ +wJ +wJ +wJ +wJ +wJ Fp -DS -NT +VJ +VJ +VJ +VJ +VJ +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (64,1,1) = {" @@ -13177,12 +13328,13 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp +ov +XL +NG +NG +XL +ov +VJ VJ VJ VJ @@ -13199,8 +13351,6 @@ VJ VJ VJ VJ -gj -Ke VJ VR AB @@ -13219,71 +13369,72 @@ Fp Fp Fp Fp -zp -oE -oE -zp -Fp -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -Fp -VJ -VJ -VJ -VJ -VJ -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT +ov +XL +NG +NG +XL +aQ +Ao +Ao +Ao +Ao +Ao fU -PW -PW -PW -PW -PW -PW -PW -Fp +wJ +wJ +wJ +wJ +Ao +LW +Ao +Ao +Ao +wJ +wJ +wJ +wJ +wJ +wJ Fp +VJ +VJ +VJ +VJ +VJ +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (65,1,1) = {" @@ -13371,13 +13522,12 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp -VJ +ov +XL +NG +NG +XL +ov VJ VJ VJ @@ -13412,72 +13562,73 @@ wJ wJ wJ wJ -Fp -zp -oE -oE -zp -Fp +wJ +ov +XL +NG +NG +XL +ov +yN +tq wJ wJ wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -Fp -VJ -VJ -VJ -VJ -VJ -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT fU -PW -PW -PW -PW -PW -PW -PW -Fp +wJ +wJ +wJ +wJ +wJ +fU +wJ +wJ +Ao +wJ +wJ +wJ +wJ +wJ +wJ Fp +VJ +VJ +VJ +VJ +VJ +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (66,1,1) = {" @@ -13565,13 +13716,12 @@ VJ VJ VJ VJ -Fp -zp -oE -oE -zp -Fp -VJ +ov +XL +NG +NG +XL +ov VJ VJ VJ @@ -13606,72 +13756,73 @@ wJ wJ wJ wJ -Fp -zp -oE -oE -zp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -wJ -wJ wJ +aQ +XL +NG +NG +XL +ov +Fp +Fp +Fp +Fp +Fp +Fp +Fp Fp Fp Fp Fp Fp Fp -VJ -VJ -VJ -VJ -VJ -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT fU -PW -PW -PW -PW -PW -PW -PW +LW +fU +fU Fp Fp +Fp +Fp +Fp +VJ +VJ +VJ +VJ +VJ +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (67,1,1) = {" @@ -13759,36 +13910,35 @@ VJ VJ VJ VJ +ov +XL +NG +NG +XL +ov +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ Fp -zp +Jl oE -oE -zp -Fp -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -Fp -zp -oE -oE -zp +gU +Jl Fp wJ wJ @@ -13800,12 +13950,13 @@ wJ wJ wJ wJ -Fp -zp -oE -oE -zp -Fp +wJ +ov +XL +NG +NG +XL +ov VJ VJ VJ @@ -13820,7 +13971,7 @@ VJ VJ Fp wJ -wJ +Ao wJ wJ Fp @@ -13853,19 +14004,19 @@ Ox Ox Ox NT -fU -PW -fU -wJ -fU -fU -PW -PW -Fp -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (68,1,1) = {" @@ -13945,61 +14096,61 @@ Ox Ox Ox Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -zp -oE -oE -zp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -zp -oE -oE -zp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -zp -oE -oE -zp -Fp +ov +ov +ov +ov +ov +ov +ov +ov +ov +XL +NG +NG +XL +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +XL +NG +YL +XL +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +XL +NG +NG +XL +ov VJ VJ VJ @@ -14014,7 +14165,7 @@ VJ VJ Fp wJ -wJ +Ao wJ wJ Fp @@ -14047,19 +14198,19 @@ Ox Ox Ox NT -wJ -VD -zp -zp -zp -fU -PW -wJ -Fp -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (69,1,1) = {" @@ -14139,61 +14290,61 @@ Fp Fp Fp Fp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -oE -oE -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -oE -oE -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -oE -oE -zp -Fp +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +NG +NG +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +NG +NG +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +NG +NG +XL +ov VJ VJ VJ @@ -14208,7 +14359,7 @@ VJ VJ Fp wJ -wJ +Ao wJ wJ Fp @@ -14241,19 +14392,19 @@ Ox Ox Ox NT -fU -VD -zp -zp -zp -VD -VD -VD -Fp -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (70,1,1) = {" @@ -14333,61 +14484,61 @@ zp zp zp zp -zp -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -zp -Fp +XL +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +XL +ov VJ VJ VJ @@ -14435,19 +14586,19 @@ Ox Ox Ox NT -PW -VD -zp -zp -zp -VD -VD -VD -Fp -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (71,1,1) = {" @@ -14527,61 +14678,61 @@ oE oE oE oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -zp -Fp +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +NG +XL +ov VJ VJ VJ @@ -14629,19 +14780,19 @@ Ox Ox Ox NT -PW -VD -zp -zp -zp -VD -VD -VD -Fp -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (72,1,1) = {" @@ -14721,61 +14872,61 @@ oE oE oE oE -oE -oE -oE -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -oE -oE -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -Fp +NG +NG +NG +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +NG +NG +XL +XL +XL +XL +XL +NG +NG +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +XL +ov VJ VJ VJ @@ -14823,19 +14974,19 @@ Ox Ox Ox NT -fU -VD -zp -zp -zp -VD -VD -VD -Fp -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (73,1,1) = {" @@ -14915,61 +15066,61 @@ oE oE oE oE -oE -oE -oE -zp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -zp -oE -oE -zp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp +NG +NG +NG +XL +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +XL +NG +NG +XL +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov VJ VJ VJ @@ -15017,19 +15168,19 @@ Ox Ox NT NT -wJ -VD -zp -zp -zp -fU -pZ -fU -Fp -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (74,1,1) = {" @@ -15139,21 +15290,21 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ Fp zp oE oE +qo +KG +oE +oE zp -Fp +Hb +XL +NG +NG +XL +ov VJ VJ VJ @@ -15211,19 +15362,19 @@ Ox NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (75,1,1) = {" @@ -15333,21 +15484,21 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ Fp zp oE +zp +oE oE zp -Fp +oE +zp +Hb +XL +NG +NG +XL +ov VJ VJ VJ @@ -15405,19 +15556,19 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (76,1,1) = {" @@ -15527,21 +15678,21 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ Fp zp oE oE +qo +KG +oE +oE zp -Fp +Hb +XL +NG +NG +XL +ov VJ VJ VJ @@ -15599,19 +15750,19 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (77,1,1) = {" @@ -15721,21 +15872,21 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +Fp +Fp Fp zp oE oE zp Fp +Fp +Fp +XL +NG +NG +XL +ov VJ VJ VJ @@ -15793,19 +15944,19 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (78,1,1) = {" @@ -15915,21 +16066,21 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ Fp zp oE oE +qo +KG +oE +oE zp -Fp +Hb +XL +NG +NG +XL +ov VJ VJ VJ @@ -15987,19 +16138,19 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (79,1,1) = {" @@ -16109,21 +16260,21 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ Fp zp oE +zp +oE oE zp -Fp +oE +zp +Hb +XL +NG +NG +XL +ov VJ VJ VJ @@ -16181,19 +16332,19 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (80,1,1) = {" @@ -16265,8 +16416,8 @@ Ox Ox Ox Ox -Ox -Ox +VJ +VJ Fp zp oE @@ -16303,21 +16454,23 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ Fp zp oE oE +qo +KG +oE +oE zp -Fp +Hb +XL +NG +NG +XL +ov +VJ +VJ VJ VJ VJ @@ -16364,10 +16517,6 @@ Ox Ox Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -16386,8 +16535,10 @@ Hj Hj Hj Hj -NT -NT +Hj +Hj +Hj +Hj NT "} (81,1,1) = {" @@ -16459,8 +16610,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ Xi zp oE @@ -16497,21 +16648,23 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +Fp +Fp Fp zp oE oE zp Fp +Fp +Fp +XL +NG +NG +XL +ov +VJ +VJ VJ VJ VJ @@ -16555,10 +16708,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -16580,8 +16729,10 @@ Hj Hj Hj Hj -NT -NT +Hj +Hj +Hj +Hj NT "} (82,1,1) = {" @@ -16653,8 +16804,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ Xi zp oE @@ -16691,21 +16842,23 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ Fp zp oE oE +qo +KG +oE +oE zp -Fp +Hb +XL +NG +NG +XL +ov +VJ +VJ VJ VJ VJ @@ -16749,10 +16902,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -16766,16 +16915,18 @@ NT NT NT Hj -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (83,1,1) = {" @@ -16847,8 +16998,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ Xi zp oE @@ -16885,21 +17036,23 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ Fp zp oE +zp +oE oE zp -Fp +oE +zp +Hb +XL +NG +NG +XL +ov +VJ +VJ VJ VJ VJ @@ -16943,10 +17096,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -16960,16 +17109,18 @@ NT NT NT Hj -DL -Rs -Rs -DL -Ox -Ox -Ox -Ox -Ox -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (84,1,1) = {" @@ -17041,8 +17192,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ Xi zp oE @@ -17079,21 +17230,23 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ Fp zp oE oE +qo +KG +oE +oE zp -Fp +Hb +XL +NG +NG +XL +ov +VJ +VJ VJ VJ VJ @@ -17137,10 +17290,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -17154,16 +17303,18 @@ NT NT NT Hj -DL -HN -HN -DL -Ox -Ox -Ox -Ox -Ox -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (85,1,1) = {" @@ -17235,8 +17386,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ Xi zp oE @@ -17273,21 +17424,23 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +Fp Fp zp -oE -oE +zp +zp +zp +zp zp Fp +Fp +XL +NG +NG +XL +ov +VJ +VJ VJ VJ VJ @@ -17331,10 +17484,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -17348,16 +17497,18 @@ NT NT NT Hj -Rs -HN -HN -Rs -Ox -Ox -Ox -Ox -Ox -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (86,1,1) = {" @@ -17429,8 +17580,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ Fp zp zp @@ -17467,21 +17618,23 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ Fp -zp -oE -oE -zp Fp +Fp +Fp +Fp +Fp +wQ +Fp +Fp +Fp +XL +NG +NG +XL +ov +VJ +VJ VJ VJ VJ @@ -17525,10 +17678,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -17542,16 +17691,18 @@ NT NT NT Hj -DL -HN -HN -DL -Ox -Ox -Ox -Ox -Ox -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (87,1,1) = {" @@ -17623,8 +17774,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ kd JQ JQ @@ -17662,20 +17813,22 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -Fp -zp -oE -oE -zp +wJ +wJ +wJ +wJ +wJ +wJ +tq +yN Fp +XL +NG +NG +XL +ov +VJ +VJ VJ VJ VJ @@ -17719,10 +17872,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -17736,16 +17885,18 @@ NT NT NT Hj -DL -HN -HN -DL -Ox -Ox -Ox -Ox -Ox -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (88,1,1) = {" @@ -17817,8 +17968,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ JQ Ox Ox @@ -17856,6 +18007,20 @@ VJ VJ VJ VJ +wJ +wJ +wJ +wJ +wJ +wJ +wJ +wJ +gN +XL +NG +NG +XL +ov VJ VJ VJ @@ -17863,29 +18028,17 @@ VJ VJ VJ VJ -VJ -Fp -zp -oE -oE -zp -Fp -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +jm +jm +jm +pZ +pZ +pZ +pZ +pZ +jm +jm +jm VJ VJ VJ @@ -17913,10 +18066,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -17930,16 +18079,18 @@ NT NT NT Hj -wJ -wJ -wJ -wJ -DL -DL -Rs -DL -DL -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (89,1,1) = {" @@ -18011,8 +18162,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ JQ Ox Ox @@ -18050,20 +18201,20 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -Fp -zp -oE -oE -zp +wJ +wJ +wJ +wJ +wJ +wJ +wJ +wJ Fp +XL +NG +NG +XL +ov VJ VJ VJ @@ -18071,15 +18222,17 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +jm +pZ +pZ +pZ +pZ +pZ +pZ +pZ +pZ +pZ +jm VJ VJ VJ @@ -18107,10 +18260,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -18124,16 +18273,18 @@ NT NT NT Hj -Hu -Hu -Hu -wJ -HN -HN -HN -HN -Rs -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (90,1,1) = {" @@ -18205,8 +18356,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ JQ Ox Ox @@ -18249,14 +18400,36 @@ VJ VJ VJ VJ -mZ -mZ -mZ -mZ -zp -oE -oE -zp +VO +VO +jS +VO +XL +NG +NG +XL +ov +VJ +VJ +VJ +VJ +VJ +VJ +VJ +jm +pZ +pZ +pZ +pZ +pZ +pZ +pZ +pZ +pZ +jm +Fp +Fp +Fp Fp VJ VJ @@ -18266,26 +18439,6 @@ VJ VJ VJ VJ -OM -OM -OM -OM -OM -OM -OM -OM -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ VJ VJ VJ @@ -18301,10 +18454,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -18318,16 +18467,18 @@ NT NT NT Hj -Hu -Hu -Hu -wJ -HN -HN -HN -HN -Rs -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (91,1,1) = {" @@ -18399,8 +18550,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ JQ Ox Ox @@ -18443,14 +18594,36 @@ VJ VJ VJ VJ -mZ +VO Hp hD -mZ -zp -oE -oE -zp +VO +XL +NG +NG +XL +ov +VJ +VJ +VJ +VJ +VJ +VJ +VJ +jm +pZ +pZ +pZ +jZ +Ox +FO +pZ +pZ +pZ +jm +wJ +wJ +wJ Fp VJ VJ @@ -18460,26 +18633,6 @@ VJ VJ VJ VJ -OM -OM -OM -OM -OM -OM -OM -OM -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ VJ VJ VJ @@ -18495,10 +18648,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -18512,16 +18661,18 @@ NT NT NT Hj -wJ -wJ -wJ -wJ -DL -DL -Rs -DL -DL -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (92,1,1) = {" @@ -18593,8 +18744,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ kd JQ JQ @@ -18637,14 +18788,36 @@ VJ VJ VJ VJ -mZ +VO au hD -ZA -zp -oE -oE -zp +Pm +XL +NG +NG +XL +ov +VJ +VJ +VJ +VJ +VJ +VJ +VJ +jm +pZ +pZ +OM +bE +mk +nW +OM +pZ +pZ +jm +wJ +wJ +wJ Fp VJ VJ @@ -18654,26 +18827,6 @@ VJ VJ VJ VJ -OM -OM -OM -OM -OM -OM -OM -OM -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ VJ VJ VJ @@ -18689,10 +18842,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -18706,16 +18855,18 @@ NT NT NT Hj -DL -HN -HN -DL -Ox -Ox -Ox -Ox -Ox -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (93,1,1) = {" @@ -18787,8 +18938,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ Fp zp zp @@ -18831,14 +18982,36 @@ VJ VJ VJ VJ -mZ +VO au hD -mZ -zp -oE -oE -zp +VO +XL +NG +NG +XL +ov +VJ +VJ +VJ +VJ +VJ +VJ +VJ +jm +pZ +pZ +OM +OM +OM +OM +OM +pZ +pZ +jm +wJ +wJ +wJ Fp VJ VJ @@ -18848,26 +19021,6 @@ VJ VJ VJ VJ -OM -OM -OM -OM -OM -OM -OM -OM -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ VJ VJ VJ @@ -18883,10 +19036,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -18900,16 +19049,18 @@ NT NT NT Hj -DL -HN -HN -DL -Ox -Ox -Ox -Ox -Ox -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (94,1,1) = {" @@ -18981,8 +19132,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ Xi zp oE @@ -19023,16 +19174,38 @@ VJ VJ VJ VJ -Fp -Fp -mZ -yX -mZ -mZ -zp -oE -oE -zp +KO +KO +VO +JX +VO +VO +XL +NG +NG +XL +ov +VJ +VJ +VJ +VJ +VJ +VJ +VJ +jm +pZ +pZ +OM +OM +OM +OM +OM +pZ +pZ +jm +wJ +wJ +wJ Fp VJ VJ @@ -19042,26 +19215,6 @@ VJ VJ VJ VJ -OM -OM -OM -OM -OM -OM -OM -OM -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ VJ VJ VJ @@ -19077,10 +19230,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -19094,16 +19243,18 @@ NT NT NT Hj -Rs -HN -HN -Rs -Ox -Ox -Ox -Ox -Ox -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (95,1,1) = {" @@ -19175,8 +19326,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ Xi zp oE @@ -19217,16 +19368,38 @@ VJ VJ VJ VJ -Fp +KO wJ wJ gA wJ -Fp -zp -oE -oE -zp +KO +XL +NG +NG +XL +ov +VJ +VJ +VJ +VJ +VJ +VJ +VJ +jm +pZ +pZ +OM +OM +OM +OM +OM +pZ +pZ +jm +wJ +wJ +wJ Fp VJ VJ @@ -19236,26 +19409,6 @@ VJ VJ VJ VJ -OM -OM -OM -OM -OM -OM -OM -OM -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ VJ VJ VJ @@ -19271,10 +19424,6 @@ VJ VJ Ox Ox -Ox -Ox -NT -NT NT NT NT @@ -19288,16 +19437,18 @@ NT NT NT Hj -DL -HN -HN -DL -Ox -Ox -Ox -Ox -Ox -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (96,1,1) = {" @@ -19369,8 +19520,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ Xi zp oE @@ -19411,18 +19562,17 @@ VJ VJ VJ VJ -Fp +KO wJ wJ wJ wJ -Fp -zp -oE -oE -zp -Fp -VJ +KO +XL +NG +NG +XL +ov VJ VJ VJ @@ -19430,18 +19580,21 @@ VJ VJ VJ VJ +jm +pZ +pZ OM OM OM OM OM -OM -OM -OM -VJ -VJ -VJ -VJ +pZ +pZ +kd +VR +VR +QR +kd VJ VJ VJ @@ -19464,10 +19617,6 @@ VJ VJ VJ Ox -Ox -Ox -NT -NT NT NT NT @@ -19482,16 +19631,18 @@ NT NT NT Hj -DL -Rs -Rs -DL -Ox -Ox -Ox -Ox -Ox -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (97,1,1) = {" @@ -19563,8 +19714,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ Xi zp oE @@ -19605,18 +19756,17 @@ VJ VJ VJ VJ -Fp +KO wJ wJ wJ wJ -Fp -zp -oE -oE -zp -Fp -VJ +KO +XL +NG +NG +XL +ov VJ VJ VJ @@ -19624,18 +19774,21 @@ VJ VJ VJ VJ +jm +pZ +pZ OM OM OM OM OM -OM -OM -OM -VJ -VJ -VJ -VJ +pZ +pZ +fT +Ox +Ox +Ox +JQ VJ VJ VJ @@ -19658,10 +19811,6 @@ VJ VJ VJ Ox -Ox -Ox -NT -NT NT NT NT @@ -19684,8 +19833,10 @@ Hj Hj Hj Hj -NT -NT +Hj +Hj +Hj +Hj NT "} (98,1,1) = {" @@ -19757,8 +19908,8 @@ NT NT NT Ox -Ox -Ox +VJ +VJ Xi zp zp @@ -19793,24 +19944,23 @@ VJ VJ VJ VJ -Fp -Fp -TB -TB -TB -Fp -Fp -Fp -wJ -Fp -Fp -Fp -Fp -oE -oE -Fp -Fp -VJ +VJ +VJ +VJ +VJ +VJ +VJ +KO +KO +lB +KO +KO +KO +KO +NG +NG +ov +ov VJ VJ VJ @@ -19818,18 +19968,21 @@ VJ VJ VJ VJ +jm +pZ +pZ OM OM OM OM OM -OM -OM -OM -VJ -VJ -VJ -VJ +pZ +pZ +fT +Ox +Ox +Ox +JQ VJ VJ VJ @@ -19852,23 +20005,6 @@ VJ VJ VJ Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT Hj Hj Hj @@ -19878,8 +20014,23 @@ Hj Hj Hj Hj -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (99,1,1) = {" @@ -19951,117 +20102,102 @@ NT NT NT NT +VJ +VJ +Fp +Xi +Xi +Xi +Xi +Xi +Fp +Fp +Fp +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +Ti +Ti +Ti +Ti +Ti +fD +KO +NG +NG +ov +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +jm +pZ +pZ +pZ +pZ +pZ +pZ +pZ +pZ +pZ +fT Ox Ox -Fp -Xi -Xi -Xi -Xi -Xi -Fp -Fp -Fp -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -Fp -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Fp -oE -oE -Fp -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +JQ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ NT Hj Hj @@ -20072,8 +20208,23 @@ Hj Hj Hj Hj -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (100,1,1) = {" @@ -20181,37 +20332,22 @@ VJ VJ VJ VJ -TB -Ti -Hu -Hu -Hu -Hu +VJ +VJ +VJ +VJ +VJ +VJ Hu Hu Hu Hu Ym Ym -Fp -oE -oE -Fp -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +KO +NG +NG +ov VJ VJ VJ @@ -20220,6 +20356,21 @@ VJ VJ VJ VJ +jm +jm +jm +jm +jm +jm +jm +jm +jm +jm +kd +kY +kY +JQ +kd VJ VJ VJ @@ -20242,21 +20393,6 @@ Ox Ox Ox NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT Hj Hj Hj @@ -20266,8 +20402,23 @@ Hj Hj Hj Hj -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (101,1,1) = {" @@ -20375,22 +20526,22 @@ VJ VJ VJ VJ -TB -Ti -Hu -Hu -Hu -Hu +VJ +VJ +VJ +VJ +VJ +VJ Hu Hu Hu Hu Nu Nu -Fp -oE -oE -Fp +KO +NG +NG +ov VJ VJ VJ @@ -20436,32 +20587,32 @@ Ox Ox Ox NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (102,1,1) = {" @@ -20559,32 +20710,32 @@ VJ VJ VJ VJ -wJ -sJ -Ht -Zt -my -Ox -wJ VJ VJ VJ -TB +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ Ti Hu Hu -Hu -Hu Ti Ti -Ti -Ti -Ti -Ti -Fp -oE -oE -Fp +fD +KO +NG +NG +ov VJ VJ VJ @@ -20630,32 +20781,32 @@ Ox Ox Ox NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (103,1,1) = {" @@ -20753,33 +20904,9 @@ VJ VJ VJ VJ -wJ -AL -pG -Zt -my -Ox -wJ VJ VJ VJ -Fp -Ti -Hu -Hu -Hu -Hu -Ti -Fp -Xi -Xi -Xi -Fp -Fp -oE -oE -Fp -Fp VJ VJ VJ @@ -20792,6 +20919,30 @@ VJ VJ VJ VJ +KO +KO +xY +xY +KO +KO +KO +KO +NG +NG +ov +ov +ov +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ VJ VJ VJ @@ -20824,32 +20975,32 @@ Ox Ox Ox NT -NT -NT -NT -NT -NT -NT -NT -NT -VD -VD -VD -NT -fU -fU -fU -fU -fU -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (104,1,1) = {" @@ -20947,34 +21098,34 @@ VJ VJ VJ VJ -wJ -Ee -Fp -Yd -Fp -Fp -Fp VJ VJ VJ -Xi -Ti +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +KO +fD Hu Hu -wN -wN -Qd -Xi -VJ -VJ -VJ -VJ -Fp -oE -oE -Ox -Ox -VJ +fD +KO +Wy +XL +NG +NG +pA +iE +ov VJ VJ VJ @@ -21018,32 +21169,32 @@ Ox Ox NT NT -NT -NT -NT -NT -NT -NT -NT -NT -VD -VD -pZ -NT -fU -VD -VD -VD -fU -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (105,1,1) = {" @@ -21141,34 +21292,34 @@ VJ VJ VJ VJ -wJ -Rj -LA -uj -LA -Xt -Fp VJ VJ VJ -Xi -hk +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ Hu Hu -eZ -cC -Qd -Xi -VJ -VJ -VJ -VJ -Fp -oE -oE -Ox -Ox -VJ +Hu +Hu +Hu +Hu +Hu +Hu +Pr +NG +NG +NG +NG +pA +iE +ov VJ VJ VJ @@ -21212,32 +21363,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -VD -VD -pZ -NT -fU -VD -VD -VD -fU -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (106,1,1) = {" @@ -21335,34 +21486,34 @@ VJ VJ VJ VJ -wJ -hk +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ Hu Hu Hu -rl -Fp -VJ -VJ -VJ -Xi -AQ -vN Hu Hu Hu -Ti -Xi -VJ -VJ -VJ -VJ -Fp -oE -oE -oE -oE -VJ +Hu +Hu +Pr +NG +NG +NG +NG +XL +XL +ov VJ VJ VJ @@ -21406,32 +21557,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -fU -VD -VD -VD -fU -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (107,1,1) = {" @@ -21529,33 +21680,10 @@ VJ VJ VJ VJ -wJ -AQ -vN -cO -Ys -Bf -Fp -VJ -VJ -VJ -Fp -Qd -Ti -wN -wN -Ti -Ti -Fp VJ VJ VJ VJ -Fp -oE -oE -oE -oE VJ VJ VJ @@ -21567,6 +21695,29 @@ VJ VJ VJ VJ +KO +fD +Hu +Hu +fD +KO +Wy +XL +NG +NG +XL +XL +ov +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ VJ VJ VJ @@ -21608,24 +21759,24 @@ Hj Hj Hj Hj -NT -NT -NT -NT -fU -VD -VD -VD -fU -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (108,1,1) = {" @@ -21723,29 +21874,6 @@ VJ VJ VJ VJ -wJ -ok -Hu -wN -Hu -Qd -Fp -VJ -VJ -VJ -Fp -Fp -Qd -Qd -Ha -Qd -Fp -Fp -VJ -VJ -VJ -VJ -Fp VJ VJ VJ @@ -21761,6 +21889,29 @@ VJ VJ VJ VJ +KO +KO +xY +xY +KO +KO +KO +KO +NG +NG +XL +XL +ov +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ VJ VJ VJ @@ -21802,24 +21953,24 @@ Hj Hj Hj Hj -NT -NT -NT -NT -fU -VD -VD -VD -fU -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (109,1,1) = {" @@ -21869,35 +22020,35 @@ NT NT NT NT -ws -ws -fU -wJ -wJ -wJ -wJ -fU -wJ -wJ -wJ -wJ -fU -Ox -fU -wJ -wJ -wJ -wJ -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT Ox @@ -21917,34 +22068,34 @@ VJ VJ VJ VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +KO +Hu +Hu +KO wJ -Fp -EF -Oe -VK -Fp -Fp -VJ -VJ -VJ -VJ -Fp -Xi -Xi -Xi -Xi -Fp -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +wJ +KO +NG +NG +XL +XL +ov VJ VJ VJ @@ -21996,24 +22147,24 @@ Hj Hj Hj Hj -NT -NT -NT -NT -fU -VD -VD -VD -fU -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (110,1,1) = {" @@ -22063,35 +22214,35 @@ NT NT NT NT -ws -ws -fU -wJ -wJ -wJ -wJ -fU -wJ -wJ -wJ -wJ -fU -fU -fU -fU -wJ -wJ -wJ -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT Ox @@ -22111,34 +22262,34 @@ VJ VJ VJ VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +KO +Hu +Hu +KO wJ -Fp -Fp -Fp -Fp -Fp wJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +KO +NG +NG +NG +NG +ov VJ VJ VJ @@ -22190,24 +22341,24 @@ Hj Hj Hj Hj -NT -NT -NT -NT -fU -NT -NT -NT -fU -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (111,1,1) = {" @@ -22257,35 +22408,35 @@ NT NT NT NT -fU -fU -fU -wJ -VD -VD -VD -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -22322,17 +22473,17 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +Hu +Hu +KO +wJ +wJ +KO +NG +NG +NG +NG +ov VJ VJ VJ @@ -22384,24 +22535,24 @@ Hj Hj Hj Hj -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (112,1,1) = {" @@ -22451,35 +22602,35 @@ NT NT NT NT -wJ -wJ -wJ -VD -wJ -wJ -wJ -fU -fU -fU -fU -fU -fU -fU -wJ -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -22518,15 +22669,15 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +KO +wJ +wJ +KO +KO +KO +KO +KO +KO VJ VJ VJ @@ -22570,32 +22721,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (113,1,1) = {" @@ -22645,35 +22796,35 @@ NT NT NT NT -wJ -wJ -wJ -VD -VD -VD -VD -fU -pZ -pZ -pZ -pZ -pZ -fU -wJ -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -22712,10 +22863,10 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ +KO +KO +KO +KO VJ VJ VJ @@ -22764,32 +22915,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (114,1,1) = {" @@ -22839,35 +22990,35 @@ NT NT NT NT -fU -wJ -wJ -wJ -VD -wJ -wJ -fU -pZ -pZ -fU -pZ -pZ -fU -wJ -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -22903,6 +23054,8 @@ VJ VJ VJ VJ +OM +OM VJ VJ VJ @@ -22912,10 +23065,8 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ +OM +OM VJ VJ VJ @@ -22958,32 +23109,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (115,1,1) = {" @@ -23033,35 +23184,35 @@ NT NT NT NT -fU -wJ -wJ -wJ -wJ -wJ -wJ -fU -pZ -pZ -pZ -pZ -pZ -fU -wJ -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -23097,6 +23248,8 @@ VJ VJ VJ VJ +OM +OM VJ VJ VJ @@ -23106,10 +23259,8 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ +OM +OM VJ VJ VJ @@ -23152,32 +23303,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (116,1,1) = {" @@ -23227,35 +23378,35 @@ NT NT NT NT -fU -fU -fU -fU -fU -fU -fU -fU -pZ -fU -fU -fU -pZ -fU -wJ -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -23291,19 +23442,19 @@ VJ VJ VJ VJ +OM +OM VJ VJ +KO +KO +KO +KO +KO VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +OM +OM VJ VJ VJ @@ -23346,32 +23497,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (117,1,1) = {" @@ -23421,35 +23572,35 @@ NT NT NT NT -ws -ws -ws -ws -ws -ws -ws -fU -pZ -pZ -pZ -pZ -pZ -fU -wJ -fU -fU -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -23485,6 +23636,8 @@ VJ VJ VJ VJ +Hu +Hu VJ VJ VJ @@ -23494,10 +23647,8 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ +Hu +Hu VJ VJ VJ @@ -23540,32 +23691,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (118,1,1) = {" @@ -23615,35 +23766,35 @@ NT NT NT NT -ws -ws -ws -ws -ws -ws -ws -fU -pZ -pZ -pZ -pZ -pZ -fU -wJ -wJ -fU -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -23679,6 +23830,8 @@ VJ VJ VJ VJ +Hu +Hu VJ VJ VJ @@ -23688,10 +23841,8 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ +Hu +Hu VJ VJ VJ @@ -23734,32 +23885,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (119,1,1) = {" @@ -23809,35 +23960,35 @@ NT NT NT NT -fU -ws -ws -ws -ws -ws -ws -fU -fU -fU -pZ -fU -fU -fU -wJ -wJ -fU -wJ -Fp -wJ -Fp -Fp -Fp -Fp -Fp -Fp -wJ -Fp -wJ +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -23873,19 +24024,19 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +Hu +Hu +OM +OM +OM +OM +OM +OM +OM +OM +OM +Hu +Hu VJ VJ VJ @@ -23928,32 +24079,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (120,1,1) = {" @@ -24003,35 +24154,35 @@ NT NT NT NT -ws -ws -ws -ws -ws -ws -ws -fU -pZ -pZ -pZ -pZ -pZ -fU -wJ -wJ -wJ -wJ -wJ -wJ -wJ -fU -wJ -wJ -wJ -wJ -wJ -wJ -wJ +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -24067,19 +24218,19 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +Hu +Hu +OM +OM +OM +OM +OM +OM +OM +OM +OM +Hu +Hu VJ VJ VJ @@ -24122,32 +24273,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (121,1,1) = {" @@ -24197,35 +24348,35 @@ NT NT NT NT -fU -ws -ws -ws -ws -ws -ws -fU -fU -fU -pZ -fU -fU -fU -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -24261,19 +24412,19 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +Hu +Hu +OM +OM +Hu +Hu +Hu +Hu +Hu +OM +OM +Hu +Hu VJ VJ VJ @@ -24316,32 +24467,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (122,1,1) = {" @@ -24391,35 +24542,35 @@ NT NT NT NT -fU -rd -rd -rd -rd -ws -ws -fU -pZ -pZ -pZ -pZ -pZ -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -24455,19 +24606,19 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu VJ VJ VJ @@ -24510,32 +24661,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (123,1,1) = {" @@ -24585,35 +24736,35 @@ NT NT NT NT -fU -rd -rd -rd -rd -ws -ws -fU -fU -fU -pZ -fU -fU -fU -ws -ws -ws -ws -fU -ws -ws -ws -ws -fU -ws -ws -ws -ws -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -24649,19 +24800,19 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu VJ VJ VJ @@ -24704,32 +24855,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (124,1,1) = {" @@ -24779,35 +24930,35 @@ NT NT NT NT -fU -rd -rd -rd -rd -ws -ws -fU -pZ -pZ -pZ -pZ -pZ -fU -ws -TF -TF -ws -fU -ws -TF -TF -ws -fU -ws -TF -TF -ws -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -24843,19 +24994,19 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu VJ VJ VJ @@ -24898,32 +25049,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (125,1,1) = {" @@ -24973,35 +25124,35 @@ NT NT NT NT -fU -rd -rd -rd -rd -ws -ws -VD -pZ -pZ -pZ -pZ -pZ -fU -ws -TF -TF -ws -fU -ws -TF -TF -ws -fU -ws -TF -TF -ws -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -25037,19 +25188,19 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Hu VJ VJ VJ @@ -25092,32 +25243,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (126,1,1) = {" @@ -25167,35 +25318,35 @@ NT NT NT NT -fU -fU -fU -fU -fU -ws -ws -fU -pZ -pZ -pZ -pZ -pZ -fU -ws -ws -ws -ws -fU -ws -ws -ws -ws -fU -ws -ws -ws -ws -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -25233,15 +25384,15 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +OM +OM +Hu +Hu +Hu +Hu +Hu +OM +OM VJ VJ VJ @@ -25286,32 +25437,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (127,1,1) = {" @@ -25361,35 +25512,35 @@ NT NT NT NT -wJ -ws -Sr -Sr -ws -ws -ws -fU -fU -fU -fU -VD -fU -fU -fU -fU -ws -fU -fU -fU -ws -fU -fU -fU -fU -ws -fU -fU -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -25427,15 +25578,15 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +OM +OM +OM +OM +OM +OM +OM +OM +OM VJ VJ VJ @@ -25480,32 +25631,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (128,1,1) = {" @@ -25555,35 +25706,35 @@ NT NT NT NT -wJ -ws -Sr -Sr -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -wJ +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -25621,15 +25772,15 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +OM +OM +OM +OM +OM +OM +OM +OM +OM VJ VJ VJ @@ -25674,32 +25825,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (129,1,1) = {" @@ -25749,82 +25900,82 @@ NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT +NT +NT +NT +NT +NT +NT +NT +Ox +Ox +Ox +Ox +NT +NT +NT +NT +NT +NT +NT +NT +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +VJ +VJ +VJ +VJ +VJ +VJ +KO wJ -ws -Sr -Sr -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -fU -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +wJ +wJ +Hu +Hu +Hu +wJ +wJ +wJ +KO VJ VJ VJ @@ -25868,32 +26019,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (130,1,1) = {" @@ -25943,35 +26094,35 @@ NT NT NT NT -wJ -ws -Sr -Sr -ws -ws -ws -fU -fU -fU -fU -fU -fU -fU -fU -ws -fU -fU -fU -fU -fU -ws -fU -fU -fU -ws -fU -fU -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -26004,91 +26155,91 @@ Ox Ox VJ VJ +KO VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -VD -VD -VD -VD -VD -VD -fU -oE -PW -oE -oE -fU +KO +OM +OM +OM Hu Hu -fU +Hu +OM +OM +OM +KO +VJ +VJ +VJ +VJ +VJ +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox NT NT NT NT NT +NT +NT +NT +NT +Ox +Ox +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT "} (131,1,1) = {" NT @@ -26137,35 +26288,35 @@ NT NT NT NT -fU -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -fU -ws -ws -ws -ws -fU -ws -ws -ws -ws -fU -ws -ws -ws -ws -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -26198,91 +26349,91 @@ Ox Ox VJ VJ +KO VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -wJ -wJ -wJ -NT -NT -NT -VD -VD -VD -VD -VD -VD -fU -oE -oE -oE -oE +KO +OM +OM +OM Hu Hu Hu -fU +OM +OM +OM +KO +VJ +VJ +VJ +VJ +VJ +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox NT NT NT NT NT +NT +NT +NT +NT +Ox +Ox +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT "} (132,1,1) = {" NT @@ -26331,35 +26482,35 @@ NT NT NT NT -ws -ws -ws -ws -ws -ws -ws -fU -ws -TF -TF -TF -ws -fU -ws -sT -sT -ws -fU -ws -sT -sT -ws -fU -ws -sT -sT -ws -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -26392,91 +26543,91 @@ Ox Ox VJ VJ +KO VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -wJ -NT -NT -NT -wJ -NT -NT -VD -VD -VD -VD -VD -VD -fU -oE -oE -oE -oE -fU +KO +OM +OM +OM Hu Hu -fU +Hu +OM +OM +OM +KO +VJ +VJ +VJ +VJ +VJ +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox NT NT NT NT NT +NT +NT +NT +NT +NT +Ox +Ox +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT "} (133,1,1) = {" NT @@ -26525,35 +26676,35 @@ NT NT NT NT -ws -ws -ws -ws -ws -ws -ws -fU -ws -TF -TF -TF -ws -fU -ws -sT -sT -ws -fU -ws -sT -sT -ws -fU -ws -sT -sT -ws -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -26586,91 +26737,91 @@ Ox NT Ox Ox +KO VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -Ox -Ox -NT -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -wJ -NT -wJ -NT -wJ -NT -NT -fU -fU -fU -wJ -oE -wJ -fU -oE -oE -oE -fU -fU +KO +jR +jR +jR Hu -fU -fU +Hu +Hu +jR +jR +jR +KO +VJ +VJ +VJ +VJ +Ox +Ox +NT +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox NT NT NT NT NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT "} (134,1,1) = {" NT @@ -26719,35 +26870,35 @@ NT NT NT NT -fU -fU -fU -fU -fU -ws -ws -fU -ws -ws -ws -ws -ws -fU -ws -sT -sT -ws -fU -ws -sT -sT -ws -fU -ws -sT -sT -ws -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -26784,17 +26935,17 @@ VJ VJ VJ VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ -VJ +KO +Ti +Ti +Ti +WT +Hu +Hu +Ti +Ti +Ti +KO VJ VJ VJ @@ -26838,32 +26989,32 @@ NT NT NT NT -wJ -NT -wJ -NT -wJ -NT -NT -wJ -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -wJ -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (135,1,1) = {" @@ -26913,35 +27064,35 @@ NT NT NT NT -fU -ws -ws -ws -fU -ws -ws -fU -fU -fU -fU -fU -fU -fU -ws -ws -ws -ws -fU -ws -ws -ws -ws -fU -ws -ws -ws -ws -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -26978,17 +27129,17 @@ Ox Ox Ox Ox -pG -Zt -my -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox +Xi +Ti +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Ti +Xi Ox Ox Ox @@ -27032,32 +27183,32 @@ NT NT NT NT -NT -wJ -wJ -wJ -NT -NT -NT -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -wJ -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (136,1,1) = {" @@ -27107,35 +27258,35 @@ NT NT NT NT -fU -ws -hJ -ws -fU -ws -ws -fU -ws -ws -ws -ws -ws -fU -fU -fU -pZ -fU -fU -fU -pZ -fU -fU -fU -fU -fU -pZ -fU -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -27172,17 +27323,17 @@ Ox Ox Ox Ox -pG -Zt -my -Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox +Xi +Ti +Hu +Hu +Hu +Hu +Hu +Hu +Hu +Ti +Xi Ox Ox Ox @@ -27226,32 +27377,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -wJ -oE -oE -oE -oE -oE -PW -PW -PW -oE -oE -oE -oE -oE -wJ -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (137,1,1) = {" @@ -27301,35 +27452,35 @@ NT NT NT NT -fU -ws -hJ -ws -fU -ws -ws -fU -ws -TF -TF -TF -ws -fU -pZ -pZ -pZ -pZ -fU -pZ -pZ -pZ -pZ -fU -pZ -pZ -pZ -pZ -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -27366,17 +27517,17 @@ Ox Ox Ox Ox -pG -Zt -my -Ox -Ox -Ox -Ox -Ox -Ox +Xi +Ti +Hu +Hu +OM +OM +OM +Hu Ox Ox +Xi Ox Ox Ox @@ -27420,32 +27571,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -wJ -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (138,1,1) = {" @@ -27495,35 +27646,35 @@ NT NT NT NT -fU -ws -hJ -ws -ws -ws -ws -fU -ws -TF -TF -TF -ws -fU -pZ -pZ -pZ -VD -fU -pZ -pZ -pZ -VD -fU -pZ -pZ -pZ -VD -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -27559,18 +27710,18 @@ NT Ox Ox Ox -Lr -pG -Zt -sX -uS -Ox -Ox -Ox -Ox -Ox +Ox +KO +Ti +Hu +Hu +OM +OM +OM +Hu Ox Ox +KO Ox Ox Ox @@ -27614,32 +27765,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -fU -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -oE -wJ -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (139,1,1) = {" @@ -27689,35 +27840,35 @@ NT NT NT NT -fU -ws -ws -ws -fU -ws -ws -fU -ws -ws -ws -ws -ws -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -27752,20 +27903,20 @@ NT NT Ox Ox -pG +Ox VJ +WW +Ti +Ti +Ti +OM +OM +OM +Ti +Ti +Ti +WW VJ -VJ -VJ -VJ -my -Ox -Ox -Ox -Ox -Ox -Ox -Ox Ox Ox Ox @@ -27808,32 +27959,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -fU -oE -oE -oE -fU -fU -oE -oE -oE -fU -fU -wJ -oE -wJ -fU -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (140,1,1) = {" @@ -27883,35 +28034,35 @@ NT NT NT NT -fU -fU -fU -fU -fU -ws -ws -fU -fU -fU -ws -fU -fU -fU -VD -VD -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -27946,20 +28097,20 @@ NT NT Ox Ox -pG +Ox VJ +WW +WW +Ti +Ti +Ti +Ti +Ti +Ti +Ti +WW +WW VJ -VJ -VJ -VJ -my -Ox -Ox -Ox -Ox -Ox -Ox -Ox Ox Ox Ox @@ -28002,32 +28153,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -fU -oE -oE -oE -fU -oE -oE -oE -oE -oE -fU -oE -oE -oE -wJ -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (141,1,1) = {" @@ -28077,35 +28228,35 @@ NT NT NT NT -fU -ws -ws -ws -fU -ws -ws -ws -ws -ws -ws -ws -ws -VD -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ -wJ +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -28140,20 +28291,20 @@ NT NT Ox Ox -pG +Ox VJ VJ +WW +ih +KO +ih +ih +ih +KO +ih +WW VJ VJ -VJ -my -Ox -Ox -Ox -Ox -Ox -Ox -Ox Ox Ox Ox @@ -28196,32 +28347,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -fU -wJ -oE -fU -fU -oE -oE -oE -oE -oE -fU -oE -oE -oE -wJ -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (142,1,1) = {" @@ -28271,35 +28422,35 @@ NT NT NT NT -fU -ws -hJ -ws -ws -ws -ws -ws -ws -ws -ws -ws -ws -fU -wJ -wJ -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -28334,20 +28485,20 @@ NT NT Ox Ox -pG +Ox +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ VJ VJ VJ VJ VJ -my -Ox -Ox -Ox -Ox -Ox -Ox -Ox Ox Ox Ox @@ -28390,32 +28541,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -VD -VD -VD -VD -oE -AF -AF -AF -AF -AF -fU -oE -oE -oE -wJ -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (143,1,1) = {" @@ -28465,23 +28616,35 @@ NT NT NT NT -fU -ws -hJ -ws -fU -ws -ws -fU -fU -fU -ws -fU -fU -fU -fU -wJ -Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -28516,32 +28679,20 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -pG +Ox +ns VJ VJ VJ VJ VJ -my -Ox -Ox -Ox -Ox -Ox -Ox -Ox +VJ +VJ +VJ +VJ +VJ +VJ +ns Ox NT NT @@ -28584,32 +28735,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -VD -VD -VD -VD -oE -AF -AF -AF -AF -AF -fU -oE -oE -oE -wJ -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (144,1,1) = {" @@ -28659,35 +28810,35 @@ NT NT NT NT -fU -ws -hJ -ws -fU -ws -ws -fU -ws -ws -ws -ws -ws -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -28723,17 +28874,17 @@ NT NT NT Ox -nk -nk -nk -nk -nk -Ox -Ox -Ox -Ox Ox Ox +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ Ox Ox Ox @@ -28778,32 +28929,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -VD -VD -VD -VD -oE -AF -AF -AF -AF -AF -fU -PW -PW -oE -wJ -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (145,1,1) = {" @@ -28853,35 +29004,35 @@ NT NT NT NT -fU -ws -ws -ws -fU -ws -ws -fU -ws -ws -TF -TF -ws -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -28920,13 +29071,13 @@ Ox Ox Ox Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox +VJ +VJ +VJ +VJ +VJ +VJ +VJ Ox Ox Ox @@ -28972,32 +29123,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -fU -VD -VD -VD -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -fU -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (146,1,1) = {" @@ -29047,35 +29198,35 @@ NT NT NT NT -fU -fU -fU -fU -fU -Ti -fU -fU -fU -ws -TF -TF -ws -fU -wJ -wJ -wJ -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -29114,13 +29265,13 @@ Ox Ox Ox Ox -Ox -Ox -Ox -Ox -Ox -Ox -Ox +VJ +VJ +VJ +VJ +VJ +VJ +VJ Ox Ox Ox @@ -29166,32 +29317,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (147,1,1) = {" @@ -29241,35 +29392,35 @@ NT NT NT NT -fU -Hu -Hu -Hu -Hu -Hu -Hu -Hu -fU -ws -ws -ws -ws -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -29308,13 +29459,13 @@ NT NT Ox Ox +ns +VJ Ox Ox Ox -Ox -Ox -Ox -Ox +VJ +ns Ox Ox NT @@ -29360,32 +29511,32 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT "} (148,1,1) = {" @@ -29435,35 +29586,35 @@ NT NT NT NT -fU -Hu -Hu -Hu -Hu -Hu -Hu -Hu -fU -fU -fU -fU -fU -fU -wJ -wJ -wJ -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -29629,35 +29780,35 @@ NT NT NT NT -fU -Hu -Hu -Hu -Hu -Hu -Hu -Hu -fU -wJ -wJ -wJ -wJ -wJ -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -29823,35 +29974,35 @@ NT NT NT NT -wJ -Ti -Ti -Hu -Hu -Hu -Hu -Hu -fU -wJ -wJ -wJ -wJ -wJ -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -30017,66 +30168,66 @@ NT NT NT NT -wJ -Ti -Ti -Hu -Hu -Hu -Hu -Hu -fU -wJ -wJ -Fp -Fp -Fp -Fp -Fp -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -30211,66 +30362,66 @@ NT NT NT NT -fU -Hu -Hu -Hu -Hu -Hu -Hu -Hu -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -30405,66 +30556,66 @@ NT NT NT NT -fU -Hu -Hu -Hu -fU -fU -fU -fU -fU -wJ -wJ -wJ -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -30599,66 +30750,66 @@ NT NT NT NT -Hu -Hu -Hu -Hu -Hu -wJ -wJ -wJ -wJ -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -30793,66 +30944,66 @@ NT NT NT NT -Hu -Hu -Hu -Hu -fU -VD -wJ -fU -wJ -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -30987,66 +31138,66 @@ NT NT NT NT -fU -Ti -Ti -Hu -fU -VD -wJ -Fp -Fp -Fp -Fp -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -31181,66 +31332,66 @@ NT NT NT NT -fU -Ti -Ti -Hu -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -31375,66 +31526,66 @@ NT NT NT NT -fU -Ti -Ti -Hu -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -31569,66 +31720,66 @@ NT NT NT NT -fU -Ti -Ti -Hu -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -31763,66 +31914,66 @@ NT NT NT NT -fU -Ti -Ti -Hu -fU -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -31957,66 +32108,66 @@ NT NT NT NT -fU -fU -fU -fU -fU -wJ -wJ +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +NT +NT +NT +NT +Hj +Hj +Hj +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Fp +TB +TB +TB +Fp +Fp +Fp +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -32151,66 +32302,66 @@ NT NT NT NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +Fp +Ti +Ti +Ti +Ti +Ti +Ti +Ti +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -32378,33 +32529,33 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +TB +Ti +Hu +Hu +Hu +Hu +Hu +Hu +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -32572,33 +32723,33 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +TB +Ti +Hu +Hu +Hu +Hu +Hu +Hu +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -32766,65 +32917,65 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +wJ +sJ +Ht +Zt +my +Ox +wJ +VJ +VJ +VJ +TB +Ti +Hu +Hu +Hu +Hu +Ti +Ti +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -32960,65 +33111,65 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +wJ +AL +pG +Zt +my +Ox +wJ +VJ +VJ +VJ +Fp +Ti +Hu +Hu +Hu +Hu +Ti +Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -33154,65 +33305,65 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +wJ +Ee +Fp +Yd +Fp +Fp +Fp +VJ +VJ +VJ +Xi +Ti +Hu +Hu +wN +wN +Qd +Xi +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -33348,65 +33499,65 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +wJ +Rj +LA +uj +LA +Xt Fp -wJ -wJ -Fp -wJ -wJ -Fp -wJ -Fp -Fp -wJ -wJ -wJ -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +VJ +VJ +VJ +Xi +hk +Hu +Hu +eZ +cC +Qd +Xi +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -33542,65 +33693,65 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +wJ +hk +Hu +Hu +Hu +rl Fp -PW -PW -PW -PW -PW -PW -PW -PW -fU -sT -sT -sT -Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +VJ +VJ +VJ +Xi +AQ +vN +Hu +Hu +Hu +Ti +Xi +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -33736,65 +33887,65 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +wJ +AQ +vN +cO +Ys +Bf Fp -PW -PW -PW -PW -PW -PW -PW -PW -fU -sT -sT -sT +VJ +VJ +VJ Fp -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Qd +Ti +wN +wN +Ti +Ti +Fp +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -33933,62 +34084,62 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -Fp -Fp -Fp -Fp -Fp -Fp -Fp -PW -PW -PW -PW -PW -PW -PW -PW -fU -sT -sT -sT -Fp -wJ wJ +ok +Hu +wN +Hu +Qd +Fp +VJ +VJ +VJ Fp Fp +Qd +Qd +Ha +Qd Fp Fp -wJ -wJ -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -34127,62 +34278,62 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +wJ Fp -wJ -wJ -fU -sT -sT -PW -PW -PW -PW -PW -PW -PW -PW -PW -PW -ws -ws -ws -wJ -ws -ws -ws -ws -ws -fU -VD -VD +EF +Oe +VK Fp -NT -NT -NT +Fp +VJ +VJ +VJ +VJ +Fp +Xi +Xi +Xi +Xi +Fp +VJ +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -34321,62 +34472,62 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +wJ +Fp +Fp +Fp +Fp Fp wJ -wJ -fU -sT -sT -Fp -PW -PW -PW -PW -PW -PW -PW -PW -PW -ws -ws -ws -fU -ws -ws -ws -ws -ws -fU -VD -VD -Fp -NT -NT -NT +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -34532,45 +34683,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -Fp -wJ -wJ -fU -sT -sT -ws -sT -sT -sT -sT -sT -sT -PW -PW -PW -ws -ws -ws -fU -ws -ws -ws -ws -ws -fU -VD -VD -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -34726,45 +34877,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -Fp -wJ -wJ -fU -sT -sT -ws -ws -ws -ws -ws -ws -ws -PW -PW -PW -ws -ws -ws -fU -Nl -ws -ws -ws -ws -fU -VD -VD -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -34920,45 +35071,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -Fp -Fp -wJ -wJ -Fp -sT -sT -ws -sT -sT -sT -sT -sT -sT -PW -PW -PW -sT -sT -sT -fU -fU -fU -fU -fU -ws -fU -VD -VD -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -35114,45 +35265,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -PW -PW -PW -PW -PW -ws -ws -ws -sT -sT -sT -sT -sT -sT -PW -PW -PW -sT -sT -sT -fU -VD -VD -VD -fU -VD -VD -VD -VD -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -35308,45 +35459,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -PW -PW -PW -PW -PW -ws -ws -ws -sT -sT -sT -sT -sT -sT -PW -PW -PW -ws -ws -ws -VD -VD -VD -VD -VD -VD -VD -VD -VD -wJ -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -35502,45 +35653,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -Fp -Fp -wJ -fU -fU -sT -sT -ws -ws -ws -ws -ws -ws -ws -PW -PW -PW -ws -ws -ws -fU -VD -VD -VD -fU -VD -VD -VD -VD -wJ -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -35696,45 +35847,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -wJ -wJ -VD -fU -sT -sT -ws -ws -ws -ws -ws -ws -ws -PW -PW -PW -sT -sT -fU -fU -fU -fU -fU -fU -VD -VD -VD -VD -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -35890,45 +36041,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -Fp -wJ -VD -fU -sT -sT -ws -ws -ws -ws -ws -ws -ws -PW -PW -PW -sT -sT -fU -pZ -pZ -pZ -fU -fU -fU -fU -VD -VD -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -36084,45 +36235,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -Fp -wJ -wJ -fU -ws -ws -ws -ws -ws -ws -ws -ws -ws -PW -PW -PW -PW -PW -pZ -pZ -pZ -pZ -pZ -pZ -pZ -fU -VD -VD -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -36278,45 +36429,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -wJ -wJ -wJ -fU -fU -PW -PW -PW -PW -PW -PW -PW -fU -zp -wJ -zp -fU -fU -fU -pZ -pZ -pZ -pZ -fU -fU -fU -fU -wJ -Fp -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -36472,45 +36623,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -36666,45 +36817,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -36860,45 +37011,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -37054,45 +37205,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -37248,45 +37399,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT @@ -37442,45 +37593,45 @@ NT NT NT NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT -NT +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj NT NT NT diff --git a/maps/euthenia/levels/deck1.dmm b/maps/euthenia/levels/deck1.dmm index 849ccc84d71..4b85144bd28 100644 --- a/maps/euthenia/levels/deck1.dmm +++ b/maps/euthenia/levels/deck1.dmm @@ -1,20 +1,8 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aak" = ( -/turf/simulated/wall/r_wall, -/area/medical/medbay_emt_bay) "aax" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_7) -"aba" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) "abc" = ( /obj/machinery/camera/network/medbay{ dir = 4 @@ -24,50 +12,9 @@ }, /turf/simulated/floor/plating, /area/medical/medbay_emt_bay) -"abA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"abG" = ( -/obj/structure/table/glass, -/obj/random/action_figure, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"abM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - name = "Shower"; - req_access = list() - }, -/obj/structure/curtain/open/shower/engineering, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_10) +"abf" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_one/port) "abO" = ( /obj/effect/floor_decal/corner/white/border, /obj/machinery/light/small, @@ -119,44 +66,10 @@ }, /turf/simulated/floor/carpet/sblucarpet, /area/crew_quarters/captain) -"adE" = ( -/obj/machinery/pointdefense_control, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) "adI" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central6, /turf/simulated/floor/tiled/monotile, /area/security/security_lockerroom) -"adQ" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) -"aek" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/bed/chair/comfy/teal{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aeJ" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red_hos, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) "aeM" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 @@ -192,19 +105,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar_backroom) +"afq" = ( +/obj/machinery/computer/timeclock/premade/east, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "afM" = ( /turf/simulated/wall, /area/medical/medbay) -"afU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) -"agw" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/aft/port) "agy" = ( /obj/structure/toilet{ dir = 8 @@ -220,29 +127,6 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"agQ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"ahb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/cryo) -"ahn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/iaa/officecommon) "aig" = ( /obj/structure/undies_wardrobe, /obj/machinery/atmospherics/component/unary/vent_pump/on{ @@ -250,6 +134,17 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) +"aiR" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/red, +/area/tether/surfacebase/security/lobby) "aiT" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -266,15 +161,17 @@ "aiY" = ( /turf/simulated/wall/r_wall, /area/rnd/xenobiology/xenoflora) -"ajo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"ajS" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_10) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/red, +/area/tether/surfacebase/security/lobby) "ajY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -287,6 +184,16 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/surgery_hallway) +"akc" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "akr" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -306,6 +213,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_8) +"akX" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one) "alk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -314,16 +227,6 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/surgery_hallway) -"alo" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/space) "alC" = ( /obj/machinery/button/remote/blast_door{ dir = 4; @@ -352,13 +255,22 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"alI" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 +"alH" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) +/turf/simulated/open, +/area/main_map/maintenance/deck_one/port) +"alN" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/research{ + name = "Fighter Bay"; + req_one_access = list(19,29,38,43,47,63,67) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/research/researchdivision) "alR" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ @@ -407,15 +319,26 @@ }, /turf/simulated/floor/carpet, /area/security/warden) +"amC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/window/brigdoor/southright, +/turf/simulated/floor/tiled/red, +/area/tether/surfacebase/security/lobby) +"ano" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/surgery_hallway) "anH" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techmaint, /area/maintenance/security/port) -"anS" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) +"anX" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1/fore) "aou" = ( /obj/structure/table/steel_reinforced, /obj/item/clipboard, @@ -454,15 +377,6 @@ /obj/structure/catwalk, /turf/simulated/floor/airless, /area/space) -"aqc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) "aqK" = ( /obj/structure/bookcase/legal/combo, /obj/item/book/manual/legal/sop_vol1, @@ -475,9 +389,6 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"are" = ( -/turf/simulated/floor/tiled, -/area/vacant/vacant_office) "ari" = ( /obj/structure/catwalk, /turf/simulated/open, @@ -508,139 +419,36 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/Dorm_1) -"arX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/space) -"arZ" = ( -/obj/machinery/atmospherics/component/binary/pump{ - dir = 4; - name = "Port to Isolation" - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"asi" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/gunbox/lethal, -/obj/item/gunbox/lethal, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"asj" = ( -/obj/machinery/fitness/punching_bag, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"asB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) +"ast" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/kitchen) "atn" = ( /obj/effect/floor_decal/corner/green/full{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/xenoflora) -"att" = ( -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/pickaxe, -/obj/item/pickaxe{ - pixel_y = -5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"atN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/chair/shuttle, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"atT" = ( -/obj/structure/table/steel, -/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/pilot{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"aue" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"auq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"auU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, +"auP" = ( /obj/machinery/air_alarm{ - pixel_y = 22 + pixel_y = 30 }, +/obj/machinery/door/airlock/glass/security{ + name = "Locker Room"; + req_one_access = list(2) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/area/security/security_lockerroom) "auW" = ( /obj/effect/floor_decal/industrial/halfstair, /turf/simulated/floor/tiled, /area/space) -"avi" = ( -/obj/item/stool/padded, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "avn" = ( /obj/structure/railing{ dir = 4 @@ -669,25 +477,6 @@ /obj/item/stamp/internalaffairs, /turf/simulated/floor/carpet/purcarpet, /area/tether/surfacebase/security/iaa/officeb) -"awd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = 25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) "axb" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 @@ -705,18 +494,12 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"axL" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/oxygen_pump{ - pixel_y = -30 - }, -/obj/machinery/oxygen_pump{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +"axx" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1) "ayi" = ( /obj/machinery/button/remote/airlock{ id = "dorm6"; @@ -732,37 +515,39 @@ /obj/item/retail_scanner/civilian, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"ayH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge_lockdown"; - name = "Bridge Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/bunker) -"ayK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) +"ayA" = ( +/turf/simulated/wall/prepainted/security, +/area/tether/surfacebase/security/hallway) "ayS" = ( /obj/structure/bed/chair, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"azw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/tiled, -/area/crew_quarters/recreation_area_hallway) +"ayZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) +"azc" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay emergency access door."; + id = "MedbayEmergency"; + name = "Door Switch"; + pixel_x = -24; + pixel_y = 5 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) "azB" = ( /obj/machinery/newscaster{ layer = 3.3; @@ -783,59 +568,30 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_2) -"aAo" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"aAG" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) "aAL" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/solars) -"aBf" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 +"aBe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/escape) -"aBg" = ( -/obj/structure/table/bench/steel, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) -"aBB" = ( -/obj/machinery/door/firedoor{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) +"aBA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 6 }, -/obj/effect/floor_decal/spline/plain{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aBJ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) "aBL" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -846,45 +602,10 @@ "aBR" = ( /turf/simulated/wall/r_wall, /area/space) -"aBS" = ( -/obj/structure/bed/chair/bay/comfy/black{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "emergency_shuttle_lockdown"; - name = "Emergency Blast Doors"; - pixel_x = 24; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"aCa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) -"aCk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_11) -"aCT" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"aDf" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) +"aCV" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck1) "aDO" = ( /obj/machinery/computer/ship/navigation/telescreen{ pixel_y = 27 @@ -897,34 +618,46 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"aEh" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_5) +"aEg" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/starboard) "aEl" = ( /obj/machinery/atmospherics/component/unary/engine/biggest{ dir = 8 }, /turf/simulated/floor/reinforced/airless, /area/space) +"aEt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/window/brigdoor/northleft{ + req_access = null; + req_one_access = list(8) + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"aEv" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "aEz" = ( /obj/structure/bed/padded, /obj/random/bedsheet, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_6) -"aEN" = ( -/obj/random/plushie, -/turf/simulated/floor/carpet/arcadecarpet, -/area/maintenance/deck_one/port) -"aFY" = ( -/obj/structure/bed/chair/sofa/blue/corner, -/turf/simulated/floor/carpet/arcadecarpet, -/area/maintenance/deck_one/port) "aGB" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -934,26 +667,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"aGC" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) -"aGE" = ( -/obj/machinery/meter{ - frequency = 1443; - id = "dist_aux_meter"; - name = "Distribution Loop" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/space) "aGN" = ( /obj/structure/closet/walllocker/emerglocker/north, /obj/effect/floor_decal/corner/white/border{ @@ -970,65 +683,27 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled, /area/medical/reception) -"aJt" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 +"aHZ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 }, -/obj/structure/sign/greencross{ - pixel_x = -32 - }, -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/techfloor/hole/right, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"aJw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/space) -"aJy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/door/blast/regular/open{ - id = "emergency_shuttle_lockdown"; - name = "Emergency Shuttle Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/escape) -"aJU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"aKa" = ( +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"aJB" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aKe" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) +"aKB" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/security_lockerroom) "aKH" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/borderfloorwhite{ @@ -1044,52 +719,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_1) -"aKV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aLo" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"aMf" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/directions/roomnum{ - dir = 5; - pixel_x = -32; - pixel_y = -3 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aMC" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"aMK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ +"aKS" = ( +/obj/spawner/window/reinforced/full/firelocks, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/port) +"aLc" = ( +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck1) "aMO" = ( /obj/machinery/button/remote/airlock{ id = "bathroomlock100"; @@ -1106,97 +745,21 @@ /obj/random/bedsheet/double, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_3) -"aNP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +"aNY" = ( +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 10 }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/white, -/area/space) -"aNU" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOd" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) +/turf/simulated/wall, +/area/main_map/hallway/deck1) "aOe" = ( /turf/simulated/shuttle/wall/voidcraft/hard_corner, /area/space) -"aOm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) "aOO" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, /area/rnd/robotics/mechbay) -"aOP" = ( -/obj/machinery/door_timer/cell_3{ - id = "Cell B"; - name = "Cell B"; - pixel_y = -32 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"aPa" = ( -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/tank/emergency, -/obj/item/tank/emergency, -/obj/item/tank/emergency, -/obj/structure/table/rack/shelf/steel{ - pixel_y = -2 - }, -/obj/machinery/door/window/northright, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "aPE" = ( /obj/structure/railing{ dir = 8 @@ -1214,18 +777,6 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"aQh" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) "aRn" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -1262,23 +813,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aRW" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm9"; - name = "Dorm 9" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) "aSs" = ( /obj/spawner/window/reinforced/full/firelocks, /obj/machinery/door/blast/shutters{ @@ -1303,6 +837,21 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_3) +"aSQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"aSR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1/fore) "aTd" = ( /obj/item/radio/intercom{ dir = 8; @@ -1311,37 +860,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_8) -"aTo" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/tether/surfacebase/security/hallway) "aTE" = ( /obj/structure/closet/lawcloset, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officeb) -"aUq" = ( -/obj/machinery/camera/network/outside{ - dir = 9 - }, -/turf/space, -/area/space) -"aVi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/security/port) "aVt" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -1355,18 +877,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aVO" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) -"aVT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/trashcart, -/obj/item/instrument/bikehorn, -/turf/simulated/floor/tiled, -/area/maintenance/dormitory) "aWt" = ( /obj/machinery/newscaster{ layer = 3.3; @@ -1374,27 +884,11 @@ }, /turf/simulated/floor/carpet/purcarpet, /area/tether/surfacebase/security/iaa/officeb) -"aWz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"aWR" = ( -/turf/simulated/wall, -/area/maintenance/deck_one) -"aWW" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +"aXw" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/wall/prepainted/civilian, +/area/main_map/maintenance/deck_one) "aXK" = ( /obj/machinery/computer/med_data/laptop, /obj/structure/table/reinforced, @@ -1421,33 +915,6 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"aXN" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"aYI" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "iaar" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"aZd" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) "aZm" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/red/border, @@ -1477,31 +944,6 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"baH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) -"baX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/button/remote/blast_door{ - id = "armoryriot"; - name = "Emergency Armory Access"; - pixel_x = 25; - pixel_y = -6; - req_access = list(3) - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) "bbh" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/floor_decal/industrial/outline/blue, @@ -1514,56 +956,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bbr" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/storage/box/flashshells, -/obj/item/storage/box/shotgunammo, -/obj/item/storage/box/shotgunshells{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/storage/box/shotgunshells{ - pixel_x = 6; - pixel_y = -1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) "bbX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/bar) -"bcx" = ( -/turf/simulated/open, -/area/hallway/primary/central_one) -"bcX" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id = "armorytactical"; - name = "Tactical Armory Access" +"bdb" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/lino, +/area/main_map/maintenance/deck_one/aft/port) "bdd" = ( /obj/structure/bed/chair{ dir = 4 @@ -1576,25 +980,17 @@ }, /turf/simulated/open, /area/crew_quarters/bar) -"beb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +"bdQ" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/maintenance/security/port) +"beR" = ( +/obj/machinery/door/airlock{ + name = "Internal Affairs"; + req_access = list(38) }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bee" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) +/area/tether/surfacebase/security/iaa/officea) "bfr" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -1603,26 +999,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_1) -"bgT" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/structure/closet/wardrobe, +"bgk" = ( +/obj/structure/bed/chair/comfy/purp{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/mob/living/simple_mob/humanoid/clown, /turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"bhW" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/area/crew_quarters/sleep/Dorm_5) "bia" = ( /obj/structure/table/steel, /obj/item/cell/device/weapon{ @@ -1639,18 +1025,6 @@ }, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"big" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/security/upper) -"bim" = ( -/obj/machinery/button/windowtint{ - id = "emergency_security"; - pixel_x = 24; - pixel_y = -8 - }, -/obj/structure/bed/chair/shuttle, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) "biS" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -1673,28 +1047,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) -"bjo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"bjs" = ( -/turf/simulated/wall, -/area/rnd/xenobiology/xenoflora) -"bjP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "armorylight"; - name = "Light Armory Acccess" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) "bjV" = ( /obj/machinery/optable, /obj/machinery/oxygen_pump/anesthetic{ @@ -1702,12 +1054,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/medical/surgery2) -"bjX" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/space) "bke" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1717,12 +1063,6 @@ }, /turf/simulated/floor/tiled, /area/security/security_lockerroom) -"bkg" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_one) "bkw" = ( /obj/structure/sink/kitchen{ dir = 8; @@ -1741,117 +1081,54 @@ /obj/structure/stairs/spawner/south, /turf/simulated/floor/reinforced/airless, /area/space) -"bkz" = ( -/obj/machinery/atmospherics/component/binary/pump/fuel{ - dir = 1 +"bla" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 }, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"bkN" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/security/security_lockerroom) -"blA" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/table/glass, -/turf/simulated/floor/crystal, -/area/space) -"blF" = ( -/obj/item/radio/intercom/department/security{ - dir = 4; - pixel_x = 24 +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/red/border{ +/obj/effect/floor_decal/industrial/danger{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"blJ" = ( -/obj/machinery/papershredder, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ +/obj/effect/floor_decal/industrial/danger{ dir = 8 }, -/obj/effect/floor_decal/corner/red/bordercorner2{ +/obj/machinery/door/airlock/glass/research{ + name = "Xenoflora Research"; + req_one_access = list(30,47,77) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"blU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"bmi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora) "bmy" = ( /obj/structure/railing/grey{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"bmJ" = ( +/obj/effect/floor_decal/corner/paleblue/bordercee{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) "bmU" = ( /turf/space, /area/space) -"bng" = ( -/obj/structure/table/woodentable, -/obj/machinery/recharger, -/obj/machinery/power/apc{ - cell_type = /obj/item/cell/super; - dir = 1; - name = "north bump"; - pixel_y = 24 +"bmX" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"bnQ" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "bom" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1871,13 +1148,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"boT" = ( -/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/pilot{ - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/techfloor, -/area/space) "bph" = ( /obj/machinery/requests_console/preset/security{ pixel_y = 30 @@ -1890,65 +1160,6 @@ }, /turf/simulated/floor/tiled/red, /area/tether/surfacebase/security/lobby) -"bpD" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gunbox{ - pixel_y = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = 5; - pixel_y = -6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = 5; - pixel_y = -6 - }, -/obj/item/gunbox{ - pixel_y = -3 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"bpW" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/structure/closet/crate/hydroponics, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/plant_analyzer, -/obj/item/plant_analyzer, -/obj/item/plant_analyzer, -/obj/item/tool/wirecutters/clippers/trimmers, -/obj/item/tool/wirecutters/clippers/trimmers, -/obj/item/material/knife/machete/hatchet, -/obj/item/material/knife/machete/hatchet, -/obj/item/material/minihoe/plasteel, -/obj/item/material/minihoe/plasteel, -/obj/item/material/minihoe/plasteel, -/obj/item/shovel/spade, -/obj/item/shovel/spade, -/obj/item/shovel/spade, -/obj/item/shovel/spade, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "bqt" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing/grey{ @@ -1956,26 +1167,21 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"bqv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) "bqB" = ( /obj/machinery/photocopier, /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled, /area/medical/reception) -"bqI" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) +"bqC" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/crew_quarters/heads/chief) +"bqR" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1) "bqZ" = ( /obj/structure/table/steel, /obj/structure/window/reinforced{ @@ -1993,29 +1199,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/riot_control) -"brg" = ( -/obj/structure/sign/hangar/one, -/turf/simulated/wall, -/area/space) -"brL" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/crew_quarters/bar_backroom) -"bsG" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) "bsP" = ( /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ dir = 1 @@ -2046,46 +1229,9 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"btu" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/item/gun/energy/taser, -/obj/item/gun/energy/taser, -/obj/item/gun/energy/taser, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"btA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/structure/closet/bombcloset/double, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/evastorage) -"btJ" = ( -/obj/machinery/atmospherics/component/unary/engine{ - dir = 1 - }, -/turf/simulated/shuttle/plating/airless/carry, +"btn" = ( +/turf/simulated/wall/r_wall/prepainted, /area/space) -"buI" = ( -/obj/structure/closet/wardrobe/tactical, -/obj/effect/floor_decal/corner/black/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) "buO" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -2113,85 +1259,27 @@ /obj/item/bodybag/cryobag, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"bvb" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "shuttle_inbound" +"bve" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "bvn" = ( /obj/effect/floor_decal/corner/white/border{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_2) -"bvA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) -"bvL" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"bvV" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, +"bvw" = ( +/obj/structure/bed/chair/comfy/blue, +/mob/living/simple_mob/humanoid/clown, /turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bwd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"bwv" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) +/area/crew_quarters/sleep/Dorm_8) "bwN" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -2202,21 +1290,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) -"bwU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"bxy" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) +"bxu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/starboard) "byb" = ( /obj/structure/railing, /obj/structure/window/reinforced, @@ -2225,15 +1303,6 @@ "byk" = ( /turf/simulated/floor/airless/ceiling, /area/space) -"byl" = ( -/obj/structure/table/fancyblack, -/obj/item/flashlight/pen{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/flashlight/pen, -/turf/simulated/floor/carpet/arcadecarpet, -/area/maintenance/deck_one/port) "byq" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -2247,96 +1316,31 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/hor) -"byw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"bzo" = ( +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck1/fore) +"bzK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_external" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"bzy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "bAe" = ( /obj/machinery/computer/security{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"bAf" = ( -/obj/structure/fitness/punchingbag, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"bAz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"bAX" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/closet/crate/nanotrasen, +/obj/machinery/light/no_nightshift{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"bAQ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_9) -"bAW" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/port) -"bBl" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = 26 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"bBv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/wall/rshull, -/area/space) +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "bBy" = ( /obj/structure/closet/walllocker/emerglocker/north, /obj/effect/floor_decal/corner/white/border{ @@ -2344,6 +1348,18 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_1) +"bBH" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/Hangar_bay/deck1/a) "bBN" = ( /obj/machinery/door/blast/regular{ dir = 8; @@ -2352,112 +1368,30 @@ }, /turf/simulated/floor/reinforced, /area/security/tactical) -"bBP" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 +"bCn" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/open, /area/space) -"bCd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) -"bCk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/button/remote/airlock{ - id = "dorm4"; - name = "Room 4 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) "bCq" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/reinforced/airless, /area/space) -"bCO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) -"bDX" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/closet/walllocker{ - dir = 4; - pixel_x = 28 - }, -/obj/item/flash, -/obj/item/flash, -/obj/random/drinkbottle, -/obj/item/camera_film, -/obj/item/cassette_tape/random, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"bDZ" = ( -/obj/machinery/air_alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/vending/fitness, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +"bDO" = ( +/obj/structure/grille, +/obj/structure/girder/reinforced, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/main_map/maintenance/deck_one/aft/port) "bEp" = ( /turf/simulated/floor/tiled/monotile, /area/security/security_lockerroom) -"bEQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/keycard_auth{ - pixel_x = -24; - pixel_y = -8 - }, -/obj/item/storage/secure/briefcase, -/obj/item/multitool, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"bFi" = ( +"bFy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"bFq" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"bFK" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "bFR" = ( /obj/machinery/door/airlock/engineering{ name = "Solars"; @@ -2466,6 +1400,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/solars) +"bFU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) "bGk" = ( /obj/structure/table/steel, /obj/item/folder/red, @@ -2473,22 +1413,6 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) -"bGq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) "bGr" = ( /obj/structure/table/rack/shelf/steel, /obj/item/clothing/mask/gas{ @@ -2516,12 +1440,6 @@ /obj/item/clothing/mask/gas/half, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"bGW" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) "bHp" = ( /obj/machinery/door/airlock/maintenance/engi{ name = "Elevator Shaft Access"; @@ -2529,31 +1447,6 @@ }, /turf/simulated/floor/plating, /area/medical/medbay) -"bHL" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"bIk" = ( -/obj/structure/table/steel, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/box/empslite{ - pixel_y = 3 - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"bIr" = ( -/obj/machinery/power/pointdefense, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/escape) "bIO" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -2561,44 +1454,38 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bJD" = ( -/obj/machinery/holopad, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"bJQ" = ( -/obj/structure/railing{ +"bJN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/handrail{ dir = 4 }, -/obj/structure/railing, -/turf/unsimulated/floor/techfloor_grid, -/area/centcom/simulated/terminal) -"bKe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + pixel_x = -24 }, -/turf/simulated/floor/tiled, -/area/space) +/obj/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/Hangar_bay/deck1/a) +"bJT" = ( +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck1/a) "bKp" = ( /obj/effect/floor_decal/corner/white/border{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_3) -"bKS" = ( -/obj/item/stool/padded, -/obj/item/toy/plushie/deer, -/turf/simulated/floor/tiled/dark, -/area/space) -"bKU" = ( -/obj/structure/closet/wardrobe, -/obj/machinery/newscaster{ - pixel_y = 32 +"bLa" = ( +/obj/machinery/power/pointdefense{ + id_tag = "forward_pd" }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"bLk" = ( -/turf/simulated/wall, -/area/medical/medbay_emt_bay) +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) "bLn" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2612,35 +1499,14 @@ /obj/machinery/biogenerator, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) +"bLI" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "bLT" = ( /turf/simulated/floor/tiled/white, /area/medical/surgery2) -"bLX" = ( -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"bMI" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/holoplant, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) -"bMO" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) "bMX" = ( /obj/structure/railing{ dir = 1 @@ -2658,73 +1524,18 @@ /obj/item/suit_cooling_unit, /turf/simulated/floor/tiled/techfloor, /area/maintenance/solars) -"bNG" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm10"; - name = "Room 10 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 +"bNz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"bNN" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_external" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/turf/simulated/floor/lino, +/area/main_map/maintenance/deck_one/aft/port) "bNS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, /area/security/security_lockerroom) -"bOe" = ( -/obj/structure/bed/padded, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/random/bedsheet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"bOq" = ( -/obj/machinery/door/airlock/glass_external, -/obj/map_helper/airlock/door/int_door, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 8 - }, -/obj/machinery/airlock_sensor/airlock_interior{ - dir = 1; - pixel_y = -24 - }, -/obj/map_helper/airlock/sensor/int_sensor, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"bOD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) "bOP" = ( /obj/structure/table/steel_reinforced, /obj/item/reagent_containers/blood/OMinus, @@ -2750,10 +1561,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bOT" = ( -/obj/machinery/vending/medical, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +"bPc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/starboard) "bPn" = ( /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 4 @@ -2766,19 +1579,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bPt" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/iaa) -"bPM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/space) +"bPX" = ( +/obj/effect/floor_decal/techfloor/corner, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "bQC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -2788,28 +1593,23 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"bSh" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 +"bQH" = ( +/turf/simulated/floor/carpet/arcadecarpet, +/area/main_map/maintenance/deck_one/port) +"bRU" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"bSj" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/primary/fore) -"bTa" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/effect/floor_decal/techfloor{ + dir = 6 }, -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "bTt" = ( /obj/structure/table/rack/shelf/steel, /obj/effect/floor_decal/industrial/outline/red, @@ -2838,21 +1638,14 @@ /obj/structure/flora/pottedplant/minitree, /turf/simulated/floor/glass/reinforced, /area/crew_quarters/bar) -"bTR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, +"bTF" = ( /obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bTX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/door/firedoor{ + dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/starboard) +/area/main_map/maintenance/deck_one) "bUk" = ( /obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ dir = 4; @@ -2862,43 +1655,33 @@ /obj/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, /area/maintenance/solars) +"bUu" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "bUx" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_3) -"bUX" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 +"bVx" = ( +/obj/machinery/door/airlock/maintenance/sec, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"bVw" = ( -/obj/structure/table/standard, -/obj/random/plushie, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) -"bVJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"bWk" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) -"bWI" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/obj/machinery/door/firedoor/glass, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/security/port) "bWL" = ( /obj/structure/sign/directions/security{ dir = 2; @@ -2914,13 +1697,29 @@ }, /turf/simulated/wall/r_wall, /area/maintenance/solars) -"bXc" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 +"bWW" = ( +/obj/machinery/camera/network/research{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"bXm" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/lathe/autolathe, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/corner/mauve{ + dir = 4 + }, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "bXo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -2928,57 +1727,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_1) -"bYf" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"bYi" = ( -/obj/structure/dispenser{ - phorontanks = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/evastorage) -"bYB" = ( -/obj/structure/railing{ - dir = 4 - }, +"bXS" = ( /obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/structure/loot_pile/maint/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/north) +/area/rnd/lab) "bYD" = ( /obj/structure/railing{ dir = 8 @@ -2988,35 +1749,26 @@ }, /turf/simulated/open, /area/crew_quarters/recreation_area) -"bZB" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/curtain/black{ - anchored = 1 - }, -/turf/simulated/floor/plating, -/area/space) +"bZY" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research/researchdivision) "cal" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_8) -"caH" = ( -/obj/structure/bed/chair/comfy/teal{ +"cam" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "cbe" = ( /obj/machinery/camera/network/medbay{ dir = 8 @@ -3027,135 +1779,28 @@ /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/tiled/white, /area/medical/surgery2) -"cbl" = ( -/obj/machinery/camera/network/civilian{ - dir = 1 - }, +"cbf" = ( +/obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, -/area/vacant/vacant_office) -"cby" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/accessory/storage/pouches{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/accessory/storage/pouches{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/clothing/accessory/storage/pouches{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/clothing/accessory/storage/pouches{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/clothing/accessory/armor/legguards{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/accessory/armor/legguards{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/clothing/accessory/armor/legguards{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/clothing/accessory/armor/legguards{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/clothing/accessory/armor/armguards{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/accessory/armor/armguards{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/clothing/accessory/armor/armguards{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/clothing/accessory/armor/armguards{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"cco" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Internal Affairs" - }, -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"cct" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "emergency_cockpit" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/escape) -"ccu" = ( -/obj/structure/railing{ +/area/main_map/Hangar_bay/deck1/a) +"ccE" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/hallway) +"ccY" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/plating, +/area/medical/medbay) +"cee" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/obj/structure/railing, -/turf/unsimulated/floor/techfloor_grid, -/area/centcom/simulated/terminal) -"cej" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/camera/network/security{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"cey" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable, -/obj/machinery/power/apc/critical/west_bump, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/starboard) "ceP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -3168,114 +1813,17 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/security/hallway) -"cgc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/chair/sofa/black/right{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"cgf" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/flora/pottedplant/flower, -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, +"ceY" = ( +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/wood, -/area/hallway/primary/port) -"cgk" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/accessory/holster/waist, -/obj/item/clothing/accessory/holster/waist, -/obj/item/clothing/accessory/holster/leg, -/obj/item/clothing/accessory/holster/leg, -/obj/item/clothing/accessory/holster/hip, -/obj/item/clothing/accessory/holster/hip, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/clothing/accessory/holster, -/obj/item/clothing/accessory/holster, -/obj/item/clothing/accessory/holster, -/obj/item/clothing/accessory/holster, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"cgr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"cgG" = ( -/obj/structure/table/reinforced, -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = -8 - }, -/obj/item/folder/blue, -/obj/item/radio{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/radio, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"cgP" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/firstaid/surgery, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"cgT" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/space) -"chc" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) +/area/tether/surfacebase/security/iaa/officeb) +"cfT" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck1) "chI" = ( /obj/structure/cable/heavyduty{ icon_state = "0-8" @@ -3303,6 +1851,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) +"ciA" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/starboard) +"cjx" = ( +/obj/machinery/door/airlock/maintenance/rnd{ + name = "Fighter Bay Maintenance"; + req_one_access = list(19,29,38,43,47,63,67) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/space) "cjB" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/medical{ @@ -3329,19 +1890,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"cjS" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) "ckx" = ( /obj/structure/table/rack/shelf/steel, /obj/item/clothing/suit/armor/vest/wolftaur{ @@ -3361,23 +1909,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"ckF" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/briefingroom) -"ckO" = ( -/turf/simulated/wall, -/area/crew_quarters/showers) -"ckU" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) "clq" = ( /obj/structure/closet/wardrobe, /obj/item/radio/intercom{ @@ -3400,15 +1931,10 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"clL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, +"clX" = ( +/obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/space) +/area/main_map/maintenance/deck_one/port) "cmq" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/orange/border, @@ -3434,19 +1960,20 @@ "cmR" = ( /turf/simulated/floor/crystal, /area/space) -"cna" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ +"cnj" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/recreation_area) +"cnu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/plating, -/area/space) -"cng" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_science, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/research/researchdivision) "cnv" = ( /obj/machinery/door/window/eastleft{ dir = 1 @@ -3456,6 +1983,15 @@ /obj/machinery/power/apc/direction_bump/south, /turf/simulated/floor/tiled/monotile, /area/security/forensics) +"cnB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced, +/area/space) "cnD" = ( /obj/effect/floor_decal/corner/paleblue/bordercee, /obj/structure/sink{ @@ -3469,18 +2005,19 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"cob" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +"cnJ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) +"cos" = ( +/obj/structure/table/steel, +/obj/item/folder/red, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) "coC" = ( /obj/structure/toilet{ dir = 8 @@ -3499,22 +2036,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"cpi" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/woodentable, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/item/instrument/trombone, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"cpr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/space) "cpF" = ( /obj/structure/toilet{ dir = 4 @@ -3524,57 +2045,52 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_3) -"cqm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 1 +"cqg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) -"cqE" = ( -/turf/simulated/wall, -/area/maintenance/deck_one/starboard) -"cqF" = ( -/obj/machinery/fitness/punching_bag/clown, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/starboard) +"cqQ" = ( +/obj/structure/bed/chair/comfy/purp, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24; + pixel_y = -5 + }, +/mob/living/simple_mob/humanoid/clown, /turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"crc" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +/area/crew_quarters/sleep/Dorm_7) +"csa" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/holoplant, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"csM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"ctp" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ +/obj/effect/floor_decal/techfloor/hole/right{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"ctX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/space) -"cuK" = ( -/obj/structure/bed/chair/shuttle, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/purple/border, -/obj/machinery/turretid{ - check_access = 0; - control_area = /area/shuttle/excursion/general; - gl_uid = "exploration"; - pixel_x = -30; - req_access = null; - req_one_access = list(19,43,62,67); - uid = "exploration" - }, -/obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/techfloor, -/area/space) +/area/rnd/lab) +"ctP" = ( +/obj/machinery/door/firedoor, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/tether/surfacebase/security/lobby) "cuX" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing/grey{ @@ -3582,14 +2098,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"cvi" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "cvm" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/orange/border, @@ -3609,14 +2117,6 @@ /obj/structure/table/fancyblack, /turf/simulated/floor/glass/reinforced, /area/crew_quarters/bar) -"cvL" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"cvQ" = ( -/turf/simulated/wall/r_wall, -/area/security/range) "cvU" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 @@ -3632,45 +2132,12 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_3) -"cwB" = ( -/obj/machinery/shower{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"cwD" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/space) "cwJ" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/medical/reception) -"cxh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) "cxT" = ( /obj/machinery/door/airlock/maintenance/sec, /obj/machinery/door/blast/regular{ @@ -3683,6 +2150,21 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/security/hallway) +"cya" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) +"cyg" = ( +/obj/structure/windoor_assembly, +/obj/structure/windoor_assembly{ + dir = 2 + }, +/obj/structure/table, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck1/fore) "cym" = ( /obj/machinery/light_switch{ dir = 4; @@ -3690,38 +2172,6 @@ }, /turf/simulated/floor/carpet/oracarpet, /area/tether/surfacebase/security/iaa/officea) -"cyp" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/requests_console/preset/research{ - pixel_y = 30 - }, -/obj/landmark/spawnpoint/job/scientist, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"cyx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/red/bordercorner2, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) "cyQ" = ( /obj/machinery/light_switch{ pixel_x = -9; @@ -3729,98 +2179,10 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"cyV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/red, -/area/tether/surfacebase/security/hallway) -"cza" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"czc" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/obj/machinery/button/windowtint{ - id = "emergency_medical"; - pixel_x = -24; - pixel_y = -8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) "czu" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_2) -"czA" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/security{ - name = "Equipment Storage"; - req_access = list() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"czB" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"czF" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm10"; - name = "Dorm 10" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"czL" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = -22 - }, -/obj/item/storage/box/flashbangs{ - pixel_y = 7 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/red/full, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/storage/box/flashbangs, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"cAg" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/rshull, -/area/space) "cAl" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorwhite{ @@ -3866,40 +2228,33 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/security/lobby) -"cBF" = ( -/obj/structure/table/marble, -/obj/item/storage/box/wings, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" +"cBJ" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/dark, -/area/space) +/obj/machinery/door/airlock/glass/security{ + id_tag = "BrigFoyer"; + layer = 2.8; + name = "Security"; + req_one_access = list(38,63) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) "cBZ" = ( /turf/simulated/wall/r_wall, /area/security/riot_control) -"cCQ" = ( -/turf/simulated/open, -/area/maintenance/dormitory) -"cDP" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "cEi" = ( /obj/structure/table/steel, /obj/item/tool/crowbar, @@ -3923,13 +2278,21 @@ }, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"cEk" = ( -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/blue{ +"cFm" = ( +/obj/effect/floor_decal/corner/mauve{ dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "cFn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -3939,28 +2302,12 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/crew_quarters/bar) -"cFL" = ( -/obj/structure/table/rack/steel, -/obj/structure/window/reinforced, -/obj/item/clothing/shoes/leg_guard/laserproof, -/obj/item/clothing/gloves/arm_guard/laserproof, -/obj/item/clothing/suit/armor/laserproof, -/obj/item/clothing/head/helmet/ablative, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"cGc" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) +"cFD" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"cGb" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/starboard) "cGd" = ( /obj/structure/railing{ dir = 1 @@ -3986,33 +2333,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_1) -"cGl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +"cGO" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) -"cGt" = ( -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) -"cHe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"cHk" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck1/fore) "cHm" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/orange/border, @@ -4025,15 +2353,11 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"cHD" = ( -/obj/structure/bed/chair/comfy/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +"cHK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/starboard) "cHM" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -4045,73 +2369,30 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/turcarpet, /area/crew_quarters/sleep/Dorm_2) -"cIx" = ( -/obj/structure/railing, -/turf/unsimulated/floor/techfloor_grid, -/area/centcom/simulated/terminal) "cIK" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"cIW" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"cJw" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_one/port) -"cJC" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/curtain/open/bed{ - anchored = 1; - name = "curtain" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/space) "cKt" = ( /obj/structure/railing, /turf/simulated/open, /area/space) -"cLb" = ( -/obj/structure/table/steel, -/obj/item/folder/red, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +"cLa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"cLh" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/spline/fancy, -/obj/structure/railing/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"cLY" = ( -/obj/structure/closet/lawcloset, -/obj/effect/floor_decal/spline/plain{ - dir = 5 +/area/main_map/hallway/deck1/fore) +"cMy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/air_alarm{ - pixel_y = 22 +/obj/machinery/camera/network/research{ + dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"cMZ" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) "cNl" = ( /obj/structure/railing{ dir = 1 @@ -4119,15 +2400,16 @@ /obj/structure/railing, /turf/simulated/open, /area/space) -"cNp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"cNI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/warden) "cNQ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -4140,32 +2422,10 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"cOc" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"cOl" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/techfloor, -/area/space) "cOt" = ( /obj/structure/closet/wardrobe, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_4) -"cOB" = ( -/obj/machinery/camera/network/outside, -/turf/space, -/area/space) "cOV" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -4178,18 +2438,42 @@ "cPo" = ( /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_5) -"cPx" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_one/forward/starboard) -"cPK" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_8) +"cPr" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"cPY" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/port) +"cQb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/security/hallway) "cQx" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/Dorm_1) +"cQH" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/main_map/Hangar_bay/deck1/a) "cQP" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled, @@ -4214,13 +2498,6 @@ }, /turf/simulated/floor/carpet/turcarpet, /area/crew_quarters/sleep/Dorm_2) -"cSb" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) "cSh" = ( /obj/machinery/status_display{ pixel_y = 32 @@ -4234,12 +2511,6 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"cTC" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "cTQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4248,36 +2519,6 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/surgery_hallway) -"cTS" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"cUk" = ( -/turf/unsimulated/floor/techfloor_grid, -/area/centcom/simulated/terminal) -"cUw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "shuttle_outbound" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "cUx" = ( /obj/structure/cable/green, /obj/machinery/door/blast/shutters{ @@ -4292,142 +2533,45 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/security/warden) -"cUL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ +"cVg" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) +"cVp" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ dir = 4 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"cUW" = ( -/obj/structure/table/standard, -/obj/item/material/ashtray/glass, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) -"cVb" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/fore) -"cVd" = ( -/obj/structure/closet/wardrobe/white, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"cVj" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector/fuel, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"cVH" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "32-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"cVQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"cWi" = ( +/turf/simulated/open, +/area/main_map/maintenance/deck_one/aft/starboard) +"cWf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) -"cWj" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/cell/high{ - maxcharge = 15000 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"cWk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/area/main_map/maintenance/deck_one) +"cWG" = ( +/obj/structure/stairs/spawner/west, +/obj/structure/railing, /turf/simulated/floor/plating, -/area/maintenance/dormitory) -"cWv" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/closet/walllocker{ - dir = 8; - pixel_x = -28 - }, -/obj/item/camera, -/obj/item/camera_film, -/obj/item/tape_recorder, -/obj/item/cassette_tape/random, -/obj/item/cassette_tape/random, -/obj/item/storage/secure/briefcase, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"cWK" = ( -/obj/machinery/door/airlock/medical{ - name = "Shuttle Medical" - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) -"cWP" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/landmark/spawnpoint/job/scientist, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"cWY" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/bed/chair/sofa/black/left, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"cXt" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) +/area/medical/medbay) "cXH" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/green{ @@ -4435,28 +2579,22 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/xenoflora) -"cXW" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"cXP" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1/fore) +"cZb" = ( +/obj/structure/railing{ dir = 1 }, -/obj/structure/table/woodentable, -/obj/item/radio/intercom{ - pixel_y = -24 +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 }, -/obj/item/instrument/trombone, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"cXZ" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"cYR" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora_storage) +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/main_map/maintenance/deck_one) "cZI" = ( /obj/structure/sign/directions/evac{ dir = 1; @@ -4467,23 +2605,6 @@ "cZP" = ( /turf/simulated/wall/r_wall, /area/security/tactical) -"cZS" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm5"; - name = "Dorm 5" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) "cZW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -4498,47 +2619,28 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/space) -"dba" = ( -/turf/space, -/area/security/riot_control) -"dbV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"dbY" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/direction_bump/south, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"dcw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled, +"dcp" = ( +/obj/landmark/spawnpoint/latejoin/station/arrivals_shuttle, +/turf/simulated/floor/tiled/techmaint, /area/space) -"ddk" = ( -/obj/machinery/door/firedoor{ - dir = 2 +"dcS" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "armorylight"; + name = "Light Armory Access"; + pixel_x = 25; + pixel_y = -25; + req_access = list(3) }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) "ddC" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4549,33 +2651,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"ddY" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) "dec" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -4587,32 +2662,19 @@ /obj/machinery/door/firedoor/multi_tile, /turf/simulated/floor/tiled/monotile, /area/space) -"deG" = ( -/turf/simulated/wall{ - can_open = 1 +"deI" = ( +/obj/machinery/door/airlock/maintenance/rnd{ + req_access = list(30,47,77) }, -/area/space) -"dfk" = ( -/obj/landmark{ - name = "lightsout" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/starboard) "dft" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) -"dfB" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +"dgp" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) "dgx" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/borderfloorwhite{ @@ -4628,19 +2690,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_4) +"dgT" = ( +/obj/machinery/door/airlock/glass_external, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/forward/starboard) "dhe" = ( /obj/structure/table/bench/steel, /turf/simulated/floor/tiled/monotile, /area/security/security_lockerroom) -"dhh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "dho" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -4656,6 +2713,9 @@ "dhu" = ( /turf/simulated/floor/carpet, /area/security/detectives_office) +"dhS" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/bridge/hallway) "dhV" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -4665,10 +2725,22 @@ }, /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/bar) -"djo" = ( -/obj/machinery/body_scanconsole, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) +"diu" = ( +/obj/structure/fuel_port{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) +"diX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) "djK" = ( /obj/structure/railing{ dir = 8 @@ -4678,61 +2750,19 @@ }, /turf/simulated/open, /area/medical/medbay) -"djY" = ( -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_one) +"dkD" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "dkJ" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/medical/reception) -"dkY" = ( -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/machinery/sleep_console{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/space) -"dla" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = -25; - pixel_y = 2 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -25; - pixel_y = -9 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/material/knife/machete, -/obj/item/material/knife/machete, -/obj/item/clothing/accessory/holster/machete, -/obj/item/clothing/accessory/holster/machete, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"dli" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/space) "dme" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -4748,41 +2778,27 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"dnB" = ( -/turf/simulated/floor/carpet/sblucarpet, -/area/crew_quarters/sleep/Dorm_3) -"dnE" = ( +"dpc" = ( +/turf/simulated/floor/lino, +/area/main_map/maintenance/deck_one/aft/port) +"dpu" = ( /obj/structure/table/steel_reinforced, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/medical/surgery) +/obj/machinery/recharger, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay) "dpB" = ( /turf/simulated/floor/tiled, /area/space) -"dpO" = ( -/obj/structure/cable/green, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"dpS" = ( -/turf/simulated/wall, -/area/maintenance/deck_one/forward/starboard) -"dqm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 +"dpM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "dqF" = ( /obj/machinery/camera/network/security{ dir = 10 @@ -4790,19 +2806,15 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/carpet, /area/security/detectives_office) -"drx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 +"dre" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 }, -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/tiled/dark, -/area/space) -"drW" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/security/lobby) "drX" = ( /obj/structure/bed/chair/office/dark, /obj/landmark/spawnpoint/job/chemist, @@ -4813,6 +2825,18 @@ /obj/random/bedsheet/double, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_1) +"dsv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) +"dsx" = ( +/turf/simulated/floor/glass/reinforced, +/area/main_map/hallway/deck1) "dsB" = ( /obj/structure/bed/chair{ dir = 4 @@ -4826,23 +2850,9 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) -"dsX" = ( -/obj/structure/bed/chair/sofa/blue/left{ - dir = 8 - }, -/turf/simulated/floor/carpet/arcadecarpet, -/area/maintenance/deck_one/port) -"dsY" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +"dsN" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/crew_quarters/heads/hop) "dtx" = ( /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_2) @@ -4853,10 +2863,6 @@ /obj/structure/lattice, /turf/simulated/open, /area/crew_quarters/bar) -"dtD" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/lino, -/area/maintenance/deck_one/aft/port) "dtR" = ( /turf/simulated/floor/tiled/white, /area/medical/medbay) @@ -4912,41 +2918,16 @@ }, /turf/simulated/floor/plating, /area/bridge/hallway) -"dvX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"dwd" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"dwh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"dwt" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) +"dwD" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck1/fore) +"dwH" = ( +/obj/machinery/holopad, +/obj/landmark/observer_spawn, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/bar) "dwN" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -4956,17 +2937,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"dwX" = ( -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"dxj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +"dwV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "dxv" = ( /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/bar) @@ -4983,85 +2959,40 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"dxZ" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/port_gen/pacman/mrs{ - anchored = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +"dxU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/hallway) +"dyp" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 }, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) +"dzd" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) +"dAw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/component/binary/pump/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"dyr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/space) -"dyS" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/security/lobby) "dAM" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"dBm" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"dBA" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id = "armoryriot"; - name = "Emergency Armory Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/security/riot_control) "dBY" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/reinforced/airless, /area/space) -"dCz" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "dCH" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, @@ -5072,206 +3003,91 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"dDv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 +"dDn" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/door/airlock/glass/security, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/security/hallway) +"dDz" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 8 +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"dDE" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 }, -/turf/simulated/floor/tiled/dark, -/area/space) +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/lobby) "dDU" = ( /obj/machinery/appliance/cooker/grill, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"dFv" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_one/forward/starboard) -"dFz" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/armor/vest/wolftaur{ - pixel_x = -16; - pixel_y = 4 - }, -/obj/item/clothing/suit/armor/vest/wolftaur{ - pixel_x = -12; - pixel_y = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"dGi" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/security/security_lockerroom) -"dGE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, +"dFP" = ( +/obj/structure/sign/deck/first, +/turf/simulated/wall/prepainted/medical, +/area/medical/reception) +"dHn" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/main_map/maintenance/deck_one/port) +"dHC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"dGO" = ( -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"dHc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"dHh" = ( -/obj/structure/curtain/open/shower/engineering, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"dHz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) +/area/crew_quarters/bar) "dIr" = ( /obj/structure/table/marble, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"dIO" = ( -/obj/structure/railing, -/obj/structure/cable{ - icon_state = "32-1" - }, -/turf/simulated/open, -/area/space) "dJq" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_3) -"dJH" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"dJL" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft, -/area/space) "dJT" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"dJU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/obj/structure/cable/green{ - icon_state = "4-8" +"dKa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/fore) -"dLC" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/energy/phasegun/rifle{ - pixel_y = -6 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/item/gun/energy/phasegun/rifle{ - pixel_y = 6 +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) +"dKt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"dLE" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/aft/port) +/turf/simulated/floor/wood, +/area/main_map/hallway/deck1/fore) "dLJ" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"dLZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"dMe" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) -"dMT" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +"dMw" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/main_map/maintenance/deck_one/forward/starboard) "dMX" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_5) -"dNF" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "iaal" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) "dNL" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -5281,15 +3097,24 @@ }, /turf/simulated/floor/carpet/gaycarpet, /area/crew_quarters/sleep/Dorm_7) +"dNV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/reinforced/airless, +/area/space) "dOe" = ( /obj/machinery/iv_drip, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled, /area/medical/surgery2) -"dOM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) +"dOj" = ( +/obj/machinery/computer/shuttle_control/explore{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) "dOR" = ( /obj/machinery/suit_cycler/medical, /obj/effect/floor_decal/corner/paleblue{ @@ -5310,14 +3135,20 @@ /obj/effect/floor_decal/steeldecal/steel_decals9, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"dOY" = ( -/obj/structure/catwalk, -/turf/simulated/open, -/area/maintenance/deck_one/port) -"dPr" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, +"dOS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor/tiled, -/area/hallway/primary/fore) +/area/rnd/research_foyer) +"dPY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research/researchdivision) "dPZ" = ( /obj/structure/closet/secure_closet/warden, /obj/item/book/manual/security_space_law, @@ -5326,58 +3157,28 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) +"dQg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "dQq" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/robotics) -"dQZ" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 +"dQt" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"dRj" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/security/hallway) -"dRp" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/energy/gun{ - pixel_y = -5 - }, -/obj/item/gun/energy/gun{ - pixel_y = 7 - }, -/obj/item/gun/energy/gun{ - pixel_y = -5 - }, -/obj/item/gun/energy/gun{ - pixel_y = 7 - }, -/obj/item/gun/energy/gun{ - pixel_y = -5 - }, -/obj/item/gun/energy/gun{ - pixel_y = 7 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1) "dRw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -5400,142 +3201,54 @@ /obj/item/book/manual/legal/sop_vol4, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officecommon) -"dSp" = ( -/obj/machinery/door/airlock/maintenance/engi, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/port) -"dSt" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/crew_quarters/bar) -"dSN" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/effect/floor_decal/techfloor/hole, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) "dSS" = ( /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_9) -"dSW" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"dTQ" = ( +"dUq" = ( +/obj/machinery/computer/security, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) -"dUt" = ( -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) -"dUB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/structure/handrail, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ dir = 10 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 +/obj/machinery/button/remote/airlock{ + id = "BrigFoyer"; + name = "Lobby Door Control"; + pixel_x = 24; + pixel_y = 24; + req_access = list(1) }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +/turf/simulated/floor/tiled/red, +/area/tether/surfacebase/security/lobby) "dUF" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"dUN" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) "dUW" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officeb) -"dVQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"dVH" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) "dVR" = ( /obj/structure/closet/crate/solar, /turf/simulated/floor/airless/ceiling, /area/maintenance/solars) -"dVW" = ( +"dXV" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"dXa" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/fans/tiny, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/machinery/door/airlock/glass_external/public{ - name = "Shuttle Hatch" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"dXO" = ( -/turf/simulated/wall, -/area/vacant/vacant_office) -"dXQ" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "dXW" = ( /obj/structure/flora/pottedplant/thinbush, /obj/item/radio/intercom{ @@ -5548,13 +3261,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_1) -"dYf" = ( -/obj/machinery/power/apc/direction_bump/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/security/upper) "dYM" = ( /obj/structure/cable/heavyduty{ icon_state = "2-8" @@ -5565,46 +3271,25 @@ /obj/structure/catwalk, /turf/simulated/floor/airless, /area/space) -"dZb" = ( -/obj/effect/floor_decal/corner/paleblue/bordercee{ - dir = 1 +"dYP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/spline/fancy, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/Hangar_bay/deck1/a) +"ebc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/effect/floor_decal/spline/plain{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"eaA" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id = "armoryriot"; - name = "Emergency Armory Access" - }, -/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/dark, /area/security/riot_control) -"eaH" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm6"; - name = "Room 6 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) "eby" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, @@ -5616,16 +3301,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/security/lobby) -"ecn" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Cargo Compartment"; - req_one_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "ecv" = ( /obj/structure/closet/emcloset, /obj/machinery/light/no_nightshift{ @@ -5633,25 +3308,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"ecX" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/outfitting/storage) -"edi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"edn" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/glass/rag, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/simulated/floor/tiled/dark, -/area/space) "edq" = ( /turf/simulated/wall, /area/maintenance/solars) @@ -5661,45 +3317,6 @@ "eel" = ( /turf/simulated/open, /area/rnd/robotics/mechbay) -"eem" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/north) -"eey" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"eeB" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/trashcart, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled, -/area/space) -"eeJ" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_7) "efa" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -5725,14 +3342,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgery) -"efQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) "efS" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -5745,23 +3354,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"egb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/space) -"egk" = ( -/turf/simulated/open, -/area/hallway/primary/fore) -"egP" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/catwalk, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/primary/central_one) "egZ" = ( /turf/simulated/wall, /area/tether/surfacebase/security/iaa/officea) @@ -5792,6 +3384,15 @@ /obj/machinery/appliance/mixer/candy, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) +"eja" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "eju" = ( /obj/structure/closet/wardrobe/red, /obj/effect/floor_decal/industrial/outline/yellow, @@ -5817,29 +3418,18 @@ }, /turf/simulated/open, /area/space) -"ejH" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/upperhall) -"ejU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/space) -"ekk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) "ekp" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_9) +"ekq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "ekw" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -5863,57 +3453,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"elS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 2; - name = "Airlock Gas Storage" - }, -/turf/simulated/floor/plating, -/area/space) -"emf" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"emn" = ( -/obj/structure/closet/firecloset, -/turf/simulated/shuttle/floor/black, -/area/space) -"ems" = ( -/obj/structure/ladder, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/forward/port) "emJ" = ( /obj/structure/filingcabinet, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officeb) -"enc" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"enC" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) +"emW" = ( +/turf/simulated/wall, +/area/main_map/hallway/deck1/fore) "enF" = ( /obj/structure/table/steel_reinforced, /obj/item/reagent_containers/blood/OMinus, @@ -5938,29 +3484,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"enV" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 +"enT" = ( +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/xenoflora) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/starboard) "eof" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, /area/crew_quarters/recreation_area) -"eok" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) "eol" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -5969,29 +3507,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"eoE" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret/stationary{ - gl_uid = "exploration"; - installation = /obj/item/gun/energy/phasegun; - name = "exploration turret"; - uid = "exploration" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"eoO" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall, -/area/medical/reception) -"eoW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) "epg" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -6000,15 +3515,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/red, /area/tether/surfacebase/security/lobby) -"eps" = ( -/obj/effect/floor_decal/borderfloorblack/full, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/deployable/barrier, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) "epA" = ( /obj/machinery/power/apc/critical/east_bump, /obj/structure/cable/green{ @@ -6022,31 +3528,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_4) -"eqn" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_6) -"eqt" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/space) -"eqz" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "shuttle_hatch"; - name = "Shuttle Rear Hatch" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "shuttle_hatch"; - name = "Shuttle Rear Hatch"; - pixel_x = -25 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "eqB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -6070,24 +3551,10 @@ /obj/structure/stairs/spawner/east, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"ern" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"erw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) -"erH" = ( -/obj/machinery/chem_master/condimaster, -/turf/simulated/floor/tiled/dark, -/area/space) +"erM" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "erU" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/component/unary/vent_pump/on{ @@ -6101,44 +3568,12 @@ }, /turf/simulated/floor/tiled/red, /area/space) -"esx" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"esB" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tether/surfacebase/shuttle_pad; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "tether_pad_airlock"; - landmark_tag = "tether_backup_low"; - name = "Surface Hangar" - }, -/turf/simulated/shuttle/floor/black, -/area/space) -"etv" = ( -/obj/machinery/door/blast/regular{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) -"etx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, +"eth" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/obj/structure/catwalk, /turf/simulated/floor/plating, -/area/maintenance/dormitory) -"etB" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/space) +/area/main_map/maintenance/deck_one/aft/starboard) "etN" = ( /obj/machinery/door/airlock/command{ id_tag = "captaindoor"; @@ -6153,57 +3588,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"etR" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"etS" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/shoes/leg_guard/laserproof, -/obj/item/clothing/gloves/arm_guard/laserproof, -/obj/item/clothing/suit/armor/laserproof, -/obj/item/clothing/head/helmet/ablative, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"etZ" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"euL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_1) -"evm" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Bridge Compartment"; - req_one_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "evA" = ( /obj/structure/undies_wardrobe, /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ @@ -6211,14 +3595,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"evF" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Bridge Compartment"; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "ewo" = ( /obj/structure/cable/heavyduty{ icon_state = "2-8" @@ -6226,18 +3602,6 @@ /obj/structure/catwalk, /turf/simulated/floor/airless, /area/space) -"ewq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) "ewE" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -6265,27 +3629,15 @@ }, /turf/simulated/floor/carpet/turcarpet, /area/crew_quarters/sleep/Dorm_2) -"exe" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 +"eyg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/lathe/autolathe, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"eye" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/security/lobby) "eyk" = ( /obj/structure/cable/heavyduty{ icon_state = "2-4" @@ -6301,12 +3653,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"eyJ" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) "eyR" = ( /obj/effect/floor_decal/techfloor/orange/corner{ dir = 4 @@ -6350,28 +3696,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"ezp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"ezU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) "eAb" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -6389,41 +3713,19 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora) +"eAA" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "eAJ" = ( /obj/landmark/spawnpoint/job/medical_doctor, /turf/simulated/floor/tiled/white, /area/medical/surgery2) -"eAR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"eAV" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"eBb" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/terminal) -"eBf" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "kitchen-c"; - layer = 3.3; - name = "Kitchen Service Shutters" - }, -/obj/machinery/door/firedoor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "eBr" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -6433,19 +3735,53 @@ }, /turf/simulated/floor/tiled, /area/space) -"eCp" = ( -/obj/structure/cable/green{ - icon_state = "0-2" +"eBM" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_one/starboard) +"eBY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/machinery/power/apc/critical/north_bump, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"eDe" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/plating, -/area/maintenance/dormitory) +/area/main_map/maintenance/deck_one/aft/starboard) +"eCl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"eCP" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"eDy" = ( +/obj/structure/railing, +/obj/structure/catwalk, +/turf/simulated/floor/reinforced/airless, +/area/space) "eDG" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -6494,14 +3830,43 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) +"eDV" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"eEa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "eEc" = ( /turf/simulated/floor/reinforced, /area/space) -"eEd" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/tiled, -/area/maintenance/dormitory) +"eEX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/oxygen_pump{ + dir = 4; + pixel_x = 30 + }, +/obj/effect/floor_decal/spline/fancy, +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/Hangar_bay/deck1/a) "eFb" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -6517,48 +3882,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_6) -"eFK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"eFT" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"eGb" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/space) -"eGe" = ( -/obj/machinery/door/airlock/security{ - name = "Equipment Storage"; - req_access = list() - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) "eGG" = ( /obj/structure/cable{ icon_state = "32-8" @@ -6574,69 +3897,40 @@ /obj/machinery/door/firedoor, /turf/simulated/open, /area/maintenance/solars) -"eHb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) "eHd" = ( /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"eHj" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/energy/laser{ - pixel_x = -1; - pixel_y = -11 - }, -/obj/item/gun/energy/laser{ - pixel_x = -1; - pixel_y = -2 - }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloorblack{ +"eHE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/item/gun/energy/laser{ - pixel_x = -1; - pixel_y = -8 - }, -/obj/item/gun/energy/laser{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"eHs" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm10"; - name = "Dorm 1" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"eIk" = ( -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"eIG" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, /turf/simulated/floor/tiled, -/area/hallway/primary/fore) +/area/main_map/hallway/deck1/fore) +"eJi" = ( +/obj/structure/table/rack/shelf/steel{ + pixel_y = -2 + }, +/obj/machinery/door/window/northleft, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/electrical{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) +"eJj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "eJR" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -6647,30 +3941,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/wood, /area/bridge/hallway) -"eKa" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"eKu" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/deck_one) "eKy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -6692,111 +3962,26 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"eLn" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 33 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"eLt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/button/remote/blast_door{ - id = "armorylight"; - name = "Light Armory Access"; - pixel_x = -6; - pixel_y = 25; - req_access = list(3) - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"eLy" = ( -/obj/structure/table/steel, -/obj/item/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"eLC" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) -"eLN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) "eMv" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"eNc" = ( +"eMT" = ( +/obj/machinery/door/airlock/glass/security, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/security/hallway) +"eMU" = ( /obj/effect/floor_decal/techfloor{ - dir = 10 + dir = 1 }, -/obj/effect/floor_decal/techfloor/hole/right, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/obj/machinery/light/no_nightshift{ + dir = 1 }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) -"eNn" = ( -/obj/structure/table/steel, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/item/storage/box/teargas{ - pixel_y = 3 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) +/area/rnd/lab) "eNu" = ( /obj/structure/flora/pottedplant/minitree, /obj/machinery/atmospherics/component/unary/vent_pump/on, @@ -6814,58 +3999,31 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"eOV" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 +"ePj" = ( +/obj/machinery/computer/timeclock/premade/east, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) +"ePK" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 }, -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/space) -"ePH" = ( -/obj/machinery/door/airlock/glass/medical{ - id_tag = "MedbayEmergency"; - name = "Medbay Emergency Access" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay) -"eQl" = ( -/obj/machinery/mineral/equipment_vendor/survey, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"eQN" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"eRc" = ( -/obj/structure/bed/chair/bay/chair/padded/red/smallnest, -/obj/random/plushie, -/turf/simulated/floor/carpet/arcadecarpet, -/area/maintenance/deck_one/port) -"eRt" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"eQJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/recreation_area) +"eRN" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research/researchdivision) "eRO" = ( /obj/structure/bed/double, /obj/item/bedsheet/hopdouble, @@ -6875,75 +4033,17 @@ /obj/structure/flora/pottedplant/small, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_4) -"eSe" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/clothing/suit/armor/pcarrier{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/item/clothing/suit/armor/pcarrier{ - pixel_x = 5; - pixel_y = -6 - }, -/obj/item/clothing/suit/armor/pcarrier{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/suit/armor/pcarrier{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"eSo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +"eSr" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/east, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) "eTp" = ( /obj/structure/bed/chair/wood{ dir = 4 }, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officecommon) -"eTs" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/port) -"eTF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = 25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) "eTH" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -6955,76 +4055,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/gaycarpet, /area/crew_quarters/sleep/Dorm_7) -"eTL" = ( -/obj/machinery/door/window/westright{ - dir = 2; - name = "Bar"; - req_access = list(25); - req_one_access = list(25) - }, -/obj/machinery/door/firedoor{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"eUd" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/white, -/area/space) "eUu" = ( /obj/structure/bed/double, /obj/item/bedsheet/iandouble, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"eUz" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 +"eVI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 8; - name = "Security Reception" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/security/lobby) -"eUX" = ( -/obj/structure/ladder/up, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"eVa" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/bookcase, -/obj/item/book/manual/standard_operating_procedure, -/obj/item/book/manual/standard_operating_procedure, -/obj/item/book/manual/security_space_law, -/obj/item/book/manual/security_space_law, -/obj/item/book/manual/command_guide, -/obj/item/book/manual/command_guide, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/camera/network/security, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"eVN" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) "eVW" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -7035,10 +4079,14 @@ /obj/machinery/smartfridge/drying_rack, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"eWb" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/wood, -/area/maintenance/deck_one/aft/port) +"eWD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "eWL" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 @@ -7048,36 +4096,15 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/security_lockerroom) -"eWR" = ( -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_y = -26 +"eWM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"eWT" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -31 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/space) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "eWU" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -7091,9 +4118,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) -"eXx" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_4) "eXA" = ( /obj/structure/sink{ pixel_y = 22 @@ -7108,21 +4132,10 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_3) -"eXL" = ( -/obj/machinery/door/airlock/maintenance/engi, +"eYq" = ( +/obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/port) -"eYe" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/crew, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"eYB" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/area/main_map/maintenance/deck_one) "eYC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -7133,34 +4146,26 @@ /obj/machinery/computer/timeclock/premade/east, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"eYK" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "shuttle_outbound" - }, -/obj/structure/plasticflaps, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"eZi" = ( -/obj/structure/table/marble, -/obj/item/material/knife/butch, -/obj/item/material/kitchen/rollingpin, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/space) "eZw" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/tiled/monotile, /area/space) +"eZK" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/rnd{ + req_access = list(47) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/research/researchdivision) +"fak" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) "fat" = ( /obj/structure/bed/chair{ dir = 8 @@ -7173,6 +4178,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) +"faB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "faD" = ( /obj/structure/closet/hydrant{ pixel_y = 32 @@ -7182,37 +4199,12 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_3) -"faR" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/structure/lattice, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/space) -"fbF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - pixel_x = -14; - pixel_y = -25; - req_access = list(67) - }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/techmaint, -/area/space) +"fbE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/research_foyer) "fca" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7220,81 +4212,15 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"fcf" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/armory) -"fch" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) "fcj" = ( /obj/structure/table/marble, /obj/item/material/kitchen/rollingpin, /obj/item/material/knife/butch, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"fcq" = ( -/obj/structure/curtain/open/shower/engineering, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"fcP" = ( -/obj/machinery/door/airlock{ - name = "Internal Affairs"; - req_access = list(38) - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/iaa/officea) -"fde" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/closet/l3closet/scientist/double, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "fdk" = ( /turf/simulated/floor/tiled/dark, /area/medical/surgery_hallway) -"fdp" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/structure/reagent_dispensers/acid{ - pixel_y = 30 - }, -/obj/machinery/r_n_d/circuit_imprinter{ - dir = 1 - }, -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"fdT" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) -"fet" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"feu" = ( -/obj/mecha/combat/fighter/baron/sec/loaded, -/turf/simulated/floor/tiled, -/area/space) "feG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -7304,48 +4230,9 @@ }, /turf/simulated/floor/tiled, /area/space) -"feJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"ffA" = ( -/obj/machinery/computer/ship/engines, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"ffH" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/door/blast/regular/open{ - id = "emergency_shuttle_lockdown"; - name = "Emergency Shuttle Blast Door" - }, -/obj/structure/window/reinforced/polarized/full{ - id = "emergency_medical" - }, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/escape) -"ffU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, +"fgg" = ( /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) +/area/tether/surfacebase/security/hallway) "fgk" = ( /obj/machinery/power/tracker, /obj/structure/cable/green{ @@ -7353,15 +4240,12 @@ }, /turf/simulated/floor/airless, /area/space) -"fgD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"fgF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/crew_quarters/sleep/Dorm_3) +/turf/simulated/floor/wood, +/area/main_map/hallway/deck1/fore) "fgQ" = ( /obj/machinery/camera/network/research, /obj/effect/floor_decal/techfloor{ @@ -7369,34 +4253,16 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"fgR" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"fhS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/door/airlock/hatch{ - name = "Medical Compartment"; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"fgX" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/lobby) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) "fhX" = ( /obj/structure/panic_button{ pixel_x = -32 @@ -7406,6 +4272,15 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"fii" = ( +/obj/structure/table/fancyblack, +/obj/item/flashlight/pen{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/flashlight/pen, +/turf/simulated/floor/carpet/arcadecarpet, +/area/main_map/maintenance/deck_one/port) "fin" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/firstaid/surgery, @@ -7421,56 +4296,23 @@ "fjW" = ( /turf/simulated/floor/carpet/oracarpet, /area/tether/surfacebase/security/iaa/officea) -"fki" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/fore) -"fkr" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"fln" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"flA" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"fmf" = ( -/turf/simulated/floor/carpet/sblucarpet, -/area/crew_quarters/sleep/Dorm_2) -"fmw" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/machinery/camera/network/civilian, -/obj/structure/flora/pottedplant/orientaltree, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"fmR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 +"fkA" = ( +/obj/structure/closet{ + desc = "Dents and old flaky paint blanket this old storage unit."; + name = "old locker" }, +/obj/item/storage/toolbox/lunchbox/heart, +/obj/random/plushie, /turf/simulated/floor/plating, -/area/tether/surfacebase/security/iaa/officecommon) +/area/main_map/maintenance/deck_one/port) +"flT" = ( +/obj/structure/sign/directions/cryo, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 10 + }, +/turf/simulated/wall, +/area/main_map/hallway/deck1) "fmV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -7483,18 +4325,6 @@ /obj/landmark/spawnpoint/job/security_officer, /turf/simulated/floor/tiled/monotile, /area/security/security_lockerroom) -"fnA" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"fnO" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) "fof" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -7530,89 +4360,52 @@ }, /turf/simulated/floor/grass, /area/rnd/xenobiology/xenoflora) -"fpL" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/port) "fqd" = ( /obj/machinery/smartfridge/chemistry, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/chemistry) -"frn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"fqs" = ( +/obj/effect/floor_decal/techfloor/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/landmark{ + name = "lightsout" }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"fro" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/fuel_port{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "frw" = ( /obj/structure/table/steel_reinforced, /obj/item/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"fsb" = ( -/obj/structure/table/reinforced, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"fsO" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_one/port) +"fsn" = ( +/turf/simulated/wall/prepainted/civilian, +/area/main_map/hallway/deck1) "fsW" = ( /turf/simulated/wall/r_wall, /area/maintenance/solars) +"ftC" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/aft/starboard) "ftD" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible, /obj/machinery/meter, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"ftN" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 +"ftR" = ( +/turf/simulated/open, +/area/main_map/hallway/deck1/fore) +"fuV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/space) -"fuh" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = -26 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) -"fvb" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 7 - }, -/obj/machinery/newscaster{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +/area/crew_quarters/bar) "fvj" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -7622,20 +4415,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) -"fvw" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "fvI" = ( /obj/effect/floor_decal/corner/blue{ dir = 1 @@ -7665,15 +4444,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgery) -"fwr" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/primary/fore) -"fwL" = ( -/obj/structure/fitness/weightlifter, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) "fwY" = ( /obj/machinery/door/airlock/security{ name = "Equipment Storage"; @@ -7684,26 +4454,31 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"fxa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"fwZ" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) +"fxL" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/lino, +/area/main_map/maintenance/deck_one/aft/port) +"fxM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +/obj/effect/floor_decal/techfloor{ + dir = 5 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/bed/chair/sofa/black/left, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"fxB" = ( -/obj/structure/table/woodentable, -/obj/structure/flora/pottedplant/shoot, -/obj/item/instrument/saxophone, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research/researchdivision) "fxW" = ( /obj/structure/table/rack/steel, /obj/structure/window/reinforced{ @@ -7738,114 +4513,73 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/xenoflora) -"fyG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"fzo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"fyY" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/centcom/simulated/terminal) -"fzz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/space) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/port) +"fzx" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/red/border, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/south, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) "fzJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"fzN" = ( -/obj/effect/floor_decal/industrial/outline/yellow, +"fzY" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4; + name = "Port to Isolation" + }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled, -/area/maintenance/dormitory) -"fAv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"fAB" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"fAI" = ( -/obj/machinery/light_switch{ - pixel_x = -9; - pixel_y = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"fAM" = ( -/obj/structure/table/bench/steel, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"fAS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/area/rnd/xenobiology/xenoflora_storage) "fBj" = ( /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/heads/hor) -"fBE" = ( -/obj/structure/table/woodentable, -/obj/structure/flora/pottedplant/decorative, -/obj/machinery/button/remote/airlock{ - id = "dorm2"; - name = "Room 2 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 +"fBp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"fBY" = ( -/obj/structure/cable/green{ - icon_state = "0-4" +/obj/machinery/oxygen_pump{ + dir = 4; + pixel_x = 30 }, -/turf/simulated/floor/wood, +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/Hangar_bay/deck1/a) +"fBA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/research/researchdivision) +"fCh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, /area/space) "fCs" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ @@ -7872,12 +4606,6 @@ }, /turf/simulated/floor/tiled/red, /area/tether/surfacebase/security/lobby) -"fCZ" = ( -/obj/machinery/computer/ship/helm{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "fDi" = ( /obj/machinery/door/airlock/glass/medical{ name = "Medbay Reception"; @@ -7894,6 +4622,12 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) +"fDu" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "fDC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -7903,44 +4637,12 @@ }, /turf/simulated/floor/tiled/monotile, /area/space) -"fDI" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 +"fEq" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/space) -"fDP" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/port) -"fDQ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/space) -"fDU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/space) -"fEd" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "iaar" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) "fEr" = ( /obj/landmark/spawnpoint/job/xenobotanist, /turf/simulated/floor/tiled, @@ -7973,76 +4675,32 @@ /obj/structure/ladder, /turf/simulated/floor/plating, /area/maintenance/security/upper) -"fFN" = ( -/obj/effect/floor_decal/corner/paleblue/bordercee{ - dir = 1 +"fFj" = ( +/obj/machinery/door/airlock/glass/medical{ + id_tag = "MedbayFoyer"; + name = "Treatment Center" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/machinery/door/firedoor/glass{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/landmark/spawnpoint/job/head_nurse, /turf/simulated/floor/tiled/white, -/area/medical/medbay) -"fGp" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/deployable/barrier, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"fGq" = ( -/obj/effect/floor_decal/borderfloorblack/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/area/medical/reception) +"fGB" = ( +/obj/structure/shuttle/engine/heater{ dir = 4 }, -/obj/machinery/camera/network/security{ - dir = 10 - }, -/obj/machinery/deployable/barrier, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"fGI" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"fGL" = ( -/obj/structure/bed/chair/bay/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"fHd" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) +/turf/simulated/shuttle/wall/voidcraft, +/area/main_map/Hangar_bay/deck1/a) "fHf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled, /area/space) -"fHt" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/tether/surfacebase/surface_three_hall) +"fHw" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) "fIh" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/bed/chair/comfy/beige{ @@ -8061,22 +4719,6 @@ }, /turf/simulated/wall/r_wall, /area/maintenance/solars) -"fIN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) -"fIS" = ( -/obj/machinery/vending/boozeomat, -/turf/simulated/floor/tiled/dark, -/area/space) -"fIX" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) "fJs" = ( /obj/machinery/door/airlock/command{ name = "Chief Medical Officer's Living Quarters"; @@ -8090,53 +4732,27 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"fJv" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 - }, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) "fJC" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"fJK" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/deck_one/port) -"fJU" = ( -/obj/machinery/newscaster{ - pixel_x = 30 +"fJE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/machinery/recharge_station, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"fKn" = ( -/obj/structure/window/basic, -/obj/structure/bed/chair/sofa/black{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "fKr" = ( /obj/machinery/door/firedoor{ dir = 8 }, /turf/simulated/floor/wood, /area/bridge/hallway) -"fKG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_one) -"fKK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) +"fKH" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) "fKV" = ( /obj/machinery/washing_machine, /turf/simulated/floor/tiled/white, @@ -8144,13 +4760,6 @@ "fLu" = ( /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"fLx" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) "fLP" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -8158,50 +4767,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"fMx" = ( -/turf/simulated/floor/wood, -/area/maintenance/deck_one/aft/port) -"fMC" = ( -/obj/machinery/air_alarm{ - pixel_y = 30 - }, -/obj/machinery/door/airlock/glass/security{ - name = "Locker Room"; - req_one_access = list(2) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"fME" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating/airless, -/area/space) -"fNe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"fLR" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"fNz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/starboard) "fND" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -8212,20 +4787,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/robotics) -"fOl" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) -"fPg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"fPE" = ( -/obj/structure/sign/deck/first, -/turf/simulated/wall, -/area/medical/reception) "fPY" = ( /obj/structure/railing{ dir = 4 @@ -8264,13 +4825,14 @@ }, /turf/simulated/floor/tiled, /area/security/security_lockerroom) -"fQA" = ( -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_one/port) "fQC" = ( /obj/landmark/spawnpoint/job/paramedic, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) +"fQI" = ( +/obj/machinery/door/airlock/maintenance/engi, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/aft/port) "fQJ" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 @@ -8336,12 +4898,6 @@ /obj/item/deskbell, /turf/simulated/floor/tiled/white, /area/medical/reception) -"fSJ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "fSM" = ( /obj/structure/table/rack/shelf/steel, /obj/effect/floor_decal/industrial/outline/red, @@ -8353,47 +4909,6 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/dark, /area/security/tactical) -"fTm" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/rnd{ - req_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/research/researchdivision) -"fUn" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"fUC" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/port) -"fUI" = ( -/obj/machinery/door/airlock/glass/research{ - name = "Xenoflora Research"; - req_one_access = list(30,47,77) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/xenoflora) -"fUR" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "fUW" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -8415,24 +4930,6 @@ /obj/item/reagent_containers/dropper, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"fVr" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/north) "fVL" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 1 @@ -8440,38 +4937,39 @@ /obj/landmark/spawnpoint/job/medical_doctor, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"fVM" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, +"fWg" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"fWe" = ( -/obj/effect/floor_decal/corner/paleblue/bordercee{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/landmark/spawnpoint/job/head_nurse, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) +/area/rnd/research_foyer) "fWj" = ( /turf/simulated/wall, /area/maintenance/security/port) -"fXt" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 8 +"fWo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"fWp" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id = "armorytactical"; + name = "Tactical Armory Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/reinforced, +/area/security/tactical) +"fWS" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/port) +"fXo" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/security_equiptment_storage) "fXM" = ( /obj/structure/table/woodentable, /obj/item/folder/red, @@ -8485,19 +4983,16 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"fXR" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" +"fYj" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock{ - id_tag = "dorm2"; - name = "Dorm 2" +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/starboard) "fYx" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -8542,98 +5037,26 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"fZp" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"fZv" = ( -/obj/structure/table/steel, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/item/clothing/glasses/hud/security, -/obj/item/clothing/glasses/hud/security, -/obj/item/clothing/glasses/hud/security, -/obj/item/cell/device/weapon{ - pixel_x = -3 - }, -/obj/item/cell/device/weapon{ - pixel_x = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) -"fZK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"gaU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_5) -"gaV" = ( -/obj/structure/closet/wardrobe/red, -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"gbp" = ( -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 10 - }, -/turf/simulated/wall, -/area/hallway/primary/central_one) +"gaL" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/starboard) "gbt" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"gbC" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"gbU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"gcl" = ( +"gbB" = ( +/obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/plating, -/area/crew_quarters/recreation_area) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1) +"gbT" = ( +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) "gcs" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -8645,26 +5068,44 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/wood, /area/bridge/hallway) -"gcF" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"gda" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"gcX" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + id_tag = "expshuttle_docker"; + pixel_x = 28; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) +"gcZ" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 1; + pixel_y = -24 + }, +/obj/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) +"gdf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 }, -/obj/structure/sign/directions/roomnum{ - dir = 8; - pixel_y = -23 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"gdc" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/dormitory) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) "gdi" = ( /obj/machinery/deployable/barrier, /obj/effect/floor_decal/corner/blue{ @@ -8684,45 +5125,11 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"gdY" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"geI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"geR" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/armor/vest/wolftaur{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/clothing/suit/armor/vest/wolftaur{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/storage/lockbox, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) -"gfd" = ( -/obj/machinery/vending/security, +"gef" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) -"gfp" = ( -/obj/effect/floor_decal/corner/green/full, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) "gfx" = ( /obj/structure/railing, /obj/structure/railing{ @@ -8730,10 +5137,6 @@ }, /turf/simulated/open, /area/space) -"gfB" = ( -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) "gfN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 @@ -8779,14 +5182,10 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"ggp" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +"ggJ" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/research/researchdivision) "ggN" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector, @@ -8798,22 +5197,9 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"ggW" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/space) -"ghh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Crew Cryo Bay" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +"ght" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/bar_backroom) "ghG" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -8877,41 +5263,6 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"gjD" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"gjT" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"gko" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/red, -/area/tether/surfacebase/security/lobby) -"gkB" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/deployable/barrier, -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorblack/full, -/obj/effect/floor_decal/corner/blue/border{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) "gkF" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/railing{ @@ -8920,23 +5271,6 @@ /obj/machinery/door/window/southleft, /turf/simulated/floor/glass/reinforced, /area/crew_quarters/bar) -"gkH" = ( -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) -"gkO" = ( -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = -10 - }, -/obj/structure/sign/directions/cryo{ - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 10 - }, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) "glc" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -8945,15 +5279,6 @@ }, /turf/simulated/floor, /area/holodeck_control) -"glS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "glV" = ( /obj/structure/closet/bombclosetsecurity, /obj/effect/floor_decal/corner/blue{ @@ -8961,31 +5286,25 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"gni" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/green{ - icon_state = "0-4" +"gmr" = ( +/obj/machinery/door/airlock/glass, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_one/aft/port) +"gms" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/security/security_lockerroom) -"gnr" = ( -/obj/structure/sign/deck/first, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"gnz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/space) +/area/main_map/hallway/deck1) +"gnB" = ( +/obj/machinery/door/airlock/glass_science, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/research/researchdivision) "gnD" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -8993,6 +5312,15 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/xenobiology/xenoflora_storage) +"gnV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "gnZ" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -9007,15 +5335,12 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_9) -"gpa" = ( -/obj/structure/toilet{ - pixel_y = 10 +"gpm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) -"gqq" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "gqE" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 @@ -9026,6 +5351,10 @@ /obj/structure/table/glass, /turf/simulated/floor/tiled/white, /area/medical/reception) +"gqK" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/lino, +/area/security/detectives_office) "gqX" = ( /obj/structure/table/reinforced, /obj/item/clipboard, @@ -9036,18 +5365,6 @@ /obj/item/paper/dockingcodes, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"gra" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_one/aft/starboard) -"grt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "gru" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -9062,28 +5379,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"grG" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"grR" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/white, -/area/space) -"gsd" = ( -/obj/machinery/computer/timeclock/premade/east, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_one) "gsh" = ( /obj/structure/table/steel, /obj/item/storage/box/evidence, @@ -9099,71 +5394,34 @@ }, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"gsk" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 +"gss" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "tether_shuttle"; - pixel_x = 25; - tag_door = "tether_shuttle_hatch" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/shuttle/floor/black, -/area/space) -"gsn" = ( -/obj/machinery/door/firedoor, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock{ - id_tag = "dorm4"; - name = "Dorm 4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) +/turf/simulated/floor/tiled/red, +/area/tether/surfacebase/security/lobby) "gsu" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/security/security_lockerroom) -"gtb" = ( -/obj/item/radio/beacon, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"gtf" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/wall/rshull, -/area/space) -"gts" = ( -/obj/machinery/door/airlock/glass/security/polarized{ - id_tag = "detdoor"; - id_tint = "det_office"; - name = "Detective's Office"; - req_access = list(4) - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"gtC" = ( -/obj/machinery/computer/ship/engines, -/obj/machinery/oxygen_pump{ - dir = 8; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"guL" = ( -/obj/structure/bed/chair/comfy/teal{ +"gul" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/robotics/mechbay) +"guH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) "gvf" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -9187,52 +5445,16 @@ }, /turf/simulated/floor/carpet/purcarpet, /area/tether/surfacebase/security/iaa/officeb) -"gvz" = ( -/obj/structure/shuttle/engine/heater, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) -"gvF" = ( -/obj/effect/floor_decal/borderfloor/corner, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"gvR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Detective"; - sortType = "Detective" - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"gxe" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass/security{ - name = "Locker Room"; - req_one_access = list(2) - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) +"gwf" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/Hangar_bay/deck1/a) +"gwD" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/lab) "gxn" = ( /turf/simulated/open, /area/crew_quarters/bar) -"gxC" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) "gxY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9246,6 +5468,25 @@ }, /turf/simulated/floor/plating, /area/security/forensics) +"gyD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/starboard) +"gyF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/security/lobby) "gyH" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -9255,58 +5496,10 @@ }, /turf/simulated/floor/tiled/white, /area/space) -"gyW" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) -"gzj" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"gzk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/space) -"gzr" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Fitness Room" - }, +"gyO" = ( +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/area/tether/surfacebase/security/iaa/officecommon) "gzy" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -9320,43 +5513,19 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) +"gzH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/reinforced, +/area/space) "gAl" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"gAS" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume, -/obj/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = 1; - id_tag = "expshuttle_docker"; - pixel_x = 28; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"gAT" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"gBf" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "iaar" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) "gBi" = ( /obj/machinery/door/firedoor{ dir = 1 @@ -9374,31 +5543,24 @@ /obj/structure/table/standard, /turf/simulated/floor/wood, /area/bridge/hallway) -"gCw" = ( -/obj/landmark/spawnpoint/job/scientist, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"gCG" = ( -/obj/structure/bed/chair/comfy/purp{ - dir = 4 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) "gCL" = ( /turf/simulated/floor/tiled/red, /area/space) -"gDn" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"gDe" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) "gDQ" = ( /obj/machinery/door/window{ desc = "Electric Hazard Behind. Enter at own risk"; @@ -9408,122 +5570,29 @@ }, /turf/simulated/floor/crystal, /area/space) -"gEh" = ( -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"gEE" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercee{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"gFp" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/port) -"gFt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/bed/chair/shuttle{ +"gEp" = ( +/obj/structure/railing{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"gFu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"gFB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"gFL" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) +/turf/simulated/open, +/area/main_map/hallway/deck1/fore) "gFU" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/rnd/research/researchdivision) -"gFW" = ( -/obj/structure/bed/chair/bay/comfy, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"gGp" = ( -/obj/structure/ladder, -/obj/structure/railing{ - dir = 4 +"gGu" = ( +/obj/structure/sign/deck/first, +/turf/simulated/wall/prepainted/civilian, +/area/holodeck_control) +"gHd" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/landmark{ + name = "lightsout" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"gGx" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"gGz" = ( -/turf/simulated/wall/rshull, -/area/space) -"gGY" = ( -/obj/structure/sign/warning/caution, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora_storage) +/turf/simulated/floor/tiled/white, +/area/medical/medbay) "gHu" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -9537,68 +5606,37 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"gHA" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24; - pixel_y = -5 - }, -/obj/structure/bed/chair/comfy/blue, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"gIv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 2; - id = "armoryriot"; - name = "Emergency Armory Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"gID" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ +"gHy" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) +"gIA" = ( +/obj/machinery/door/firedoor{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning/cee, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"gJf" = ( -/obj/machinery/door/airlock{ - name = "Hydroponics"; - req_one_access = list(35) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/obj/machinery/door/airlock/glass/security, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/security/hallway) +"gJU" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, -/area/hydroponics) -"gJS" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +/area/main_map/Hangar_bay/deck1/a) +"gJV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 }, -/obj/structure/bed/double/padded, -/obj/random/bedsheet/double, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "gKw" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -9611,28 +5649,18 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) -"gLc" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25; - pixel_y = -1 +"gLe" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "kitchen"; - name = "Kitchen shutters"; - pixel_x = -24; - pixel_y = 8 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "kitchen-c"; - name = "Kitchen public counter shutters"; - pixel_x = -24; - pixel_y = -10 - }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/reinforced, /area/space) +"gLE" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "gLZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -9642,22 +5670,6 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/crew_quarters/bar) -"gMi" = ( -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) "gMs" = ( /obj/structure/closet/secure_closet/security, /obj/structure/window/basic{ @@ -9688,12 +5700,6 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/surgery_hallway) -"gMO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/wall/rshull, -/area/space) "gMZ" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 @@ -9726,66 +5732,10 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/Dorm_2) -"gNK" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor, -/area/tether/surfacebase/security/briefingroom) "gNQ" = ( /obj/structure/stairs/spawner/north, /turf/simulated/floor/reinforced/airless, /area/space) -"gOa" = ( -/turf/simulated/shuttle/wall, -/area/space) -"gPd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"gPm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/space) -"gPC" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"gPP" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/structure/closet/crate/nanotrasen, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) -"gPW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/port) "gQs" = ( /obj/machinery/door/airlock/glass/medical{ name = "Paramedic Storage" @@ -9799,27 +5749,28 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"gQR" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) "gQU" = ( /obj/landmark/spawnpoint/job/medical_doctor, /turf/simulated/floor/tiled/white, /area/medical/surgery) +"gRB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "gRF" = ( /obj/machinery/vending/nifsoft_shop{ dir = 8 }, /turf/simulated/floor/tiled, /area/space) +"gRZ" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/starboard) "gSb" = ( /obj/item/clothing/suit/space/void, /obj/item/clothing/head/helmet/space/void, @@ -9831,13 +5782,30 @@ /obj/item/suit_cooling_unit, /turf/simulated/floor/tiled/techfloor, /area/maintenance/solars) -"gSu" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" +"gSx" = ( +/obj/machinery/conveyor{ + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/space) +/obj/map_helper/conveyor/belt{ + id_tag = "cargo_mailroom"; + name = "Cargo Mail belt" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/port) +"gTl" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/storage/box/gloves{ + pixel_y = 4 + }, +/obj/item/storage/box/syringes{ + pixel_y = -4 + }, +/obj/machinery/air_alarm{ + desc = " "; + pixel_y = 24 + }, +/turf/simulated/floor/lino, +/area/security/detectives_office) "gTv" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Emergency Maintenance Access Use Only" @@ -9845,47 +5813,18 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techmaint, /area/medical/surgery) -"gUD" = ( -/obj/structure/bed/chair/shuttle{ +"gUS" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/crew_quarters/heads/hos) +"gWg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) -"gVz" = ( -/obj/machinery/door/airlock/glass_science, -/turf/simulated/floor/tiled, -/area/space) -"gVY" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"gWm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"gXd" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"gXn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1) "gXp" = ( /obj/structure/railing, /turf/simulated/open, @@ -9903,118 +5842,23 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora) -"gXG" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +"gXK" = ( +/obj/machinery/door/airlock/medical{ + name = "Chemistry"; + req_one_access = list(33) }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"gXT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/machinery/door/window/brigdoor/southleft{ - req_access = list(3) - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"gYp" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) -"gYX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"gZf" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/door/firedoor/glass{ dir = 4 }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"gZh" = ( -/obj/item/handcuffs, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"gZz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/space) -"gZA" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/medical/chemistry) "gZM" = ( /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_1) -"gZU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"haq" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) "haO" = ( /obj/structure/flora/pottedplant/orientaltree, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_3) -"haW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"haZ" = ( -/obj/machinery/cryopod{ - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"hbl" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/techfloor, -/area/space) "hbN" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -10023,12 +5867,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/Dorm_1) -"hce" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) "hdb" = ( /obj/machinery/holopad, /turf/simulated/floor/tiled/techfloor, @@ -10065,50 +5903,9 @@ }, /turf/simulated/floor/reinforced, /area/security/tactical) -"heL" = ( -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"heT" = ( -/obj/structure/closet/crate, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"heV" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"heY" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"hfD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/shower{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +"heZ" = ( +/turf/simulated/wall, +/area/main_map/hallway/deck1) "hfG" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -10124,77 +5921,16 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"hfN" = ( -/turf/simulated/wall, -/area/security/security_equiptment_storage) -"hgg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/button/windowtint{ - id = "iaar"; - pixel_x = -25; - pixel_y = 7 - }, -/obj/landmark/spawnpoint/job/lawyer, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) "hgy" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/security/security_equiptment_storage) -"hgF" = ( -/obj/structure/ladder, -/turf/simulated/floor/plating, -/area/space) -"hgN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"hhb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/sign/double/barsign{ - pixel_y = 30 - }, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/dark, -/area/space) -"hhh" = ( -/obj/machinery/holopad, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/security/lobby) -"hhJ" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Internal Affairs" - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"hhK" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"hin" = ( -/turf/simulated/wall, -/area/hallway/primary/fore) -"hiO" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_7) -"hjg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "hjv" = ( /obj/structure/closet/crate/bin{ desc = "A large bin for medical and other personnel that deals with bio-grade waste."; @@ -10211,26 +5947,36 @@ "hjR" = ( /turf/simulated/shuttle/wall/voidcraft/hard_corner, /area/medical/medbay) -"hkJ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 +"hky" = ( +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) +/obj/machinery/power/apc/critical/north_bump, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck1/a) +"hkO" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"hlb" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/north, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) "hlh" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/medical/surgery) -"hlu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one) +"hlG" = ( +/obj/random/plushie, +/turf/simulated/floor/carpet/arcadecarpet, +/area/main_map/maintenance/deck_one/port) "hlQ" = ( /obj/effect/floor_decal/techfloor{ dir = 8 @@ -10240,20 +5986,32 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"hmu" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/bed/chair/comfy/teal, -/obj/machinery/computer/security/telescreen{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) +"hmh" = ( +/turf/simulated/wall/prepainted/command, +/area/crew_quarters/heads/cmo) "hmK" = ( /turf/simulated/floor/tiled/techfloor, /area/maintenance/solars) +"hmY" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/reagent_dispensers/acid{ + pixel_y = 30 + }, +/obj/machinery/r_n_d/circuit_imprinter{ + dir = 1 + }, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"hoi" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/robotics) "hoO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, @@ -10269,29 +6027,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"hoV" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"hoY" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/nanopaste{ - amount = 30 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) "hpg" = ( /obj/effect/floor_decal/corner/paleblue/bordercee{ dir = 1 @@ -10302,22 +6037,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"hpm" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/machinery/shipsensors, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"hps" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/carry, -/area/space) "hpH" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -10327,19 +6046,17 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"hpZ" = ( -/obj/effect/floor_decal/corner/black{ +"hpV" = ( +/obj/effect/floor_decal/techfloor{ dir = 9 }, -/obj/effect/floor_decal/corner/black{ - dir = 6 +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 }, -/obj/structure/table/rack/shelf/steel, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "hqk" = ( /obj/machinery/computer/security/wooden_tv, /turf/simulated/floor/carpet, @@ -10362,16 +6079,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hor) -"hrn" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_6) -"hrD" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) "hrP" = ( /obj/item/radio/intercom{ dir = 8; @@ -10380,13 +6087,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_9) -"hsd" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 8 - }, -/turf/simulated/wall, -/area/hallway/primary/central_one) "hsk" = ( /obj/structure/lattice, /obj/structure/cable/green{ @@ -10401,99 +6101,59 @@ /obj/machinery/door/firedoor, /turf/simulated/open, /area/maintenance/substation/command) -"htm" = ( -/obj/structure/bed/chair/comfy/teal{ +"hso" = ( +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) +"hsS" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/medbay) +"hti" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"htr" = ( -/obj/effect/floor_decal/techfloor/corner, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) -"htX" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"huD" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/shuttle/wall/voidcraft, -/area/space) -"hvt" = ( -/obj/machinery/atmospherics/component/binary/passive_gate, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/xenoflora_storage) -"hvF" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"hvL" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"hvV" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"hwh" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm11"; - name = "Dorm 11" - }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) +"htX" = ( +/obj/structure/table/woodentable, /turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) -"hwq" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/lobby) +/area/crew_quarters/sleep/Dorm_3) +"hvt" = ( +/obj/machinery/atmospherics/component/binary/passive_gate, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora_storage) +"hvC" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/maintenance/substation/command) "hwv" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, /turf/simulated/floor/carpet/oracarpet, /area/crew_quarters/sleep/Dorm_6) +"hwB" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -4 + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = -10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall, +/area/main_map/hallway/deck1) "hwO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -10501,15 +6161,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_4) -"hwU" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) "hxc" = ( /obj/machinery/door/firedoor/glass, /obj/structure/table/reinforced, @@ -10536,67 +6187,6 @@ /obj/structure/bed/chair/wood, /turf/simulated/floor/glass/reinforced, /area/crew_quarters/bar) -"hxR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/space) -"hxV" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area_hallway) -"hyg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"hyy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"hyS" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"hzu" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) -"hzw" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/shuttle/wall/voidcraft, -/area/space) "hzV" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -10607,9 +6197,9 @@ }, /turf/simulated/floor/carpet/gaycarpet, /area/crew_quarters/sleep/Dorm_7) -"hAb" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/chief) +"hzX" = ( +/turf/simulated/open, +/area/main_map/hallway/deck1) "hAj" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -10633,46 +6223,26 @@ /obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/security/lobby) -"hBk" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"hBs" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"hBL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"hCi" = ( -/obj/structure/table/bench/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 +/area/main_map/hallway/deck1) +"hBO" = ( +/obj/machinery/door/airlock/glass, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/door/firedoor/glass{ + dir = 4 }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/bar) +"hBV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) +/area/main_map/hallway/deck1/fore) "hCC" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass, @@ -10687,32 +6257,9 @@ /obj/machinery/door/window/brigdoor/northleft, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/security/lobby) -"hDl" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"hDF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/dark, -/area/space) +"hDc" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/crew_quarters/captain) "hEo" = ( /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) @@ -10726,122 +6273,45 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"hFF" = ( -/obj/effect/floor_decal/corner/paleblue/bordercee{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/machinery/light/no_nightshift{ +"hHj" = ( +/obj/effect/floor_decal/corner/red/full{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"hGa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/steel, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/machinery/recharger/wallcharger{ + pixel_x = -22 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/north, +/turf/simulated/floor/tiled/dark, +/area/security/riot_control) +"hHn" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"hGe" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/cmo) -"hGD" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"hGL" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/open, -/area/medical/medbay) -"hGQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"hHg" = ( -/turf/space/basic, -/area/tether/surfacebase/outside/outside3) -"hIb" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) -"hJe" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/deck_one/aft/starboard) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/starboard) "hJz" = ( /obj/structure/bed/double/padded, /obj/random/bedsheet/double, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_2) -"hJQ" = ( -/turf/simulated/wall, -/area/crew_quarters/heads/chief) -"hJR" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/structure/closet/walllocker/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/closet/walllocker/emergsuit_wall{ - dir = 4; - pixel_x = 32 - }, +"hJO" = ( +/obj/machinery/door/airlock/maintenance, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/techmaint, -/area/space) -"hKk" = ( -/obj/machinery/door/airlock/command{ - name = "Cockpit" - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) +/area/main_map/hallway/deck1) +"hKl" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/sleep/Dorm_4) "hKm" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/wood, /area/bridge/hallway) -"hKx" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) -"hLe" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/shuttle_control/emergency, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) "hLw" = ( /obj/machinery/button/windowtint{ id = "holodeck"; @@ -10854,30 +6324,47 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) -"hLD" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/shoes/leg_guard/combat, -/obj/item/clothing/gloves/arm_guard/combat, -/obj/item/clothing/suit/armor/combat, -/obj/item/clothing/head/helmet/combat, -/obj/effect/floor_decal/corner/black/full{ +"hMj" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) "hMl" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel_ridged, /area/space) -"hMN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"hMx" = ( +/obj/structure/cable/green{ + icon_state = "32-2" + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_one/port) +"hMB" = ( +/obj/structure/filingcabinet, +/obj/machinery/light/no_nightshift{ dir = 1 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) +"hMD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security{ + name = "Warden's Office"; + req_access = list(3) + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"hMF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) "hNa" = ( /obj/machinery/holopad, /obj/structure/cable/green{ @@ -10885,45 +6372,29 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgery2) -"hNq" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/space, -/area/space) -"hOj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"hOo" = ( +/obj/machinery/door/window/brigdoor/northright{ + req_access = null; + req_one_access = list(8) + }, +/obj/effect/floor_decal/techfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/red{ - dir = 1 +/obj/effect/floor_decal/techfloor{ + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"hOU" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"hPH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"hOW" = ( -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/tank/emergency, -/obj/item/tank/emergency, -/obj/item/tank/emergency, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/reinforced, -/area/space) -"hPU" = ( -/turf/simulated/wall, -/area/hydroponics) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) "hPX" = ( /obj/structure/bed/padded, /obj/random/bedsheet, @@ -10932,24 +6403,15 @@ "hQo" = ( /turf/simulated/wall, /area/tether/surfacebase/security/lobby) -"hQA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, +"hRb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"hRh" = ( -/obj/structure/railing, -/obj/structure/railing{ dir = 4 }, -/turf/unsimulated/floor/techfloor_grid, -/area/centcom/simulated/terminal) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "hRq" = ( /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 4 @@ -10962,9 +6424,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"hRC" = ( -/turf/space/basic, -/area/tether/surfacebase/security/upperhall) "hRG" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -10983,54 +6442,16 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"hSg" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 +"hRN" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/research/researchdivision) +"hSk" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"hSv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_one) -"hSx" = ( -/obj/machinery/light_switch{ - pixel_x = -9; - pixel_y = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"hSG" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume, -/obj/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/airlock_sensor/airlock_interior{ - pixel_x = -24; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "hSL" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -11040,16 +6461,9 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"hSN" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/bed/chair/sofa/black/right, -/turf/simulated/floor/carpet/bcarpet, -/area/space) +"hSM" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/surgery) "hTF" = ( /obj/machinery/computer/aifixer, /obj/effect/floor_decal/corner/purple{ @@ -11062,31 +6476,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"hTN" = ( -/obj/machinery/holopad, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"hUm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/space) -"hUW" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) "hUY" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -11114,32 +6503,6 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/tether/surfacebase/security/lobby) -"hWi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) -"hWJ" = ( -/obj/structure/dogbed, -/obj/machinery/camera/network/civilian, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/mob/living/simple_mob/animal/passive/bird/ringneck_dove{ - desc = "The bartenders newest pet on the station. They seem like they want to help you out."; - name = "Brewster" - }, -/turf/simulated/floor/wood, -/area/space) -"hWU" = ( -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/maintenance/deck_one/port) "hXj" = ( /turf/simulated/wall, /area/security/forensics) @@ -11156,19 +6519,17 @@ /obj/structure/catwalk, /turf/simulated/floor/airless, /area/space) -"hXL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 1 +"hXO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"hXT" = ( -/turf/simulated/wall, -/area/medical/surgery_hallway) +/area/main_map/hallway/deck1/fore) +"hYb" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/door/airlock/glass_science, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/lab) "hYz" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -11193,18 +6554,19 @@ }, /turf/simulated/open, /area/rnd/xenobiology/xenoflora_storage) -"hYM" = ( -/obj/structure/cryofeed{ +"hZr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/bar) "iac" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass, @@ -11228,32 +6590,16 @@ /obj/item/deskbell, /turf/simulated/floor/tiled/dark, /area/security/warden) -"iai" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 +"iao" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"iaK" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"iaM" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) +/area/main_map/hallway/deck1/fore) "iaT" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -11263,64 +6609,28 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"ibB" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/folder/blue, -/obj/item/pen, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +"ibx" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "ibZ" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/maintenance/security/port) -"ich" = ( -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = -4 - }, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_y = -10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/hallway/primary/central_one) -"icp" = ( +"icH" = ( /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/sign/directions/roomnum{ - dir = 9; - pixel_x = -32; - pixel_y = -3 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"ide" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) +/area/main_map/maintenance/deck_one/starboard) +"idb" = ( +/obj/machinery/door/airlock/glass/security, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/security/briefingroom) "idX" = ( /obj/machinery/light_switch{ pixel_x = 25 @@ -11339,21 +6649,16 @@ /obj/item/bedsheet/hosdouble, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/heads/hos) -"ifj" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"ieA" = ( +/obj/machinery/conveyor_switch/oneway{ + pixel_y = 14 }, -/obj/effect/floor_decal/corner/red{ - dir = 1 +/obj/map_helper/conveyor/lever{ + id_tag = "_mobile_mining_interior"; + name = "Ore Processing" }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/port) "ifl" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/light/no_nightshift, @@ -11381,114 +6686,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/medical/surgery_hallway) -"igw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 1; - name = "Code Blue Armory" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"igC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/security{ - name = "Warden's Office"; - req_access = list(3) - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"igI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/stool/padded, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"ihd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, +"igr" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_one/forward/port) +"igQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"ihh" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Medbay Lobby" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"iho" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"ihD" = ( -/obj/structure/stairs/spawner/east, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"ihQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +/area/main_map/Hangar_bay/deck1/a) "ihS" = ( /obj/structure/table/rack/shelf/steel, /obj/item/clothing/accessory/armor/helmcover/nt, @@ -11508,9 +6712,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"iiw" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/aft/starboard) "iiE" = ( /obj/effect/floor_decal/techfloor{ dir = 8 @@ -11520,18 +6721,32 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) +"ijo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) +"ijT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/port) "ijW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"ike" = ( -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_one_access = list(35) +"ika" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/hydroponics) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) "ikm" = ( /obj/machinery/computer/HolodeckControl{ dir = 8 @@ -11541,36 +6756,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) -"ikw" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"ikL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/space) -"ikQ" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) "ilD" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -11583,46 +6768,9 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"imr" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/fore) -"imD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) -"imM" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"imO" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"imP" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/table/steel, -/obj/item/storage/box/nifsofts_security, -/obj/item/hand_labeler, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) +"ilP" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_one/forward/starboard) "inC" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -11635,134 +6783,43 @@ }, /turf/simulated/floor/carpet/sblucarpet, /area/crew_quarters/sleep/Dorm_4) -"inH" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 +"ioD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/xenoflora) -"ioo" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/fore) -"ios" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/space) -"ipo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_10) -"ipY" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/area/main_map/maintenance/deck_one/aft/starboard) "iqc" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"iqh" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/gloves/boxing/yellow{ - pixel_x = -6; - pixel_y = 7 +"isf" = ( +/obj/structure/railing{ + dir = 4 }, -/obj/item/clothing/gloves/boxing/blue, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"iqv" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "emergency_cockpit" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/escape) -"iqJ" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"irm" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/railing, +/turf/simulated/floor/reinforced/airless, +/area/space) +"isn" = ( +/obj/machinery/door/airlock/atmos{ + name = "Medical Atmospherics Backup"; + req_access = list(24) }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"irQ" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"isd" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"isg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/handrail, -/obj/machinery/airlock_sensor{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "medivac_docker_pump_out_external" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "isr" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/security/port) -"isG" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_one/aft/port) "isN" = ( /obj/item/storage/box/handcuffs{ pixel_x = 1; @@ -11781,6 +6838,16 @@ /obj/item/reagent_containers/glass/beaker/large, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) +"itl" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_one) "itv" = ( /obj/machinery/button/remote/blast_door{ dir = 8; @@ -11804,29 +6871,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"itU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "Tram_Med" - }, -/turf/simulated/floor, -/area/shuttle/escape) -"itW" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"itY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled, -/area/space) "iup" = ( /obj/structure/table/marble, /obj/machinery/door/blast/shutters{ @@ -11850,81 +6894,26 @@ }, /turf/simulated/floor/carpet/oracarpet, /area/crew_quarters/sleep/Dorm_6) -"ivE" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 +"iuY" = ( +/obj/machinery/door/airlock/maintenance/medical{ + name = "Medical Maintenance Access"; + req_access = list(5) }, -/obj/machinery/camera/network/civilian, -/obj/structure/flora/pottedplant/smalltree, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"ivZ" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) +/turf/simulated/floor/tiled/techmaint, +/area/medical/medbay) +"ivd" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck1) "iwo" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled/monotile, /area/security/security_lockerroom) -"iwu" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm5"; - name = "Room 5 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"iwx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"iwD" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/turf/simulated/open, -/area/space) -"iwG" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/dogbed, -/turf/simulated/floor/tiled, -/area/space) -"ixd" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm7"; - name = "Room 7 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"ixz" = ( -/obj/machinery/smartfridge/drinks, -/turf/simulated/wall/r_wall, -/area/space) +"iwV" = ( +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/medical/medbay) "ixM" = ( /obj/structure/bed/padded, /obj/random/bedsheet, @@ -11947,36 +6936,15 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"iyi" = ( -/obj/machinery/camera/network/research{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) -"iyu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) "iyz" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/carpet/tealcarpet, /area/crew_quarters/heads/cmo) +"iyQ" = ( +/turf/simulated/floor/tiled/dark, +/area/medical/medbay) "izi" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/bed/chair/comfy/beige{ @@ -11984,18 +6952,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"izy" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_one) -"izB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"izF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) +/area/tether/surfacebase/security/lobby) "izN" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -12009,21 +6972,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"iAb" = ( -/obj/machinery/door/airlock/glass_external/public{ - name = "Shuttle Hatch" +"iAi" = ( +/obj/structure/railing{ + dir = 4 }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"iAn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/red, -/area/tether/surfacebase/security/hallway) +/obj/structure/railing, +/turf/simulated/open, +/area/space) "iAt" = ( /obj/machinery/door/airlock/glass/security{ name = "Locker Room"; @@ -12033,29 +6991,47 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/security/security_lockerroom) -"iAM" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills{ +"iAC" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/port) +"iAH" = ( +/obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, -/obj/effect/floor_decal/spline/plain{ - dir = 10 +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/machinery/air_alarm{ + pixel_y = 28 }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) +/obj/structure/bed/chair/wheelchair, +/turf/simulated/floor/tiled/white, +/area/medical/reception) "iAR" = ( /obj/machinery/door/airlock/glass_external, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techmaint, /area/maintenance/solars) -"iBo" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/port) +"iAT" = ( +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/starboard) +"iAW" = ( +/obj/machinery/door/window/brigdoor/southleft{ + req_access = null; + req_one_access = list(8) + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "iBE" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -12066,118 +7042,18 @@ "iBF" = ( /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_8) -"iBH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"iBM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"iCz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/oxygen_pump{ - dir = 8; - pixel_x = -30 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/structure/handrail{ - dir = 4 - }, -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"iCC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"iCE" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "bar"; - name = "Bar shutters"; - pixel_x = 8; - pixel_y = -28 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -2; - pixel_y = -28 - }, -/obj/machinery/button/holosign{ - id = "barsign1"; - pixel_x = -10; - pixel_y = -28 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"iDg" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gunbox/lethal{ - pixel_y = 6 - }, -/obj/item/gunbox/lethal{ - pixel_y = -3 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"iDm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_11) "iDo" = ( /obj/structure/cable/green, /obj/machinery/power/apc/direction_bump/south, /turf/simulated/floor/carpet/sblucarpet, /area/crew_quarters/captain) +"iDv" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/port) "iDB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -12202,19 +7078,16 @@ }, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"iEr" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_10) -"iEu" = ( -/obj/machinery/light/spot{ - dir = 8; - pixel_x = 32 +"iEm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 }, -/turf/simulated/wall/rshull, -/area/space) -"iEK" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/iaa/officecommon) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) "iEZ" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood, @@ -12235,12 +7108,6 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"iFd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one) "iFS" = ( /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 4 @@ -12251,14 +7118,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/reception) -"iGy" = ( -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/structure/bed/double/padded, -/obj/random/bedsheet/double, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) "iGH" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -12272,51 +7131,20 @@ }, /turf/simulated/floor/tiled, /area/security/security_lockerroom) -"iGN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) "iHf" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/solars) -"iHJ" = ( +"iHS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/fore) -"iHX" = ( -/turf/simulated/wall, -/area/crew_quarters/heads/hop) -"iHZ" = ( -/obj/machinery/fitness/heavy/lifter, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"iIf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) +/area/main_map/hallway/deck1) "iIt" = ( /obj/structure/sink{ pixel_y = 22 @@ -12357,32 +7185,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"iJz" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"iJZ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/gun/energy/ionrifle, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) +"iKd" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/tactical) "iKu" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/space) -"iKC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) "iKP" = ( /obj/machinery/computer/borgupload, /obj/effect/floor_decal/corner/purple{ @@ -12393,33 +7202,24 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"iLo" = ( -/obj/machinery/vending/snack{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) "iMf" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"iMw" = ( -/obj/machinery/newscaster{ - pixel_y = 32 +"iMj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"iNe" = ( -/obj/structure/closet{ - desc = "Dents and old flaky paint blanket this old storage unit."; - name = "old locker" - }, -/obj/item/storage/toolbox/lunchbox/heart, -/obj/random/plushie, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/port) +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1/fore) +"iMl" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck1/a) "iNp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -12432,16 +7232,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/security/upper) -"iOE" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass/security{ - name = "Locker Room"; - req_one_access = list(2) +"iOk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "iOF" = ( /obj/structure/closet/crate/solar, /obj/machinery/light/small{ @@ -12455,50 +7254,22 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/surgery_hallway) -"iPw" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"iQq" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass{ - name = "Bar" - }, -/turf/simulated/floor/tiled, -/area/space) -"iQz" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"iQC" = ( +"iPA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/obj/effect/floor_decal/corner/red{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) +/obj/machinery/door/airlock/glass_science, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/lab) +"iQA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "iQD" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/borderfloorwhite{ @@ -12536,6 +7307,16 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"iSe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/security/lobby) "iTu" = ( /obj/machinery/button/remote/airlock{ id = "dorm9"; @@ -12546,19 +7327,12 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_9) -"iTP" = ( -/obj/structure/closet/toolcloset, -/obj/item/storage/toolbox/mechanical, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/item/stack/cable_coil/random, -/obj/fiftyspawner/wood, +"iTv" = ( /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "4-8" }, -/obj/fiftyspawner/steel, -/turf/simulated/floor/wood, -/area/space) +/turf/simulated/floor/plating, +/area/maintenance/security/upper) "iTU" = ( /obj/machinery/button/remote/airlock{ id = "dorm4"; @@ -12588,39 +7362,20 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/solars) -"iVe" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 +"iVG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "iVQ" = ( /obj/machinery/status_display{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"iWa" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "iWj" = ( /obj/machinery/door/window/westright{ dir = 2; @@ -12639,20 +7394,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar_backroom) -"iWA" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24; - pixel_y = -5 - }, -/obj/structure/bed/chair/sofa/teal/left{ - dir = 4 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) +"iWI" = ( +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/medical/medbay) "iXz" = ( /obj/machinery/door/firedoor{ dir = 1 @@ -12677,18 +7422,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"iXZ" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/space) -"iYj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) +"iYu" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_one/port) "iZB" = ( /obj/structure/table/woodentable, /obj/item/tape_recorder{ @@ -12697,6 +7434,10 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) +"iZI" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck1/a) "iZQ" = ( /obj/machinery/button/remote/blast_door{ dir = 4; @@ -12707,156 +7448,38 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar_backroom) -"jam" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 +"jaL" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, -/turf/simulated/floor/plating, -/area/space) -"jaI" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "sec_fore_pump" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"jaS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/wall/rshull, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "jbj" = ( /obj/machinery/door/airlock/glass_external, /obj/map_helper/airlock/door/ext_door, /turf/simulated/floor/plating, /area/maintenance/solars) -"jby" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/structure/handrail, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = 1; - frequency = 1380; - id_tag = "expshuttle_docker"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "medivac_docker_pump_out_external" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "jch" = ( /obj/structure/cable/green, /obj/machinery/power/solar, /turf/simulated/floor/reinforced/airless, /area/space) -"jcn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +"jcB" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/main_map/Hangar_bay/deck1/a) +"jdM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"jcw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"jdf" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/machinery/button/remote/blast_door{ - id = "armorytactical"; - name = "Tactical Armory Access"; - pixel_x = -25; - pixel_y = -6; - req_access = list(3) - }, -/obj/effect/floor_decal/corner/black/full{ - dir = 8 - }, -/obj/machinery/camera/network/security, -/obj/structure/closet/wardrobe/tactical, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"jdv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"jdF" = ( -/obj/machinery/door/airlock/security{ - name = "Internal Affairs"; - req_access = list(38); - req_one_access = list() - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"jdU" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/bar) -"jec" = ( -/obj/machinery/air_alarm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"jdS" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/starboard) "jeu" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -12871,81 +7494,15 @@ }, /turf/simulated/floor/tiled, /area/space) -"jeC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"jhy" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, -/obj/structure/table/woodentable, -/obj/item/paper_bin, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area_hallway) -"jfe" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/flasher/portable, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"jfx" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"jfB" = ( -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/primary/central_one) -"jgd" = ( -/obj/machinery/gear_painter, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"jhH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - name = "Shower"; - req_access = list() - }, -/obj/structure/curtain/open/shower/engineering, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_1) -"jiu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_1) +/area/main_map/hallway/deck1/fore) +"jhN" = ( +/turf/simulated/wall/prepainted/security, +/area/security/security_lockerroom) "jjf" = ( /obj/structure/railing{ dir = 8 @@ -12956,53 +7513,6 @@ /obj/machinery/light/flamp, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/bar) -"jjp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/door/airlock/glass/research{ - name = "Xenoflora Research"; - req_one_access = list(30,47,77) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/xenoflora) -"jjI" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - id = "dorm3"; - name = "Room 3 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"jjK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) "jjL" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/floor_decal/borderfloor{ @@ -13013,32 +7523,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"jjW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "jkh" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -31 }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"jkM" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/fore) -"jkT" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) "jlB" = ( /obj/structure/closet{ name = "Evidence Closet" @@ -13049,97 +7539,38 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/monotile, /area/security/forensics) -"jlF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"jlG" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/effect/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) -"jmd" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) "jmx" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_9) -"jmA" = ( -/obj/machinery/door/airlock/security{ - name = "Security Restroom"; - req_one_access = list(1,2,4) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/security/security_lockerroom) -"jmZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "jnc" = ( /turf/simulated/floor/reinforced, /area/security/tactical) "jny" = ( /turf/simulated/wall/r_wall, /area/maintenance/security/port) -"job" = ( -/obj/machinery/porta_turret/crescent{ - density = 1; - faction = "neutral" - }, -/turf/simulated/floor/airless/ceiling, -/area/bridge) -"jon" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"jov" = ( +"jou" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"jpc" = ( -/turf/simulated/wall, -/area/hallway/primary/central_one) -"jpi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, /area/space) +"joZ" = ( +/turf/simulated/wall/prepainted/engineering/atmos, +/area/main_map/maintenance/deck_one/aft/port) +"jpb" = ( +/turf/simulated/floor/glass/reinforced, +/area/tether/surfacebase/security/briefingroom) +"jpO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) "jqj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -13162,9 +7593,6 @@ "jqy" = ( /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"jqJ" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_one/forward/port) "jrb" = ( /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/techfloor/hole/right, @@ -13172,49 +7600,6 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/white, /area/space) -"jrQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"jrX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/security/tactical) -"jsq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"jsr" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) -"jsT" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) "jta" = ( /obj/item/radio/intercom{ dir = 8; @@ -13227,20 +7612,23 @@ /obj/structure/sign/warning/secure_area/armory, /turf/simulated/wall/r_wall, /area/security/riot_control) -"juo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/phoronreinforced{ +"jtU" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/door/blast/regular/open{ - id = "emergency_shuttle_lockdown"; - name = "Emergency Shuttle Blast Door" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/turf/simulated/floor/reinforced, -/area/shuttle/escape) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"jum" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) "juy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -13250,18 +7638,16 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"jva" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"jvs" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/sleep/Dorm_3) +"jvR" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/handrail{ dir = 8 }, -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/Hangar_bay/deck1/a) "jwl" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -13272,84 +7658,44 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/sleep/Dorm_9) -"jwr" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"jxb" = ( -/obj/structure/table/reinforced, -/obj/item/stamp/internalaffairs, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"jxc" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"jxR" = ( -/obj/structure/table/steel, -/obj/item/cell/device/weapon{ - pixel_x = -3 - }, -/obj/item/cell/device/weapon{ - pixel_x = 3 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"jyc" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/space) -"jyf" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/space) +"jwH" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) +"jwS" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/surgery2) +"jxN" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_one/aft/port) +"jxY" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/security/briefingroom) "jyh" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"jyl" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "jyG" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"jzv" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) +"jzA" = ( +/obj/machinery/door/airlock{ + name = "Hydroponics"; + req_one_access = list(35) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/hydroponics) "jzJ" = ( /obj/structure/filingcabinet/chestdrawer, /obj/structure/cable/green{ @@ -13357,15 +7703,6 @@ }, /turf/simulated/floor/carpet, /area/security/warden) -"jAe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) "jAs" = ( /obj/structure/table/steel_reinforced, /obj/machinery/firealarm{ @@ -13378,56 +7715,37 @@ /obj/item/defib_kit/loaded, /turf/simulated/floor/tiled, /area/medical/surgery2) -"jAz" = ( -/obj/item/stool/padded, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "jAA" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plating, /area/space) -"jAO" = ( -/obj/machinery/computer/timeclock/premade/south, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"jBc" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 +"jBk" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/research/researchdivision) +"jBA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 }, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) -"jBl" = ( -/obj/machinery/computer/arcade/battle, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"jBL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 8 }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_1) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"jBS" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) "jBT" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"jCx" = ( -/turf/simulated/wall/r_wall, -/area/security/security_lockerroom) -"jCE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_one) "jCH" = ( /obj/structure/railing, /obj/structure/railing{ @@ -13435,11 +7753,44 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"jCI" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, +"jCL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1) +"jDH" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/reinforced, +/area/space) +"jDS" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/forward/starboard) +"jEm" = ( +/obj/machinery/computer/ship/helm{ + dir = 4 + }, /turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +/area/main_map/Hangar_bay/deck1/a) "jFa" = ( /obj/structure/table/rack, /obj/item/stack/cable_coil/yellow, @@ -13448,26 +7799,25 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/solars) -"jFc" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 +"jGp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/button/remote/blast_door{ + id = "armorylight"; + name = "Light Armory Access"; + pixel_x = 25; + pixel_y = 25; + req_access = list(3) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"jGv" = ( -/turf/simulated/wall, -/area/crew_quarters/heads/hor) -"jGO" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/security/hallway) +"jGu" = ( +/turf/simulated/wall/prepainted/command, +/area/bridge/hallway) "jGR" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -13477,20 +7827,27 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/robotics/mechbay) -"jHi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 +"jHq" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/space) -"jHm" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/machinery/light/small{ - dir = 4 +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) +"jHs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/research, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research/researchdivision) "jHC" = ( /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) @@ -13504,20 +7861,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"jHH" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"jIe" = ( +/obj/structure/bed/chair/shuttle{ dir = 8 }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "iaar" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) "jIs" = ( /obj/structure/railing{ dir = 8 @@ -13526,14 +7875,6 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/open, /area/crew_quarters/bar) -"jIx" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/neutral, -/area/space) "jIQ" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light/no_nightshift, @@ -13547,44 +7888,11 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"jJN" = ( -/obj/structure/closet{ - desc = "Dents and old flaky paint blanket this old storage unit."; - name = "old locker" - }, -/obj/item/storage/toolbox/lunchbox/filled, -/obj/random/plushielarge, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/port) "jJP" = ( /obj/structure/bed/double, /obj/item/bedsheet/rddouble, /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/heads/hor) -"jKf" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) -"jKM" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) "jKR" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 4 @@ -13592,90 +7900,36 @@ /obj/landmark/spawnpoint/job/medical_doctor, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"jLu" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/port) -"jMH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) -"jMQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"jMY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +"jKW" = ( +/turf/simulated/wall/prepainted/civilian, +/area/main_map/maintenance/deck_one) +"jLH" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 }, /turf/simulated/floor/lino, +/area/main_map/maintenance/deck_one/aft/port) +"jLN" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/aft/port) +"jML" = ( +/obj/machinery/button/windowtint{ + id = "det_office"; + pixel_x = -24; + pixel_y = 24 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/lino, /area/security/detectives_office) -"jNq" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"jOY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"jPd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"jPh" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/fore) -"jPl" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"jQE" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"jQQ" = ( -/obj/machinery/computer/timeclock/premade/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) +"jOg" = ( +/turf/simulated/wall/prepainted/science, +/area/main_map/maintenance/deck_one/starboard) +"jPP" = ( +/obj/structure/sign/deck/first, +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck1) "jQS" = ( /obj/structure/table/rack/shelf/steel, /obj/item/cell/device/weapon{ @@ -13727,9 +7981,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) -"jSe" = ( -/turf/simulated/wall, -/area/crew_quarters/visitor_dining) +"jSb" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled/techfloor, +/area/space) "jSW" = ( /obj/structure/window/reinforced{ dir = 4 @@ -13748,72 +8003,55 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora_storage) -"jTo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ +"jUb" = ( +/obj/structure/railing{ dir = 8 }, -/obj/machinery/door/window/northleft{ - name = "Shower"; - req_access = list() +/obj/structure/railing{ + dir = 4 }, -/obj/structure/curtain/open/shower/engineering, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_11) -"jTu" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/spline/plain{ +/obj/machinery/camera/network/research{ + dir = 8 + }, +/turf/simulated/open, +/area/rnd/lab) +"jUd" = ( +/obj/structure/railing{ dir = 1 }, -/obj/structure/cable/green{ - icon_state = "0-2" +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) +/turf/simulated/open, +/area/space) "jUE" = ( /obj/machinery/light/no_nightshift{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"jVO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 +"jUI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/turf/simulated/wall/rshull, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"jUJ" = ( +/obj/structure/sign/directions/evac{ + dir = 8 + }, +/turf/simulated/wall, +/area/main_map/hallway/deck1) +"jVi" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_one/starboard) +"jWJ" = ( +/turf/simulated/wall/r_wall/prepainted/command, /area/space) -"jWc" = ( -/turf/simulated/wall/r_wall, -/area/bridge/hallway) -"jWs" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/structure/closet/crate/nanotrasen, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) -"jWG" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) "jWO" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/outline/blue, @@ -13866,41 +8104,31 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"jYG" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"jYE" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"jYU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 }, -/obj/machinery/camera/network/security{ - dir = 10 +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) -"jYI" = ( -/obj/machinery/shower{ - dir = 4 +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 +/obj/machinery/door/airlock/glass{ + name = "Medbay Lobby" }, -/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"jZQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +/area/medical/reception) "jZX" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/machinery/iv_drip, @@ -13915,110 +8143,13 @@ }, /turf/simulated/floor/reinforced, /area/security/tactical) -"kak" = ( -/obj/structure/bed/chair/sofa/blue/right, -/turf/simulated/floor/carpet/arcadecarpet, -/area/maintenance/deck_one/port) -"kaP" = ( -/turf/simulated/wall, -/area/crew_quarters/fitness) -"kbI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"kca" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_8) -"kcu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/space) -"kcE" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Engine Compartment"; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"kcJ" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/bed/double/padded, -/obj/random/bedsheet/double, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"kcL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"kcZ" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"kdj" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"kdk" = ( -/obj/machinery/door/blast/regular{ - id = "armoryaccess_red"; - name = "Armory" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"kdA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"kdG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor, -/obj/structure/bed/chair/sofa/black/right, -/turf/simulated/floor/tiled, +"kaB" = ( +/turf/simulated/wall/prepainted/command, /area/space) +"kcG" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one) "kdH" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/glass/bucket, @@ -14039,14 +8170,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"keG" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/firstaid/surgery, -/turf/simulated/floor/tiled, -/area/medical/surgery2) "keY" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 @@ -14059,43 +8182,6 @@ /obj/landmark/spawnpoint/job/lawyer, /turf/simulated/floor/carpet/purcarpet, /area/tether/surfacebase/security/iaa/officeb) -"kfl" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"kfr" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Vacant lobby" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"kfB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/chair/sofa/black/left{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"kgn" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/space) "kgz" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14113,18 +8199,18 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"kgX" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"kho" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge_lockdown"; + name = "Bridge Lockdown"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +/obj/machinery/door/airlock/glass/command, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/bunker) "khr" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, @@ -14133,32 +8219,6 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/iaa/officea) -"kht" = ( -/obj/structure/closet/walllocker/autolok_wall, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) -"khC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"khD" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/forward/starboard) -"khG" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/visitor_dining) "khH" = ( /obj/structure/bed/chair{ dir = 4 @@ -14171,15 +8231,30 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) -"kiy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, +"kij" = ( /turf/simulated/floor/plating, -/area/space) +/area/main_map/maintenance/deck_one/aft/starboard) +"kiK" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/machinery/turnstile/entry{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/security/lobby) +"kjj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) "kjl" = ( /obj/structure/railing{ dir = 4 @@ -14189,33 +8264,6 @@ }, /turf/simulated/open, /area/crew_quarters/recreation_area) -"kjr" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"kkr" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) -"kkI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/fore) "kkJ" = ( /obj/structure/railing{ dir = 4 @@ -14247,15 +8295,6 @@ /obj/item/tank/jetpack/oxygen, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"klo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) "kmj" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -14265,34 +8304,11 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/surgery_hallway) -"kmr" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"kmJ" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"knf" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"knv" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/primary/fore) +"knx" = ( +/obj/structure/bed/chair/bay/chair/padded/red/smallnest, +/obj/random/plushie, +/turf/simulated/floor/carpet/arcadecarpet, +/area/main_map/maintenance/deck_one/port) "knz" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ @@ -14310,28 +8326,16 @@ /obj/structure/sign/deck1, /turf/simulated/wall/r_wall, /area/maintenance/solars) -"kos" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/button/remote/airlock{ - id = "dorm11"; - name = "Room 11 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) -"koP" = ( +"koc" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled, -/area/hallway/primary/fore) +/area/main_map/hallway/deck1/fore) "koY" = ( /obj/structure/railing{ dir = 4 @@ -14339,38 +8343,6 @@ /obj/structure/railing, /turf/space, /area/space) -"kpl" = ( -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"kpC" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"kpN" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"kpU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/space) "kpX" = ( /obj/structure/filingcabinet, /obj/machinery/light/no_nightshift{ @@ -14378,35 +8350,24 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officea) -"kqf" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/deck_one) "kqo" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"kqT" = ( +"kqA" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/space) -"krs" = ( -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research/researchdivision) "krw" = ( /obj/machinery/button/remote/airlock{ id = "dorm8"; @@ -14417,35 +8378,12 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_8) -"krx" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 +"ksg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 9 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Medbay Lobby" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"krD" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/reagent_dispensers/beerkeg, -/turf/simulated/floor/wood, -/area/space) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "kss" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, @@ -14454,10 +8392,17 @@ /obj/structure/closet/secure_closet/detective, /turf/simulated/floor/lino, /area/security/detectives_office) -"kth" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +"ksU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/hole/right, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "ktt" = ( /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/spline/plain{ @@ -14468,12 +8413,33 @@ }, /turf/simulated/floor/tiled/white, /area/space) -"kud" = ( -/obj/structure/disposalpipe/segment{ +"ktz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/space) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) +"ktG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1) +"ktR" = ( +/turf/simulated/floor/glass/reinforced, +/area/main_map/maintenance/deck_one) +"kuG" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/starboard) "kuH" = ( /obj/machinery/door/airlock/maintenance/command, /obj/machinery/door/blast/regular{ @@ -14493,19 +8459,10 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"kuM" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) +"kvj" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/port) "kvT" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -14529,32 +8486,44 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"kwm" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "iaal" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) "kwx" = ( /obj/structure/closet/wardrobe, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_3) -"kxc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +"kxm" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 }, -/turf/simulated/floor/tiled/red, -/area/space) +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Chemistry" + }, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Chemistry"; + req_one_access = list(33) + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "chemistryhall"; + layer = 3.1; + name = "Chemistry Shutters" + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"kxq" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_one/forward/starboard) "kxV" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14573,12 +8542,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"kyA" = ( -/obj/machinery/light/spot{ - pixel_y = 32 - }, -/turf/simulated/wall/rshull, -/area/space) +"kyq" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/aft/port) "kyB" = ( /obj/machinery/vending/security, /obj/machinery/newscaster/security_unit{ @@ -14590,12 +8557,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/security/security_lockerroom) -"kzk" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/starboard) "kzy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -14617,6 +8578,15 @@ }, /turf/space, /area/space) +"kAx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "kAC" = ( /obj/structure/railing{ dir = 8 @@ -14636,49 +8606,10 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officea) -"kCu" = ( -/obj/structure/table/rack/steel, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/clothing/shoes/leg_guard/combat, -/obj/item/clothing/gloves/arm_guard/combat, -/obj/item/clothing/suit/armor/combat, -/obj/item/clothing/head/helmet/combat, -/obj/effect/floor_decal/corner/black/full, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"kCA" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"kCW" = ( -/obj/structure/closet/secure_closet/bar, -/obj/item/storage/box/beanbags/large, -/obj/item/storage/box/beanbags/large, -/obj/item/clothing/accessory/permit/gun/bar, -/obj/item/paper{ - info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; - name = "Shotgun permit" - }, -/obj/item/clothing/suit/armor/vest, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/space) -"kDi" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +"kBW" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/lobby) "kDw" = ( /obj/effect/floor_decal/techfloor{ dir = 5 @@ -14695,103 +8626,33 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"kDY" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/eastleft{ - name = "Chemistry" - }, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Chemistry"; - req_one_access = list(33) - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "chemistryhall"; - layer = 3.1; - name = "Chemistry Shutters" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"kEb" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) -"kEk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"kEz" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/deck_one/port) -"kED" = ( -/obj/structure/table/marble, -/turf/simulated/floor/tiled/dark, -/area/space) "kEI" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"kEU" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"kFJ" = ( +/obj/effect/floor_decal/corner/paleblue{ dir = 8 }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "iaal" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"kFT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Crew Quarters" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"kGk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/sleeper{ dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"kGN" = ( -/obj/machinery/computer/ship/engines, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/turf/simulated/floor/tiled/white, +/area/medical/medbay) +"kGt" = ( +/obj/machinery/door/airlock/maintenance/sec, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/plating, +/area/maintenance/security/upper) "kGP" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14803,17 +8664,6 @@ /obj/structure/table/glass, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"kGR" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"kHo" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) "kHF" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14822,53 +8672,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/reception) -"kHN" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/turf/simulated/shuttle/floor/black, -/area/space) "kIF" = ( /obj/machinery/door/airlock/maintenance/rnd{ req_access = list(30,47,77) }, /turf/simulated/floor/tiled/techmaint, /area/rnd/xenobiology/xenoflora) -"kIO" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_9) -"kJy" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/lobby) -"kJL" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/oxygen_pump{ - dir = 8; - pixel_x = -30 - }, -/obj/effect/floor_decal/spline/fancy, -/obj/structure/handrail{ - dir = 4 - }, -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +"kJp" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/crew_quarters/kitchen) "kJX" = ( /obj/structure/table/reinforced, /obj/item/storage/secure/briefcase, @@ -14881,23 +8693,18 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"kKQ" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 +"kKe" = ( +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"kKP" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"kKW" = ( -/obj/effect/floor_decal/techfloor{ +/obj/structure/railing{ dir = 1 }, -/turf/simulated/floor/tiled, +/turf/simulated/open, /area/space) "kLp" = ( /obj/structure/bed/chair/sofa/brown/left{ @@ -14911,27 +8718,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"kMi" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/r_n_d/destructive_analyzer, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"kMs" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/primary/fore) "kMt" = ( /obj/machinery/door/airlock{ id_tag = "bathroomlock100"; @@ -14939,13 +8725,22 @@ }, /turf/simulated/floor/tiled/white, /area/space) -"kML" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 +"kMM" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"kMU" = ( +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_one_access = list(35) + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) "kNp" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 @@ -14979,48 +8774,45 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/security/lobby) -"kOk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"kNS" = ( +/obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/space) +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/airlock/glass{ + name = "Medbay Lobby" + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"kOz" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/port) "kOA" = ( /obj/effect/floor_decal/corner/white/border{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_1) -"kOD" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"kOT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_8) -"kOG" = ( -/obj/landmark{ - name = "lightsout" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"kOI" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "kOZ" = ( /obj/structure/railing{ dir = 1 @@ -15044,43 +8836,21 @@ }, /turf/simulated/open, /area/rnd/xenobiology/xenoflora_storage) -"kPh" = ( -/turf/simulated/wall/r_wall, -/area/security/breakroom) -"kPq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/port) -"kPB" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, +"kPF" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/crew_quarters/heads/cmo) +"kPH" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/south, +/turf/simulated/floor/crystal, /area/space) -"kPG" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 8 +"kPV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor/glass{ + dir = 4 }, -/obj/effect/floor_decal/borderfloorblack/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/fuel_port{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape) +/turf/simulated/floor/plating, +/area/main_map/hallway/deck1/fore) "kPZ" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15094,6 +8864,19 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) +"kQk" = ( +/obj/machinery/door/window/brigdoor/southright{ + req_access = null; + req_one_access = list(8) + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "kQx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -15117,6 +8900,9 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) +"kRe" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_one/aft/starboard) "kRl" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -15132,32 +8918,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/bar) -"kSp" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 +"kRJ" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) +/turf/simulated/open, +/area/main_map/maintenance/deck_one) "kSv" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/solars) -"kSQ" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) "kSS" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/rnd/robotics) @@ -15165,70 +8938,18 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/tether/surfacebase/security/iaa/officecommon) -"kTx" = ( -/obj/machinery/door/airlock/glass_external, -/obj/map_helper/airlock/door/int_door, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "kTQ" = ( /obj/structure/ladder, /obj/structure/catwalk, /turf/simulated/open, /area/maintenance/security/port) -"kUL" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ +"kUB" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"kVd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) -"kVr" = ( -/obj/structure/table/steel, -/obj/item/tool/crowbar, -/obj/item/tool/crowbar, -/obj/item/tool/crowbar, -/obj/item/tool/crowbar, -/obj/item/tool/crowbar, -/obj/item/tool/crowbar, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/retail_scanner/security, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) +/area/rnd/xenobiology/xenoflora) "kVA" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -15251,20 +8972,15 @@ /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/security/tactical) -"kWe" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"kWi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/techfloor{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research/researchdivision) "kWX" = ( /obj/machinery/door/firedoor/glass, /obj/structure/table/reinforced, @@ -15280,18 +8996,9 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"kXr" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/space) +"kXJ" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/research_foyer) "kXU" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -15309,35 +9016,17 @@ /obj/machinery/holopad, /turf/simulated/floor/tiled/white, /area/medical/reception) -"kYy" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) -"kYB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_6) -"kYK" = ( -/obj/structure/bed/chair/comfy/teal, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"kYR" = ( -/obj/machinery/light/small{ - dir = 1 - }, +"kYl" = ( +/obj/structure/girder, /turf/simulated/floor/plating, -/area/maintenance/dormitory) +/area/main_map/maintenance/deck_one/starboard) +"kYo" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/closet/crate/nanotrasen, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "kYU" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -15347,25 +9036,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"kZi" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/fans/tiny, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/machinery/door/airlock/glass_external/public{ - name = "Shuttle Hatch" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) "kZq" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -15382,53 +9052,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"kZE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"kZM" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"lao" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "armorytactical"; - name = "Tactical Armory Access"; - pixel_x = 25; - pixel_y = -6; - req_access = list(3) - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"las" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) "laC" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -15444,37 +9067,10 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"lbn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/button/windowtint{ - id = "iaal"; - pixel_x = 25; - pixel_y = 7 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/landmark/spawnpoint/job/lawyer, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"lbs" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Medical Compartment"; - req_one_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"lbD" = ( -/obj/effect/floor_decal/corner/paleblue/bordercee, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) +"lbc" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) "lbG" = ( /obj/structure/filingcabinet/medical{ desc = "A large cabinet with hard copy medical records."; @@ -15482,74 +9078,16 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"lbM" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/chemistry) -"lcl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"lcw" = ( -/obj/structure/sign/deck1{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/forward/starboard) -"lcC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"lcK" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"ldx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) +"ldj" = ( +/turf/simulated/shuttle/plating/carry, +/area/main_map/Hangar_bay/deck1/a) "ldC" = ( /obj/structure/railing, /turf/simulated/floor/glass/reinforced, /area/hydroponics) -"lew" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "scrubber isolation valve" - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/machinery/firealarm{ - pixel_x = 5; - pixel_y = 37 - }, -/obj/machinery/button/remote/blast_door{ - id = "armoryaccess"; - name = "Armory Access"; - pixel_x = -8; - pixel_y = 27; - req_access = list(3) - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/armory) +"leG" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/main_map/maintenance/deck_one/port) "leK" = ( /obj/effect/floor_decal/techfloor{ dir = 9 @@ -15562,27 +9100,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"leL" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) "leZ" = ( /obj/structure/table/bench/steel, /obj/machinery/camera/network/security{ @@ -15596,85 +9113,22 @@ }, /turf/simulated/floor/tiled/monowhite, /area/security/forensics) -"lfq" = ( -/obj/machinery/door/airlock{ - name = "Internal Affairs"; - req_access = list(38) +"liV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/iaa/officeb) -"lgh" = ( -/obj/machinery/camera/network/outside{ - dir = 10 - }, -/turf/space, -/area/space) -"lgp" = ( -/obj/structure/table/steel_reinforced, -/obj/item/defib_kit/loaded{ - pixel_y = 3 - }, -/obj/item/tool/screwdriver, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"lhI" = ( -/obj/structure/railing, -/obj/structure/railing{ +/obj/effect/floor_decal/techfloor{ dir = 4 }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/turf/simulated/open, -/area/maintenance/deck_one/forward/starboard) -"liS" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/sign/directions/roomnum{ - dir = 6; - pixel_x = -31; - pixel_y = -3 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "ljH" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/plating, /area/maintenance/solars) -"ljJ" = ( -/obj/structure/bed/chair/comfy/teal, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"ljM" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) "ljR" = ( /obj/structure/table/reinforced, /obj/machinery/reagentgrinder, @@ -15697,6 +9151,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"lku" = ( +/obj/machinery/holopad, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/security/lobby) "lkv" = ( /obj/landmark/spawnpoint/job/paramedic, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15707,117 +9166,35 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"lkN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/space) "llE" = ( /obj/landmark/spawnpoint/job/chef, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"llJ" = ( -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_y = -26 +"lnc" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/recreation_area) +"lnG" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"llL" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_5) -"lmf" = ( -/obj/item/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/space) -"lmK" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/starboard) -"lmL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"lmZ" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/effect/floor_decal/techfloor/hole{ + dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"lna" = ( -/turf/space, -/area/security/armoury) -"lne" = ( -/obj/machinery/door/airlock/security{ - name = "Shuttle Security" - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) -"loj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/dark, -/area/space) -"loX" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"lqq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"lrc" = ( -/obj/structure/sign/department/eva, -/turf/simulated/wall, -/area/crew_quarters/recreation_area) -"lrq" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 30 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"lrB" = ( +/area/rnd/lab) +"lnR" = ( +/obj/machinery/door/airlock/glass/security, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/starboard) -"lrU" = ( +/area/tether/surfacebase/security/briefingroom) +"lpN" = ( /obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 + dir = 8; + pixel_x = 25 }, -/obj/structure/bed/chair/comfy/teal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) +/obj/structure/table/glass, +/turf/simulated/floor/crystal, +/area/space) "lsP" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/blue/border, @@ -15831,49 +9208,10 @@ }, /turf/simulated/floor/tiled/monotile, /area/medical/surgery) -"lsY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"ltS" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/bed/chair/sofa/black, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"luq" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "kitchen"; - layer = 3.3; - name = "Kitchen Service Shutters" - }, -/obj/machinery/door/firedoor{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"luU" = ( -/turf/simulated/wall, -/area/maintenance/deck_one/forward/port) -"lvt" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/deck_one/port) +"ltc" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/port) "lvD" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 @@ -15890,78 +9228,33 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) +"lvG" = ( +/obj/structure/bed/double/weaversilk_nest, +/obj/random/plushielarge, +/turf/simulated/floor/carpet/arcadecarpet, +/area/main_map/maintenance/deck_one/port) "lvJ" = ( /obj/effect/floor_decal/techfloor{ dir = 9 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/robotics) -"lwz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"lwU" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) -"lxe" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one) "lxj" = ( /obj/machinery/bodyscanner{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"lxQ" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"lys" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) "lyW" = ( /obj/machinery/holopad, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"lzl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"lzH" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) "lzL" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -15969,65 +9262,37 @@ /obj/machinery/meter, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"lzN" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"lzU" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/pottedplant/smallcactus, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "lAy" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, /area/maintenance/security/port) -"lAO" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"lAS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) "lBm" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, /area/space) -"lBt" = ( -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"lBu" = ( -/obj/structure/cable/green, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 +"lBr" = ( +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/tank/emergency, +/obj/item/tank/emergency, +/obj/item/tank/emergency, +/obj/structure/table/rack/shelf/steel{ + pixel_y = -2 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) +/obj/machinery/door/window/northright, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) "lBx" = ( /obj/landmark/spawnpoint/job/chef, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16041,186 +9306,66 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_3) -"lCk" = ( -/obj/structure/bookcase, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"lCu" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"lCZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) "lDd" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"lDu" = ( -/obj/structure/railing, +"lDx" = ( /obj/structure/railing{ - dir = 4 + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/open, -/area/medical/medbay) +/turf/simulated/floor/reinforced, +/area/space) "lEr" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, /area/rnd/robotics/mechbay) -"lEs" = ( -/turf/simulated/floor/carpet/arcadecarpet, -/area/maintenance/deck_one/port) -"lFd" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_4) -"lFm" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) -"lFq" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/space) -"lFw" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/machinery/recharger/wallcharger{ - pixel_x = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"lGz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"lGS" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) -"lHE" = ( -/obj/effect/floor_decal/corner/paleblue/bordercee, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"lIg" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, +"lFl" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_one/port) +"lFP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"lIH" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"lJj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/starboard) -"lJS" = ( -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ dir = 8 }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) +"lHC" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/open, -/area/maintenance/deck_one/aft/starboard) +/obj/landmark/spawnpoint/job/scientist, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"lIw" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay) +"lJR" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/crystal, +/area/space) "lJV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"lKj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "lKs" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -16230,27 +9375,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/sleep/Dorm_9) -"lKw" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/camera/network/crescent{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"lKy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = -8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) "lKE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -16270,26 +9394,9 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/solars) -"lKJ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/structure/extinguisher_cabinet{ - pixel_y = -31 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"lLf" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) +"lKP" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/sleep/Dorm_5) "lLO" = ( /turf/simulated/floor/reinforced/airless, /area/space) @@ -16313,24 +9420,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hor) -"lMk" = ( -/obj/machinery/door/airlock/maintenance/sec, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"lMG" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) +"lMo" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/wall, +/area/main_map/hallway/deck1/fore) "lMH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -16344,36 +9437,30 @@ "lMZ" = ( /turf/simulated/open, /area/bridge/hallway) -"lNr" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) "lNy" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/iaa/officecommon) -"lNC" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"lNA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/turf/simulated/floor/wood, -/area/space) -"lNO" = ( -/obj/structure/bookcase/legal/combo, -/obj/item/book/manual/legal/sop_vol1, -/obj/item/book/manual/legal/sop_vol2, -/obj/item/book/manual/legal/sop_vol3, -/obj/item/book/manual/legal/sop_vol4, -/turf/simulated/floor/lino, -/area/security/detectives_office) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"lOo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/closet/l3closet/scientist/double, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/east, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "lOT" = ( /obj/machinery/access_button{ command = "cycle_exterior"; @@ -16385,31 +9472,6 @@ }, /turf/simulated/floor/airless, /area/maintenance/solars) -"lOY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"lPt" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) "lPz" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/table/marble, @@ -16418,40 +9480,35 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"lQn" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/bar_backroom) -"lQs" = ( +"lPP" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/starboard) +"lPW" = ( /obj/structure/cable/green{ icon_state = "1-8" }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"lQG" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"lQL" = ( -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "32-2" + icon_state = "4-8" }, -/turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) -"lRk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/starboard) -"lRq" = ( -/turf/simulated/wall, -/area/security/security_lockerroom) +/turf/simulated/floor/tiled/red, +/area/tether/surfacebase/security/lobby) +"lQn" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/bar_backroom) +"lQr" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/security/hallway) "lRr" = ( /obj/effect/floor_decal/techfloor/orange/corner, /turf/simulated/floor/tiled/techmaint, @@ -16464,114 +9521,51 @@ /obj/structure/closet/secure_closet/medical2, /turf/simulated/floor/tiled, /area/medical/surgery2) -"lSF" = ( -/obj/structure/bed/chair/comfy/purp, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24; - pixel_y = -5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"lTa" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"lTB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/starboard) "lTD" = ( /obj/structure/cable/green{ icon_state = "2-4" }, /turf/simulated/floor/tiled, /area/space) -"lTI" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"lWV" = ( +/obj/structure/table/standard, +/obj/item/disk/design_disk{ + pixel_x = 3; + pixel_y = -1 }, -/obj/effect/floor_decal/techfloor{ - dir = 1 +/obj/item/disk/design_disk{ + pixel_x = 3; + pixel_y = -1 }, -/turf/simulated/floor/tiled, -/area/space) -"lUS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/item/disk/design_disk{ + pixel_x = 3; + pixel_y = -1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/item/disk/design_disk{ + pixel_x = 5; + pixel_y = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"lVa" = ( -/obj/structure/table/marble, -/obj/item/storage/box/wings, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/space) -"lVO" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_one) -"lWp" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/item/disk/tech_disk, +/obj/effect/floor_decal/corner/mauve{ dir = 10 }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "lXa" = ( /obj/machinery/computer/communications{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"lXE" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/retail_scanner/science, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +"lXs" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one) "lXK" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"lYk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) "lYl" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -16607,6 +9601,10 @@ }, /turf/simulated/floor/tiled, /area/medical/surgery2) +"lZv" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "lZV" = ( /obj/machinery/door/airlock/glass/medical{ name = "Paramedic Storage" @@ -16619,156 +9617,56 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"lZY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/window/basic, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/bed/chair/sofa/black/right{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"maB" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) "mbb" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, /obj/machinery/seed_extractor, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"mbQ" = ( +"mbz" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_one/forward/port) +"mdg" = ( +/obj/machinery/door/airlock/glass/research{ + name = "Xenoflora Research"; + req_one_access = list(30,47,77) + }, +/obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/space) -"mdE" = ( -/obj/effect/floor_decal/corner/paleblue/bordercee, -/obj/structure/sign/greencross{ - pixel_x = -32 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"mei" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_2) -"mfh" = ( -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) -"mfW" = ( -/obj/machinery/door/firedoor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"mgH" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"mhG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"mhH" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"mhZ" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora) +"mdn" = ( +/obj/machinery/door/window/brigdoor/southleft, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/security/lobby) +"mer" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, /area/space) -"miI" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +"mfl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/space) -"miR" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/space) -"mjb" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/effect/floor_decal/techfloor/hole, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) +/area/main_map/maintenance/deck_one) "mjv" = ( /obj/machinery/atmospherics/valve/digital{ dir = 4; @@ -16776,44 +9674,15 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"mjK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Annex Dock" +"mjw" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/crew_quarters/bar) +"mjR" = ( +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/space) -"mki" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/storage/box/donut, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) -"mky" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"mkE" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/flasher/portable, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"mkN" = ( -/turf/simulated/wall, -/area/crew_quarters/kitchen) -"mlx" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/turf/simulated/open, +/area/main_map/maintenance/deck_one/port) "mlU" = ( /obj/machinery/shower{ dir = 1 @@ -16821,6 +9690,22 @@ /obj/effect/mist, /turf/simulated/floor/water/pool, /area/space) +"mmw" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/main_map/Hangar_bay/deck1/a) +"mmy" = ( +/turf/simulated/wall/prepainted/civilian, +/area/hydroponics) "mmM" = ( /obj/machinery/door/airlock/glass{ name = "Eva Storage" @@ -16853,94 +9738,24 @@ /obj/machinery/power/apc/direction_bump/west, /turf/simulated/floor/tiled, /area/medical/reception) -"mne" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"mnx" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"mnC" = ( -/obj/machinery/door/blast/regular, -/turf/simulated/floor/reinforced, -/area/space) -"mnD" = ( -/obj/machinery/holopad, -/turf/simulated/floor/lino, -/area/maintenance/deck_one/aft/port) -"mnE" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"mnX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) -"moj" = ( -/obj/machinery/computer/ship/navigation{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"moQ" = ( -/obj/machinery/door/window/eastleft{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/cable/green, -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/obj/machinery/power/apc/direction_bump/south, -/turf/simulated/floor/tiled/monotile, -/area/security/forensics) "mpj" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced, /area/security/tactical) -"mpI" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/primary/central_one) +"mpQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "mqQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -16958,43 +9773,6 @@ /obj/structure/girder/reinforced, /turf/simulated/floor/reinforced/carbon_dioxide, /area/space) -"mqU" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/air_alarm{ - pixel_y = 30 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"mrm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"mrS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) "msK" = ( /obj/effect/floor_decal/corner/red{ dir = 10 @@ -17004,18 +9782,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"mtt" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/open, -/area/space) -"mtT" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/fore) "mtU" = ( /obj/structure/table/steel, /obj/item/clothing/accessory/badge/holo, @@ -17036,13 +9802,32 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/security/security_lockerroom) -"mtW" = ( -/obj/machinery/door/airlock{ - id_tag = "bathroomlock17"; - name = "Bar Toilet 1" +"muA" = ( +/obj/structure/bed/chair/bay/chair/padded/red/bignest, +/obj/random/plushielarge, +/turf/simulated/floor/carpet/arcadecarpet, +/area/main_map/maintenance/deck_one/port) +"muM" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/space) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) +"mvn" = ( +/obj/structure/cable/green{ + icon_state = "32-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/main_map/maintenance/deck_one) "mvr" = ( /obj/structure/table/rack/shelf/steel, /obj/effect/floor_decal/corner/blue/full, @@ -17060,6 +9845,10 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) +"mvB" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/security/lobby) "mvG" = ( /obj/item/roller, /obj/structure/table/steel_reinforced, @@ -17089,12 +9878,9 @@ }, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"mxf" = ( -/obj/machinery/shower{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +"mxc" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/sleep/Dorm_6) "mxr" = ( /obj/structure/railing, /obj/structure/railing{ @@ -17106,40 +9892,19 @@ }, /turf/simulated/open, /area/medical/medbay) -"myf" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 +"myy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/aft/starboard) "myO" = ( /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/security/lobby) -"mzb" = ( -/obj/machinery/atmospherics/portables_connector/fuel, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"mzl" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"mzv" = ( -/obj/machinery/door/airlock/glass/medical{ - id_tag = "MedbayFoyer"; - name = "Treatment Center" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) "mzA" = ( /obj/structure/railing{ dir = 4 @@ -17149,67 +9914,13 @@ }, /turf/simulated/open, /area/space) -"mBb" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/wall/r_wall, -/area/security/tactical) -"mBh" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/table/woodentable, -/obj/structure/flora/pottedplant/largebush, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"mBV" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"mBX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"mBY" = ( -/turf/simulated/shuttle/plating/carry, -/area/space) -"mCP" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled/neutral, -/area/space) -"mDm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, +"mBp" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"mDO" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "mDT" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -17230,13 +9941,6 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"mDY" = ( -/obj/machinery/door/airlock/glass/security{ - name = "Locker Room"; - req_one_access = list(2) - }, -/turf/simulated/floor/tiled, -/area/space) "mEb" = ( /obj/machinery/airlock_sensor{ id_tag = "solar_sensor"; @@ -17252,51 +9956,18 @@ /obj/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, /area/maintenance/solars) -"mEo" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/starboard) -"mEG" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"mEH" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"mEM" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_one/starboard) -"mEQ" = ( -/obj/machinery/camera/network/security{ +"mEw" = ( +/obj/structure/railing{ dir = 8 }, -/obj/effect/floor_decal/borderfloor{ +/obj/structure/railing{ dir = 4 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"mFz" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +/turf/simulated/open, +/area/main_map/maintenance/deck_one/aft/port) +"mES" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/bridge/bunker) "mFI" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -17347,12 +10018,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"mHg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/security/lobby) "mHM" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -17388,20 +10053,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"mIP" = ( -/turf/simulated/wall, -/area/bridge/hallway) -"mJd" = ( -/obj/structure/sign/directions/roomnum{ - dir = 10; - pixel_x = 32; - pixel_y = 4 +"mIH" = ( +/obj/machinery/door/airlock/maintenance, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/door/firedoor/glass{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"mJk" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/evastorage) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck1/fore) "mJE" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/blue/border, @@ -17411,24 +10070,18 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/white, /area/medical/reception) -"mKi" = ( -/obj/structure/table/steel, -/obj/item/folder/red, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 +"mJY" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"mKk" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 +/obj/machinery/computer/rdconsole/core{ + dir = 4 }, -/obj/structure/closet/crate/bin{ - anchored = 1 +/obj/effect/floor_decal/corner/mauve{ + dir = 6 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "mKp" = ( /obj/structure/table/reinforced, /obj/item/forensics/sample_kit, @@ -17465,65 +10118,11 @@ /obj/machinery/door/airlock/glass_external/public, /turf/simulated/floor/tiled/techmaint, /area/space) -"mKY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) "mLa" = ( /obj/structure/railing, /obj/structure/window/basic, /turf/simulated/open, /area/crew_quarters/bar) -"mLp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/space) -"mLv" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/structure/table/rack/shelf/steel, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) -"mLD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"mMv" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/communications, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"mMJ" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/hallway/primary/fore) "mMO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -17533,31 +10132,21 @@ }, /turf/simulated/floor/tiled, /area/space) -"mMT" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"mMY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) +/area/main_map/hallway/deck1/fore) "mNw" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/sleep/Dorm_9) -"mNz" = ( -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"mNG" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) "mNL" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ id_tag = "eva_paramedic_airlock"; @@ -17569,24 +10158,10 @@ /obj/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, /area/medical/medbay_emt_bay) -"mNP" = ( -/obj/structure/bed/chair/bay/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"mNS" = ( -/obj/machinery/door/airlock/maintenance/sec, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/space) +"mNT" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/forward/starboard) "mOB" = ( /obj/structure/grille, /obj/structure/girder/reinforced, @@ -17612,16 +10187,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/security_lockerroom) -"mPq" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/port) -"mPE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "mPX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -17629,29 +10194,6 @@ }, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"mQy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"mQJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) "mRf" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -17665,14 +10207,10 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"mRp" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/hos) -"mRM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/warden) +"mSC" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck1/fore) "mTt" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, @@ -17703,48 +10241,12 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/Dorm_3) -"mTx" = ( -/obj/structure/table/rack/steel, -/obj/structure/window/reinforced, -/obj/item/clothing/shoes/leg_guard/bulletproof, -/obj/item/clothing/gloves/arm_guard/bulletproof, -/obj/item/clothing/suit/armor/bulletproof/alt, -/obj/item/clothing/head/helmet/ballistic, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) "mTA" = ( /obj/effect/floor_decal/corner/white/border{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_4) -"mTJ" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"mTZ" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"mUk" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/medical/chemistry) "mUN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -17768,33 +10270,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"mUV" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_8) "mVz" = ( /obj/structure/cable{ icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/solars) -"mVR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) "mVZ" = ( /obj/structure/railing{ dir = 4 @@ -17803,51 +10284,6 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/open, /area/crew_quarters/bar) -"mWc" = ( -/obj/machinery/door/airlock{ - name = "Internal Affairs"; - req_access = list(38) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"mWg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/security/port) -"mWs" = ( -/turf/simulated/wall, -/area/crew_quarters/toilet) -"mWW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"mXe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/shuttle/escape) -"mXq" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) "mXs" = ( /obj/effect/floor_decal/techfloor{ dir = 10 @@ -17858,16 +10294,18 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"mXM" = ( -/obj/structure/cable/green{ - icon_state = "0-2" +"mXv" = ( +/obj/effect/floor_decal/corner/paleblue/bordercee{ + dir = 1 }, -/obj/structure/table/woodentable, -/obj/machinery/computer/security/telescreen{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) "mYh" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/effect/floor_decal/corner/paleblue/diagonal{ @@ -17875,18 +10313,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"mYi" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) +"mYx" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/port) "mYB" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -17896,40 +10327,20 @@ }, /turf/simulated/floor/carpet/blue, /area/crew_quarters/sleep/Dorm_8) -"mYE" = ( -/obj/structure/table/marble, +"mZo" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/space) -"mZk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/obj/structure/handrail{ - dir = 1 +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -32 }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"mZx" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"mZz" = ( -/obj/machinery/door/airlock/glass_external, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/port) -"mZE" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass{ - name = "Bar" - }, -/turf/simulated/floor/tiled, -/area/space) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) +"mZp" = ( +/obj/structure/sign/hangar/one, +/turf/simulated/wall/r_wall, +/area/main_map/Hangar_bay/deck1/a) "mZJ" = ( /obj/structure/railing{ dir = 4 @@ -17956,10 +10367,6 @@ }, /turf/simulated/floor/airless, /area/maintenance/solars) -"nah" = ( -/obj/machinery/computer/timeclock/premade/west, -/turf/simulated/floor/tiled, -/area/space) "nal" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -17972,9 +10379,24 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"nbl" = ( -/turf/simulated/wall, -/area/crew_quarters/bar) +"nar" = ( +/obj/structure/cable{ + icon_state = "32-8" + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/space) "nbs" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/spray/cleaner{ @@ -18006,47 +10428,27 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"ncp" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm8"; - name = "Room 8 Lock"; - pixel_x = 24; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"ndj" = ( -/obj/structure/cable/green, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"ndE" = ( -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 26; - pixel_y = -27 - }, +"nbK" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/research/researchdivision) +"nbN" = ( +/obj/machinery/door/airlock/maintenance, /turf/simulated/floor/tiled/techmaint, /area/space) -"neb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloorblack{ +"nbZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) +"ncr" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"ndV" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/lino, +/area/main_map/maintenance/deck_one/aft/port) "neO" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 1 @@ -18067,35 +10469,14 @@ /obj/machinery/door/window/southright, /turf/simulated/floor/glass/reinforced, /area/crew_quarters/bar) -"nfM" = ( -/obj/structure/sign/department/armory{ - pixel_x = 32; - pixel_y = -32 +"ngh" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/middlehall) -"ngs" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/port) -"ngG" = ( -/obj/effect/floor_decal/borderfloorblack, -/turf/simulated/floor/tiled/dark, -/area/space) -"nhf" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/obj/structure/bed/chair/comfy/brown, +/mob/living/simple_mob/humanoid/clown, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) "nhh" = ( /obj/effect/floor_decal/corner/green{ dir = 6 @@ -18105,40 +10486,9 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/xenoflora) -"nhC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/oxygen_pump{ - dir = 4; - pixel_x = 30 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/structure/handrail{ - dir = 8 - }, -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"nio" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/basic, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) -"niB" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +"niL" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_one) "njr" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -18147,40 +10497,6 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"nju" = ( -/turf/simulated/wall/r_wall, -/area/bridge/bunker) -"njA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"njQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"nkg" = ( -/turf/simulated/floor/tiled/dark, -/area/space) "nks" = ( /obj/machinery/light/no_nightshift{ dir = 4 @@ -18199,48 +10515,15 @@ }, /turf/simulated/floor/tiled/white, /area/space) -"nlk" = ( -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"nmq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"nmy" = ( -/turf/simulated/wall, -/area/maintenance/dormitory) "nmA" = ( /obj/machinery/vending/nifsoft_shop{ dir = 8 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"nna" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/curtain/open/bed{ - anchored = 1; - name = "curtain" - }, -/turf/simulated/floor/plating, -/area/space) +"nmI" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/bar) "nnp" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -18258,21 +10541,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/blue, /area/crew_quarters/sleep/Dorm_8) -"nnS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"noc" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_8) "noo" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/box/traumainjectors, @@ -18292,12 +10560,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"noz" = ( -/obj/structure/bed/chair/bay/comfy{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "noS" = ( /obj/landmark/spawnpoint/job/bartender, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18318,41 +10580,6 @@ /obj/item/storage/box/nifsofts_security, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"npu" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) -"npH" = ( -/obj/machinery/sleep_console, -/obj/effect/floor_decal/corner/paleblue/bordercee{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"npQ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/machinery/air_alarm{ - pixel_y = 28 - }, -/obj/structure/bed/chair/wheelchair, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"nqn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "nqz" = ( /obj/structure/table/hardwoodtable, /obj/machinery/computer/skills, @@ -18364,22 +10591,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_2) -"nqP" = ( -/obj/structure/table/bench/steel, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/machinery/camera/network/security, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) "nrw" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 @@ -18392,22 +10603,12 @@ }, /turf/simulated/floor/tiled/monowhite, /area/security/forensics) -"nrL" = ( -/obj/structure/lattice, -/turf/space, -/area/space) "nsj" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"nsn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one) "nsq" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 @@ -18437,50 +10638,34 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) +"ntk" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/main_map/Hangar_bay/deck1/a) "ntn" = ( /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/heads/hos) -"ntO" = ( -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"nuf" = ( -/obj/structure/window/reinforced{ - dir = 4 +"nto" = ( +/obj/landmark{ + name = "lightsout" }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"nuM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/phoronreinforced{ +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"nuB" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/machinery/door/blast/regular/open{ - id = "emergency_shuttle_lockdown"; - name = "Emergency Shuttle Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/escape) -"nuQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"nuR" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) "nuS" = ( /obj/structure/railing{ dir = 8 @@ -18489,20 +10674,6 @@ /obj/machinery/light/flamp, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/bar) -"nvr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/table/steel, -/obj/item/book/manual/security_space_law, -/obj/item/book/manual/standard_operating_procedure{ - pixel_x = -5 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) "nvx" = ( /obj/machinery/power/apc/critical/west_bump, /obj/structure/cable/green{ @@ -18510,26 +10681,28 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_6) -"nwv" = ( -/obj/structure/sign/department/armory{ - pixel_x = 32; - pixel_y = 32 +"nwg" = ( +/obj/structure/bed/chair/sofa/blue/left{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/button/remote/blast_door{ - id = "armoryaccess"; - name = "Armory Access"; - pixel_x = 8; - pixel_y = 27; - req_access = list(3) - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/middlehall) +/turf/simulated/floor/carpet/arcadecarpet, +/area/main_map/maintenance/deck_one/port) +"nwr" = ( +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/tank/emergency, +/obj/item/tank/emergency, +/obj/item/tank/emergency, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck1/a) "nww" = ( /obj/effect/floor_decal/corner/paleblue/bordercee{ dir = 1 @@ -18540,12 +10713,22 @@ "nwB" = ( /turf/simulated/wall, /area/rnd/research/researchdivision) -"nwC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ +"nwG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/turf/simulated/floor/plating, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/reinforced, +/area/security/tactical) +"nxa" = ( +/turf/simulated/wall/prepainted/security, +/area/security/security_equiptment_storage) "nxk" = ( /turf/simulated/wall, /area/space) @@ -18557,53 +10740,6 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/medical/surgery2) -"nxE" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"nxQ" = ( -/obj/machinery/door/airlock/glass/security/polarized{ - id_tag = "detdoor"; - id_tint = "det_office"; - name = "Detective's Office"; - req_access = list(4) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"nyq" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/flora/pottedplant/orientaltree, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen{ - pixel_y = -32 - }, -/turf/simulated/floor/wood, -/area/space) "nyv" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -18614,13 +10750,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/bar) -"nyD" = ( -/obj/structure/bed/chair/comfy/teal, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) "nyN" = ( /obj/structure/cable/heavyduty{ icon_state = "0-4" @@ -18630,15 +10759,6 @@ }, /turf/simulated/floor/airless, /area/space) -"nyT" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) "nzi" = ( /obj/machinery/door/blast/regular{ dir = 2; @@ -18647,15 +10767,26 @@ }, /turf/simulated/floor/reinforced, /area/security/tactical) -"nzX" = ( -/obj/machinery/door/window/brigdoor/northright, -/obj/structure/cable/green{ - icon_state = "1-2" +"nzv" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/port) +"nzG" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "armorylight"; + name = "Light Armory Acccess" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/tether/surfacebase/security/lobby) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/reinforced, +/area/security/armoury) +"nzJ" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/north, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) "nAe" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -18664,167 +10795,26 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/tealcarpet, /area/crew_quarters/sleep/Dorm_3) -"nAf" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) "nAk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgery) -"nAs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/starboard) -"nAP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall/rshull, -/area/space) -"nBb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"nBw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/chair/sofa/black/right, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "nBE" = ( /obj/structure/flora/pottedplant/bamboo, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officea) -"nBS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"nBV" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) -"nCd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"nCP" = ( -/obj/structure/bed/chair/sofa/black, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"nCZ" = ( -/obj/structure/table/rack/steel, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/item/clothing/accessory/storage/pouches/blue, -/obj/item/clothing/accessory/armor/legguards/ablative, -/obj/item/clothing/accessory/armor/armguards/ablative, -/obj/item/clothing/suit/armor/pcarrier/ablative, -/obj/item/clothing/head/helmet/ablative, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"nDa" = ( -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/maintenance/deck_one/aft/port) -"nDo" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"nDs" = ( +"nBL" = ( /obj/effect/floor_decal/corner/mauve{ - dir = 6 + dir = 5 }, -/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"nDL" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/green{ - icon_state = "4-8" +/area/rnd/lab) +"nCl" = ( +/obj/structure/railing{ + dir = 1 }, /turf/simulated/floor/plating, -/area/space) -"nEc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"nEk" = ( -/obj/machinery/door/window/brigdoor/southright{ - req_access = null; - req_one_access = list(8) - }, -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) +/area/medical/medbay) "nEv" = ( /obj/structure/closet/walllocker{ dir = 4; @@ -18838,6 +10828,12 @@ /obj/item/storage/secure/briefcase, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officeb) +"nEF" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) "nFZ" = ( /obj/structure/bed/chair{ dir = 4 @@ -18847,29 +10843,20 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/surgery_hallway) -"nGk" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable/heavyduty{ - icon_state = "0-2" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ +"nGd" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/reinforced, -/area/space) +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"nGm" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/iaa/officea) "nGt" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/crew_quarters/recreation_area) -"nGD" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "nGL" = ( /obj/machinery/camera/network/medbay{ dir = 8 @@ -18880,9 +10867,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgery) -"nGX" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) "nGZ" = ( /obj/structure/table/hardwoodtable, /obj/item/stamp/denied{ @@ -18892,32 +10876,10 @@ /obj/item/stamp/internalaffairs, /turf/simulated/floor/carpet/oracarpet, /area/tether/surfacebase/security/iaa/officea) -"nHb" = ( -/obj/structure/shuttle/window, -/obj/structure/grille, -/turf/simulated/shuttle/plating/airless, -/area/space) -"nHq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"nHK" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24; - pixel_y = -5 - }, -/obj/structure/handrail{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +"nHo" = ( +/obj/structure/sign/deck/first, +/turf/simulated/wall, +/area/main_map/hallway/deck1/fore) "nHL" = ( /turf/simulated/floor/carpet/tealcarpet, /area/crew_quarters/heads/cmo) @@ -18927,54 +10889,66 @@ }, /turf/simulated/floor/tiled/monotile, /area/space) -"nIn" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/space) -"nIs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"nIb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/closet/crate/hydroponics, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/obj/item/tool/wirecutters/clippers/trimmers, +/obj/item/tool/wirecutters/clippers/trimmers, +/obj/item/material/knife/machete/hatchet, +/obj/item/material/knife/machete/hatchet, +/obj/item/material/minihoe/plasteel, +/obj/item/material/minihoe/plasteel, +/obj/item/material/minihoe/plasteel, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/machinery/camera/network/research{ + dir = 1 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"nIe" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/maintenance/security/upper) +"nIE" = ( +/obj/landmark/spawnpoint/job/scientist, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"nIR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"nIW" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"nJa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/starboard) +/area/maintenance/security/port) "nJl" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/medical/surgery2) -"nJv" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_3) "nJA" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 @@ -18990,28 +10964,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"nKb" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) -"nKj" = ( -/obj/machinery/door/airlock/security{ - name = "Armory"; - req_access = list(3); - secured_wires = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) "nLj" = ( /obj/structure/table/woodentable, /obj/machinery/recharger, @@ -19035,119 +10987,48 @@ "nLu" = ( /turf/simulated/wall, /area/tether/surfacebase/security/iaa/officeb) -"nLv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/space) "nMa" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) +"nMe" = ( +/obj/structure/sign/hangar/one, +/turf/simulated/wall, +/area/main_map/Hangar_bay/deck1/a) "nMo" = ( /obj/structure/cable/green, /obj/machinery/power/apc/direction_bump/south, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/solars) -"nNl" = ( -/obj/structure/cryofeed, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) "nOk" = ( /obj/structure/table/steel_reinforced, /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/security/lobby) +"nOl" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/aft/starboard) "nOp" = ( /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"nOq" = ( -/obj/machinery/door/airlock/security{ - name = "Internal Affairs"; - req_access = list(38); - req_one_access = list() - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"nPb" = ( -/obj/machinery/door/airlock/medical{ - name = "Chemistry"; - req_one_access = list(33) - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/chemistry) -"nPq" = ( -/obj/machinery/deployable/barrier, -/obj/effect/floor_decal/corner/blue{ +"nPp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) +"nPJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"nPr" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/pink/border{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/air_alarm{ - desc = " "; - pixel_y = 24 - }, -/obj/machinery/camera/network/security, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/pink/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) +/turf/simulated/floor/wood, +/area/main_map/hallway/deck1/fore) "nPU" = ( /turf/simulated/open, /area/medical/medbay) -"nQe" = ( -/obj/machinery/conveyor{ - id = "shuttle_inbound" - }, -/obj/structure/plasticflaps, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "nQH" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -19169,6 +11050,9 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) +"nRV" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology/xenoflora) "nSu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -19188,19 +11072,9 @@ /obj/structure/closet/crate/solar, /turf/simulated/floor/airless, /area/maintenance/solars) -"nUb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) +"nUD" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/sleep/Dorm_7) "nUE" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -19208,26 +11082,10 @@ /obj/machinery/power/apc/direction_bump/north, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"nVd" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"nVs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) -"nVv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/space) +"nUG" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/security/briefingroom) "nVP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -19237,31 +11095,12 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"nWv" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) "nWH" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, /area/crew_quarters/bar) -"nWI" = ( -/obj/machinery/door/window/brigdoor/southright{ - dir = 4; - name = "holding cell" - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) -"nWJ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/techfloor, -/area/space) "nWO" = ( /obj/structure/table/steel_reinforced, /obj/structure/reagent_dispensers/water_cooler/full{ @@ -19270,18 +11109,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/security/lobby) -"nWV" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/hor) -"nXa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +"nXo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) "nYb" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Medical Maintenance Access"; @@ -19299,66 +11132,29 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/medical/reception) -"nZG" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/maintenance/deck_one/port) +"nZF" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/obj/machinery/shipsensors, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/Hangar_bay/deck1/a) "nZH" = ( /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/security/lobby) -"oap" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/window/westright{ - name = "Service Counter"; - req_access = list(25); - req_one_access = list(25) - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"oax" = ( -/obj/structure/fuel_port{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"oaY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/space) -"obn" = ( -/obj/structure/bed/double/weaversilk_nest, -/obj/random/plushielarge, -/turf/simulated/floor/carpet/arcadecarpet, -/area/maintenance/deck_one/port) -"obv" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 20 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, +"oaB" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) +"oaM" = ( /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one) "obN" = ( /obj/structure/sink/kitchen{ dir = 8; @@ -19367,57 +11163,41 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"ocj" = ( -/obj/structure/sign/directions/evac{ +"obR" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"ocd" = ( +/obj/machinery/light/no_nightshift{ dir = 8 }, -/turf/simulated/wall, -/area/vacant/vacant_office) +/turf/simulated/floor/tiled, +/area/medical/medbay) "oco" = ( /obj/landmark/spawnpoint/overflow/station, /turf/simulated/floor/tiled/techfloor, /area/space) +"ocr" = ( +/turf/simulated/wall/prepainted/command, +/area/crew_quarters/heads/hop) +"ocP" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/security/hallway) "ocX" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/security/hallway) -"odd" = ( -/obj/machinery/door/airlock/maintenance/sec, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/security/upper) -"odx" = ( -/obj/structure/table/reinforced, -/obj/item/folder{ - pixel_x = -4 - }, -/obj/item/folder/blue{ - pixel_x = 5 - }, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/item/clipboard, -/obj/item/storage/briefcase{ - pixel_x = -2; - pixel_y = -5 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) +"odi" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/sleep/Dorm_8) "oeA" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -19427,9 +11207,6 @@ "oeC" = ( /turf/simulated/floor/plating, /area/security/tactical) -"oeP" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/evastorage) "oeT" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19437,20 +11214,15 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"oeY" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/red{ +"ofo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/effect/floor_decal/corner/red{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) "ofv" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -19461,16 +11233,9 @@ /obj/structure/adherent_bath, /turf/simulated/floor/crystal, /area/space) -"ofS" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/kitchen) -"oge" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) +"ogl" = ( +/turf/simulated/wall/prepainted/security, +/area/tether/surfacebase/security/briefingroom) "ogt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19494,14 +11259,12 @@ /obj/structure/railing, /turf/simulated/open, /area/rnd/robotics/mechbay) -"ohg" = ( -/obj/structure/closet/wardrobe/black, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"ohx" = ( -/obj/structure/sign/deck/first, -/turf/simulated/wall, -/area/holodeck_control) +"ohL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/warden) "oih" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) @@ -19514,12 +11277,6 @@ }, /turf/simulated/floor/tiled/white, /area/space) -"oiJ" = ( -/obj/structure/cable/green{ - icon_state = "32-2" - }, -/turf/simulated/open, -/area/maintenance/deck_one/port) "oiY" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /obj/machinery/door/blast/shutters{ @@ -19530,49 +11287,24 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/chemistry) -"ojA" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_9) -"okj" = ( -/obj/structure/bed/chair/bay/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"okT" = ( -/obj/structure/sign/deck1{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one) -"okU" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"olj" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/bed/chair/sofa/left{ +"ojb" = ( +/obj/structure/railing{ dir = 1 }, -/turf/simulated/floor/carpet/bcarpet, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced, /area/space) +"okA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/reinforced, +/area/security/riot_control) +"oly" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/crew_quarters/recreation_area) "olH" = ( /obj/structure/table/woodentable, /obj/item/flashlight/lamp/green{ @@ -19596,28 +11328,12 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"omb" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) "oml" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"omm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/port) "omH" = ( /obj/machinery/door/airlock/sandstone{ name = "Command Showers" @@ -19627,12 +11343,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/space) -"onJ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +"onv" = ( +/obj/structure/railing{ dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) +/turf/simulated/floor/reinforced, +/area/space) +"onU" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) "oon" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -19650,16 +11370,14 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/security_lockerroom) -"oqK" = ( -/turf/simulated/floor/glass/reinforced, -/area/maintenance/deck_one) -"oqV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_7) +"oqR" = ( +/obj/machinery/holopad, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/lino, +/area/security/detectives_office) +"orj" = ( +/turf/simulated/wall/prepainted/civilian, +/area/main_map/maintenance/deck_one/port) "oro" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -19672,14 +11390,26 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"orH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/window/reinforced{ +"ort" = ( +/turf/simulated/wall/prepainted/civilian, +/area/main_map/hallway/deck1/fore) +"orT" = ( +/obj/structure/railing, +/obj/structure/railing{ dir = 4 }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_one/forward/starboard) "orW" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -19726,29 +11456,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_4) -"otu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"otE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) "otO" = ( /obj/machinery/microwave, /obj/structure/table/marble, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"otQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Cryo" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) "oud" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -19761,22 +11473,9 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"oup" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_5) -"ouR" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"ovr" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/space) +"ovz" = ( +/turf/simulated/wall/r_wall, +/area/main_map/Hangar_bay/deck1/a) "ovX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -19788,57 +11487,16 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/dark, /area/medical/surgery_hallway) -"owF" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/deck_one) -"owK" = ( -/obj/machinery/door/airlock/glass{ - name = "Helm"; - req_one_access = list(19,67) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/space) "owQ" = ( /obj/structure/closet/lawcloset, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officea) -"owU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"oxh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/iaa) "oxz" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, /turf/simulated/floor/tiled, /area/space) -"oxO" = ( -/obj/structure/bed/padded, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/random/bedsheet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"oxS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/space) "oys" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -19847,52 +11505,27 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_7) -"oyC" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = -24 - }, +"ozC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1/fore) +"ozJ" = ( +/obj/machinery/door/airlock/glass, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"oyX" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_1) +/area/tether/surfacebase/security/iaa/officecommon) "ozZ" = ( /obj/structure/catwalk, /obj/structure/handrail, /turf/simulated/floor/reinforced/airless, /area/space) -"oAf" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) "oAM" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/simulated/floor/reinforced/airless, /area/space) -"oBd" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"oBo" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"oBu" = ( -/obj/effect/floor_decal/corner/paleblue, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) "oBU" = ( /obj/machinery/door/airlock/maintenance/sec, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -19914,78 +11547,27 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/security/upper) -"oBZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/shuttle/escape) -"oCm" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"oCX" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/hallway/primary/fore) -"oDh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) "oEe" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hor) +"oEo" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) +"oEF" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) "oFr" = ( /turf/simulated/floor/wood, /area/space) -"oFA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/table/rack/shelf/steel, -/obj/item/melee/baton/loaded, -/obj/item/melee/baton/loaded, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"oGh" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) "oGk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -19993,20 +11575,16 @@ }, /turf/simulated/floor/tiled, /area/space) -"oHl" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"oHI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing, -/obj/structure/grille, -/obj/structure/cable/green{ - icon_state = "1-2" - }, +"oGO" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) +/area/main_map/maintenance/deck_one/starboard) +"oHd" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "oIq" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -20019,21 +11597,6 @@ }, /turf/simulated/floor/carpet/sblucarpet, /area/crew_quarters/sleep/Dorm_4) -"oIG" = ( -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_y = -26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) "oIS" = ( /obj/structure/table/rack/shelf/steel, /obj/item/clothing/glasses/hud/security, @@ -20054,26 +11617,17 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hydroponics) -"oJL" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/starboard) -"oKk" = ( -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = -11 - }, -/turf/simulated/floor/tiled/dark, -/area/space) +"oJC" = ( +/obj/machinery/door/airlock/glass_external, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/port) +"oJX" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/port) "oKz" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/space) -"oLo" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) "oLz" = ( /obj/machinery/door/blast/regular{ dir = 4; @@ -20098,20 +11652,6 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/rnd/robotics/mechbay) -"oLD" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/energy/gun, -/obj/item/gun/energy/gun, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/gun/energy/gun, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"oLF" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_1) "oLZ" = ( /obj/machinery/door/airlock/glass/security{ name = "Light Armory"; @@ -20148,26 +11688,14 @@ }, /turf/simulated/floor/carpet/sblucarpet, /area/crew_quarters/captain) -"oML" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) "oMP" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"oMX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) +"oMV" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1/fore) "oNl" = ( /obj/machinery/light_switch{ dir = 8; @@ -20175,15 +11703,22 @@ }, /turf/simulated/floor/carpet/purcarpet, /area/tether/surfacebase/security/iaa/officeb) -"oNQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +"oNv" = ( +/obj/structure/sign/directions/bridge{ + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"oNX" = ( /turf/simulated/wall, -/area/medical/reception) +/area/main_map/hallway/deck1) +"oNw" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) "oOj" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -20200,57 +11735,9 @@ /obj/structure/table/glass, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"oOG" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"oOK" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) -"oOM" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"oPj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/space) "oPo" = ( /turf/simulated/floor/glass/reinforced, /area/bridge/bunker) -"oPp" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"oPu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"oPA" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/space) "oPS" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -20261,6 +11748,24 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) +"oPU" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_one/aft/port) +"oQh" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24; + pixel_y = -5 + }, +/obj/structure/bed/chair/sofa/teal/left{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/mob/living/simple_mob/humanoid/clown, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) "oQw" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -20273,46 +11778,19 @@ }, /turf/simulated/floor/carpet/sblucarpet, /area/crew_quarters/captain) -"oQO" = ( -/obj/structure/closet/gmcloset{ - name = "formal wardrobe" +"oQE" = ( +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -24; + pixel_y = -5 }, -/obj/item/glass_jar, -/obj/item/retail_scanner/civilian, -/obj/item/retail_scanner/civilian, -/obj/item/clothing/accessory/hawaii/random, +/obj/structure/bed/chair/comfy/blue, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/mob/living/simple_mob/humanoid/clown, /turf/simulated/floor/wood, -/area/space) -"oRd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) -"oRH" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) -"oRJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/space) +/area/crew_quarters/sleep/Dorm_4) "oRS" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -20327,20 +11805,6 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/xenobiology/xenoflora) -"oSf" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/random/cigarettes, -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/north) "oSi" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -20354,6 +11818,12 @@ /obj/structure/stairs/spawner/west, /turf/simulated/floor/reinforced/airless, /area/space) +"oSp" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_one/aft/port) "oSq" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/meter, @@ -20379,49 +11849,27 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"oTn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +"oSK" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/sleep/Dorm_2) +"oUt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/space) -"oUn" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"oUC" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"oVs" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"oVG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/railing, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"oUS" = ( +/turf/simulated/wall/prepainted/command, +/area/crew_quarters/heads/hor) +"oVy" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on, /turf/simulated/floor/plating, /area/space) "oVR" = ( @@ -20442,17 +11890,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"oVZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) "oWl" = ( /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officeb) @@ -20464,48 +11901,9 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_2) -"oXx" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/space) -"oXA" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/holoplant, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"oYm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance, +"oWs" = ( /turf/simulated/floor/plating, -/area/vacant/vacant_office) -"oZM" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/area/medical/medbay) "pad" = ( /obj/machinery/door/airlock/glass{ name = "Holodeck" @@ -20516,6 +11914,23 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) +"pal" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/camera/network/research, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research/researchdivision) +"pam" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "pat" = ( /obj/machinery/power/apc/critical/west_bump, /obj/structure/cable/green{ @@ -20527,37 +11942,34 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel_ridged, /area/tether/surfacebase/security/lobby) -"paS" = ( -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/random/soap, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) "pby" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/reinforced, /area/space) -"pbQ" = ( -/obj/structure/railing{ - dir = 4 +"pbB" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/lab) +"pbI" = ( +/turf/simulated/wall/prepainted/command, +/area/crew_quarters/heads/hos) +"pbO" = ( +/turf/simulated/wall/prepainted/science, +/area/main_map/maintenance/deck_one/aft/starboard) +"pbZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/unsimulated/floor/techfloor_grid, -/area/centcom/simulated/terminal) -"pca" = ( -/obj/structure/sign/directions/evac{ - dir = 8 - }, -/turf/simulated/wall, -/area/hallway/primary/central_one) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) "pcd" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officea) +"pch" = ( +/turf/simulated/wall/prepainted/civilian, +/area/holodeck_control) "pcu" = ( /obj/structure/table/steel_reinforced, /obj/item/retail_scanner/security, @@ -20578,73 +11990,30 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"pde" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"pdE" = ( -/obj/structure/bed/chair/shuttle{ +"pdn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"pdG" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "tether_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/space) -"pdK" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"pem" = ( -/obj/machinery/button/remote/airlock{ - id = "BrigFoyer"; - name = "Lobby Door Control"; - pixel_x = 24; - pixel_y = 5; - req_access = list(1) +/area/rnd/research_foyer) +"pen" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/oxygen_pump{ + dir = 8; + pixel_x = -30 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/spline/fancy, +/obj/structure/handrail{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/tether/surfacebase/security/lobby) -"peq" = ( -/obj/machinery/sleeper{ - dir = 8 +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = 30 }, -/obj/effect/floor_decal/corner/paleblue/bordercee{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/Hangar_bay/deck1/a) "pez" = ( /obj/machinery/atmospherics/valve{ dir = 4; @@ -20684,22 +12053,6 @@ /obj/structure/flora/pottedplant/smallcactus, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_8) -"pfj" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"pfs" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/light/no_nightshift, -/turf/simulated/open, -/area/space) "pgu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -20709,21 +12062,18 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"phd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/component/binary/pump/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/component/binary/pump/fuel{ - dir = 8 - }, +"pgT" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole/right, /turf/simulated/floor/tiled/techfloor, -/area/space) +/area/rnd/research/researchdivision) +"pgW" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck1) +"phl" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/tether/surfacebase/medical/chemistry) "phn" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -20738,19 +12088,30 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"piU" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 32; - pixel_y = 3 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, +"phO" = ( +/obj/machinery/computer/timeclock/premade/west, /turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"pjy" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/fore) +/area/rnd/research_foyer) +"phT" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"piS" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) +"pjR" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/forward/starboard) "pkl" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -20760,25 +12121,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"pkB" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/shuttle/escape) -"pmd" = ( -/obj/structure/bed/chair/bay/comfy/black{ - dir = 1 +"pnj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/machinery/button/windowtint{ - id = "emergency_cockpit"; - pixel_x = -24; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"pnt" = ( -/obj/structure/table/woodentable, -/obj/structure/flora/pottedplant/fern, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) "pov" = ( /obj/machinery/door/window/brigdoor/southright{ req_access = list(55); @@ -20786,26 +12134,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"ppm" = ( -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_y = -26 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) "ppG" = ( /obj/structure/flora/pottedplant/subterranean, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_7) -"pqa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "emergency_security" - }, -/turf/simulated/floor, -/area/shuttle/escape) "pqg" = ( /obj/structure/railing{ dir = 1 @@ -20813,23 +12145,6 @@ /obj/structure/railing, /turf/simulated/open, /area/rnd/xenobiology/xenoflora_storage) -"prk" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm8"; - name = "Dorm 8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) "prA" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 @@ -20843,31 +12158,12 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"prF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_one) "prS" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"pst" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) "psH" = ( /obj/effect/floor_decal/techfloor{ dir = 5 @@ -20893,26 +12189,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"pts" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +"puH" = ( +/obj/machinery/papershredder, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"ptw" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/space) -"ptC" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/bed/chair/sofa/left, -/turf/simulated/floor/carpet/bcarpet, -/area/space) +/turf/simulated/floor/tiled, +/area/medical/reception) "pvd" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 @@ -20930,15 +12214,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) -"pvz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/red, -/area/tether/surfacebase/security/hallway) +"pvu" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) "pvU" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -20956,26 +12235,9 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/heads/hos) -"pwN" = ( -/turf/simulated/wall, -/area/crew_quarters/bar_backroom) -"pwQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"pxi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +"pwO" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/aft/port) "pxq" = ( /obj/effect/floor_decal/corner/paleblue/bordercee, /obj/effect/floor_decal/industrial/outline/blue, @@ -20988,6 +12250,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) +"pxs" = ( +/obj/machinery/air_alarm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) "pxD" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, @@ -21002,29 +12270,41 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) -"pxG" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27 - }, -/obj/machinery/holopad, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"pxS" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/space) "pyf" = ( /obj/structure/bed/chair/bay/comfy, /turf/simulated/floor/glass/reinforced, /area/bridge/bunker) -"pyn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +"pyj" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/armor/vest/alt{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/clothing/suit/armor/vest/alt{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/suit/armor/vest/alt{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest/alt{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/security/security_equiptment_storage) "pyo" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -21037,12 +12317,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"pyx" = ( -/obj/machinery/light/small{ - dir = 4 - }, +"pyu" = ( +/obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, -/area/maintenance/dormitory) +/area/main_map/maintenance/deck_one/aft/port) "pyL" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -21058,18 +12336,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"pzt" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/flora/pottedplant/smalltree, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +"pzf" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/main_map/maintenance/deck_one) "pzC" = ( /obj/structure/flora/pottedplant/large, /obj/machinery/light/no_nightshift{ @@ -21085,12 +12355,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"pAb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) "pAI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -21104,12 +12368,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_6) -"pBy" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"pAJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/port) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora) "pBF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -21123,71 +12388,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_4) -"pCa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_external" - }, -/obj/effect/shuttle_landmark{ - base_area = /area/tether/exploration; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "expshuttle_dock"; - landmark_tag = "tether_excursion_hangar"; - name = "Excursion Shuttle Dock" - }, -/obj/overmap/entity/visitable/ship/landable/excursion, -/turf/simulated/floor/tiled/techmaint, -/area/space) "pCD" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"pCI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access = list(25); - req_one_access = list(25) +"pCS" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 8 }, /turf/simulated/floor/plating, -/area/space) -"pCL" = ( -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/structure/closet/emcloset/legacy, -/obj/item/storage/backpack/parachute, -/obj/item/storage/backpack/parachute, -/obj/item/storage/backpack/parachute, -/obj/item/storage/backpack/parachute, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/area/main_map/maintenance/deck_one/aft/starboard) "pCW" = ( /obj/structure/table/steel, /obj/structure/window/reinforced{ @@ -21216,6 +12426,16 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) +"pDr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck1/a) +"pEp" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/forward/starboard) "pFQ" = ( /obj/effect/floor_decal/corner/red{ dir = 5 @@ -21226,6 +12446,10 @@ /obj/machinery/camera/network/security, /turf/simulated/floor/tiled, /area/security/security_lockerroom) +"pGd" = ( +/obj/landmark/spawnpoint/job/head_nurse, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) "pGe" = ( /obj/machinery/door/blast/regular{ dir = 4; @@ -21245,24 +12469,18 @@ /obj/structure/reagent_dispensers/water_cooler/full, /turf/simulated/floor/tiled/white, /area/medical/reception) -"pHN" = ( -/obj/machinery/power/terminal{ - dir = 8 +"pHy" = ( +/obj/structure/railing{ + dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/plating, /area/space) +"pIj" = ( +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) "pIk" = ( /obj/machinery/button/remote/airlock{ id = "dorm5"; @@ -21273,15 +12491,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_5) -"pIF" = ( -/obj/structure/table/marble, -/obj/machinery/reagentgrinder, -/obj/item/reagent_containers/glass/rag, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "pIK" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -21289,134 +12498,69 @@ /obj/structure/flora/pottedplant/tall, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"pIV" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_5) -"pJC" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 33 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"pKy" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) -"pLB" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"pLF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 - }, -/obj/machinery/door/airlock/security{ - name = "Armory Storage"; - secured_wires = 1 - }, -/obj/machinery/door/blast/regular{ - id = "armoryaccess"; - name = "Armory" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"pLO" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_4) -"pMb" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/window/eastleft, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"pNi" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +"pKS" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1/fore) +"pLJ" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/research/researchdivision) +"pNn" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_one/forward/starboard) +"pNz" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/crew_quarters/bar_backroom) "pNK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"pOi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"pOc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/forward/port) +"pOh" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/starboard) +"pOo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, /area/space) -"pOl" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/r_n_d/protolathe{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"pPy" = ( -/obj/machinery/computer/security, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/red, -/area/tether/surfacebase/security/lobby) "pPz" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/security/lobby) -"pPB" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"pPC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/extinguisher_cabinet{ + pixel_y = -31 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/space) -"pPD" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "pPZ" = ( /obj/structure/table/reinforced, /obj/item/book/manual/legal/sop_vol2, @@ -21428,22 +12572,27 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"pQD" = ( -/obj/machinery/door/airlock/maintenance, +"pQm" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research/researchdivision) +"pQv" = ( /turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/port) -"pSq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/machinery/light/small{ +/area/main_map/maintenance/deck_one/starboard) +"pRy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"pSM" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/command) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "pTe" = ( /obj/random/medical, /obj/random/medical, @@ -21462,37 +12611,25 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"pTH" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 +"pTE" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"pTR" = ( -/obj/machinery/door/airlock/glass/security{ - name = "Briefing Room"; - req_access = list(); - req_one_access = list(1,38) +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + name = "Security Reception" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) +/obj/structure/table/steel, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/security/lobby) "pTU" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/space) -"pUa" = ( -/obj/machinery/computer/ship/helm{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "pUf" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -21503,32 +12640,9 @@ /obj/structure/table/glass, /turf/simulated/floor/tiled/white, /area/medical/reception) -"pUg" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) "pUp" = ( /turf/simulated/floor/carpet/oracarpet, /area/crew_quarters/heads/chief) -"pVi" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/bed/chair/sofa/right{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"pVz" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_6) -"pWe" = ( -/turf/simulated/wall, -/area/crew_quarters/recreation_area_hallway) "pWk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -21537,41 +12651,13 @@ "pWr" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"pWA" = ( -/obj/machinery/door/window/brigdoor/northright{ - req_access = null; - req_one_access = list(8) +"pWL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"pWE" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 1 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) -"pXf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"pXp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) +/obj/machinery/light, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "pXE" = ( /obj/machinery/ai_status_display{ pixel_y = 32 @@ -21584,6 +12670,13 @@ }, /turf/simulated/open, /area/maintenance/security/port) +"pYv" = ( +/obj/machinery/power/pointdefense{ + id_tag = "forward_pd" + }, +/obj/structure/cable/heavyduty, +/turf/simulated/floor/reinforced/airless, +/area/space) "pYy" = ( /obj/structure/sink{ pixel_y = 22 @@ -21598,14 +12691,22 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_2) -"pYI" = ( -/obj/machinery/door/airlock/glass/security{ - name = "Observation"; - req_access = list(2) +"pYW" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/effect/floor_decal/corner/paleblue/diagonal{ + dir = 4 }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) "pZb" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -21616,12 +12717,6 @@ }, /turf/simulated/floor/tiled/white, /area/space) -"pZl" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/lino, -/area/maintenance/deck_one/aft/port) "pZE" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -21642,47 +12737,25 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_2) -"qba" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/escape) -"qbc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/starboard) +"qbd" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/forward/port) "qbk" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"qca" = ( -/obj/structure/bed/chair/comfy/teal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"qcg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/shuttle/escape) +"qcr" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/north, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/bar) "qcx" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/space) -"qcM" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/obj/item/instrument/trumpet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) "qcS" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/machinery/door/firedoor{ @@ -21697,29 +12770,16 @@ /obj/machinery/door/window/northleft, /turf/simulated/floor/glass/reinforced, /area/crew_quarters/bar) -"qdt" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 +"qdS" = ( +/obj/machinery/door/airlock/glass/security/polarized{ + id_tag = "detdoor"; + id_tint = "det_office"; + name = "Detective's Office"; + req_access = list(4) }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/space) -"qdB" = ( -/obj/structure/bed/chair/shuttle, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/lino, +/area/security/detectives_office) "qek" = ( /obj/structure/table/hardwoodtable, /obj/item/paper_bin, @@ -21734,26 +12794,16 @@ }, /turf/simulated/floor/carpet/oracarpet, /area/tether/surfacebase/security/iaa/officea) -"qeG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"qeW" = ( +/obj/effect/floor_decal/corner/paleblue/full, +/obj/effect/floor_decal/corner/paleblue{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/spline/plain{ dir = 10 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"qeY" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/woodentable, -/obj/machinery/recharger, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area_hallway) +/turf/simulated/floor/tiled/white, +/area/medical/medbay) "qfC" = ( /obj/structure/railing, /obj/structure/railing{ @@ -21761,6 +12811,9 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) +"qfM" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/main_map/hallway/deck1/fore) "qfU" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Emergency Maintenance Access Use Only" @@ -21771,6 +12824,14 @@ "qgf" = ( /turf/simulated/floor/tiled/dark, /area/security/warden) +"qgm" = ( +/obj/structure/stairs/spawner/west, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/starboard) "qgB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -21786,54 +12847,12 @@ /obj/item/material/knife/butch, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"qhv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"qhA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/forward/port) -"qiB" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/space) -"qjs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) "qjv" = ( /obj/structure/cable/green{ icon_state = "2-4" }, /turf/simulated/floor/tiled/monotile, /area/space) -"qjw" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/security{ - name = "Equipment Storage"; - req_access = list() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) "qjL" = ( /obj/effect/floor_decal/techfloor{ dir = 10 @@ -21843,19 +12862,11 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"qjO" = ( -/obj/machinery/appliance/mixer/candy, -/turf/simulated/floor/tiled/dark, -/area/space) -"qkb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) +"qkD" = ( +/obj/machinery/atmospherics/portables_connector/fuel, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) "qkR" = ( /obj/effect/floor_decal/corner/white/border, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21869,12 +12880,6 @@ /obj/machinery/power/apc/direction_bump/south, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/heads/hos) -"qlI" = ( -/obj/machinery/door/airlock/glass_external, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "qlJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -21884,77 +12889,19 @@ /obj/structure/flora/pottedplant/shoot, /turf/simulated/floor/glass/reinforced, /area/crew_quarters/bar) -"qmE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, +"qmY" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on, +/turf/simulated/floor/plating, /area/space) -"qmX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"qnM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/marble, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/hand_labeler, -/turf/simulated/floor/tiled/dark, -/area/space) -"qnW" = ( -/obj/structure/sign/directions/cryo, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 10 - }, -/turf/simulated/wall, -/area/hallway/primary/central_one) -"qnY" = ( -/obj/structure/bed/padded, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/obj/random/bedsheet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) +"qne" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/medbay_emt_bay) "qof" = ( /turf/simulated/floor/airless/ceiling, /area/maintenance/solars) -"qou" = ( -/obj/effect/floor_decal/borderfloorblack/full, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/deployable/barrier, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) +"qot" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/armoury) "qoC" = ( /obj/effect/floor_decal/corner/white/border, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -22011,17 +12958,6 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"qqx" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 33 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) "qqz" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/effect/floor_decal/corner/paleblue/diagonal{ @@ -22035,70 +12971,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"qqA" = ( -/obj/effect/floor_decal/corner/mauve/full, -/obj/machinery/lathe/autolathe, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/corner/mauve{ - dir = 4 - }, -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/tiled/techfloor, -/area/space) "qqH" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, /area/maintenance/security/port) -"qqS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"qrI" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"qrL" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "32-2" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ +"qqI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/structure/handrail{ dir = 1 }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/lower/north) -"qrV" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"qsH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/starboard) +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) "qsJ" = ( /obj/machinery/atmospherics/pipe/tank{ dir = 4 @@ -22111,18 +12995,6 @@ }, /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/heads/hor) -"qtl" = ( -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"que" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) "quf" = ( /obj/structure/railing{ dir = 4 @@ -22138,22 +13010,6 @@ }, /turf/simulated/open, /area/crew_quarters/bar) -"qug" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) -"quC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/space) -"quM" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen) "quX" = ( /obj/structure/sink{ dir = 8; @@ -22171,12 +13027,6 @@ /obj/random/bedsheet, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_7) -"qwh" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/crew_quarters/sleep/Dorm_2) "qwr" = ( /turf/simulated/floor/tiled/monotile, /area/space) @@ -22216,33 +13066,10 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"qxT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/wall/rshull, -/area/space) -"qyl" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/fore) -"qzE" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm7"; - name = "Dorm 7" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) +"qye" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/medical/medbay) "qAb" = ( /obj/structure/railing{ dir = 1 @@ -22252,23 +13079,41 @@ }, /turf/simulated/open, /area/maintenance/security/port) -"qAg" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 +"qAk" = ( +/obj/machinery/door/airlock/engineering{ + name = "Hangar Substation" }, -/turf/simulated/floor/tiled, -/area/space) -"qBF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/deck_one/forward/port) -"qBU" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"qCi" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/lino, -/area/maintenance/deck_one/aft/port) +/area/main_map/maintenance/deck_one/port) +"qBt" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/requests_console/preset/research{ + pixel_y = 30 + }, +/obj/landmark/spawnpoint/job/scientist, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"qCD" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/warden) +"qDc" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research/researchdivision) "qDZ" = ( /obj/structure/table/rack/shelf/steel, /obj/effect/floor_decal/industrial/outline/red, @@ -22276,73 +13121,21 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/dark, /area/security/tactical) -"qEm" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/open, -/area/maintenance/deck_one/forward/starboard) -"qER" = ( -/obj/machinery/vending/blood, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"qES" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"qFp" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"qFq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/glass/reinforced, -/area/maintenance/deck_one) -"qGa" = ( -/obj/structure/table/marble, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/recharger, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/space) -"qGG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"qEJ" = ( /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) +"qGh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/grass, +/area/rnd/xenobiology/xenoflora) "qGO" = ( /obj/structure/flora/pottedplant/shoot, /obj/effect/floor_decal/borderfloorwhite{ @@ -22357,30 +13150,22 @@ /obj/machinery/appliance/cooker/fryer, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"qHa" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"qHd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"qHo" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/spline/fancy/wood{ +"qHB" = ( +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/flora/pottedplant/small, -/turf/simulated/floor/carpet/bcarpet, -/area/space) +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "cargo_mailroom"; + name = "Cargo Mail belt" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/port) "qHI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -22406,58 +13191,25 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/security/lobby) -"qIp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Bar" - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"qIG" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 18; - pixel_y = 7 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/item/healthanalyzer, -/turf/simulated/floor/tiled/neutral, -/area/space) -"qIX" = ( -/obj/structure/table/woodentable, -/obj/item/instrument/accordion, -/obj/machinery/computer/security/telescreen{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) "qJr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"qKe" = ( -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/aft/port) -"qKk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Bar" +"qJL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/monotile, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/starboard) "qKB" = ( /turf/simulated/floor/carpet/purcarpet, /area/tether/surfacebase/security/iaa/officeb) +"qKW" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/atmospheric_substation/medical) "qLP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -22467,15 +13219,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"qMa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/space) "qMn" = ( /obj/structure/bed/chair/comfy/teal{ dir = 4 @@ -22496,66 +13239,44 @@ /obj/item/tool/wrench, /turf/simulated/floor/airless/ceiling, /area/maintenance/solars) -"qNU" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ +"qMQ" = ( +/obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"qOP" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret/stationary{ - gl_uid = "exploration"; - installation = /obj/item/gun/energy/phasegun; - name = "exploration turret"; - req_one_access = list(19,43,62,67); - uid = "exploration" +/area/main_map/hallway/deck1/fore) +"qNT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) +"qPe" = ( +/obj/spawner/window/low_wall/borosillicate/full/firelocks, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) "qPq" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"qPy" = ( -/obj/structure/table/marble, -/obj/item/material/kitchen/rollingpin, -/obj/item/material/knife/butch, -/turf/simulated/floor/tiled/dark, +"qPG" = ( +/obj/machinery/door/airlock/maintenance/rnd{ + req_access = list(30,47,77) + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora_storage) +"qPO" = ( +/obj/structure/marker_beacon/red, +/turf/simulated/floor/reinforced/airless, /area/space) "qPR" = ( /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"qPZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"qQf" = ( -/obj/machinery/flasher/portable, -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) "qQh" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -22563,52 +13284,21 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/tiled/techmaint, /area/maintenance/solars) -"qQk" = ( -/obj/structure/sign/deck/first, -/turf/simulated/wall, -/area/hallway/primary/fore) -"qQL" = ( -/obj/structure/bed/chair/shuttle, -/obj/effect/floor_decal/borderfloor{ - dir = 5 +"qRq" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = 8 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 +/obj/structure/sign/directions/science{ + dir = 2; + pixel_y = 3 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"qQU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall/prepainted/security, /area/security/security_lockerroom) -"qRb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"qRe" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"qRm" = ( -/obj/structure/catwalk, -/turf/simulated/open, -/area/maintenance/deck_one) "qRu" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -22637,24 +13327,9 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/iaa/officeb) -"qSS" = ( -/obj/structure/closet/wardrobe/green, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"qTx" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/space) -"qTI" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) +"qTg" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology/xenoflora_storage) "qUE" = ( /obj/effect/floor_decal/corner/paleblue/bordercee{ dir = 1 @@ -22672,102 +13347,47 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"qUS" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"qVC" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/starboard) -"qWo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/toilet) "qWs" = ( /obj/structure/table/marble, /obj/machinery/microwave, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"qWQ" = ( -/obj/structure/table/reinforced, -/obj/item/suit_cooling_unit, -/obj/item/suit_cooling_unit, -/obj/item/cell/high{ - maxcharge = 15000 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, +"qWt" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/item/gps/security{ - pixel_y = 3 - }, -/obj/item/gps/security{ - pixel_x = -3 - }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/evastorage) +/area/main_map/hallway/deck1) "qXI" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"qYA" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 +"qYb" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/pen/blade/red{ - pixel_x = -2; - pixel_y = -2 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/port) +"qYi" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 }, -/obj/item/pen/blue{ - pixel_x = 2; - pixel_y = 3 +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"qZJ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/turf/simulated/shuttle/wall/voidcraft, +/area/main_map/Hangar_bay/deck1/a) +"qZW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/structure/bookcase, -/obj/item/book/manual/standard_operating_procedure, -/obj/item/book/manual/standard_operating_procedure, -/obj/item/book/manual/security_space_law, -/obj/item/book/manual/security_space_law, -/obj/item/book/manual/command_guide, -/obj/item/book/manual/command_guide, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/machinery/camera/network/security, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) +/turf/simulated/floor/tiled/techmaint, +/area/space) "raE" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -22796,34 +13416,9 @@ /obj/structure/closet/firecloset/full, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"rcm" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"rcu" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) -"rdw" = ( -/obj/structure/table/woodentable, -/obj/item/instrument/glockenspiel, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) +"rdI" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_one/starboard) "rdN" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -22862,77 +13457,23 @@ }, /turf/simulated/floor/tiled/white, /area/space) -"reO" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"rfj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) "rgs" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/research/researchdivision) -"rgE" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 20 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"rgT" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) "rha" = ( /obj/machinery/smartfridge/drinks, /turf/simulated/wall, /area/crew_quarters/bar_backroom) -"rhg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +"rhm" = ( +/obj/machinery/camera/network/medbay{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/tether/surfacebase/security/lobby) -"rhT" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_9) -"rin" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/tiled, +/area/medical/medbay) +"riq" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck1/a) "rit" = ( /obj/structure/cable/heavyduty{ icon_state = "1-8" @@ -22950,12 +13491,25 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_1) +"riK" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/port) "riQ" = ( /obj/effect/floor_decal/corner/red{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/security_lockerroom) +"riS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) "rjo" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -22964,30 +13518,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"rjT" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) "rkk" = ( /turf/simulated/floor/tiled/white, /area/space) -"rkr" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"rkv" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "rkK" = ( /obj/structure/closet/hydrant{ pixel_y = 32 @@ -23002,44 +13535,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/monotile, /area/security/security_lockerroom) -"rkQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm6"; - name = "Dorm 6" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"rle" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "iaal" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"rlH" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/item/gunbox, -/obj/item/gunbox, -/obj/item/gunbox, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) "rlV" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ id_tag = "solar_dock"; @@ -23053,116 +13548,81 @@ /obj/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, /area/maintenance/solars) -"rmw" = ( -/obj/machinery/flasher/portable, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"rmy" = ( -/obj/structure/bed/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) "rnD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/reinforced, /area/security/riot_control) -"rnG" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"rnU" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/techmaint, -/area/space) "rnV" = ( /turf/simulated/floor/tiled, /area/security/security_lockerroom) -"rnX" = ( +"rpI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/starboard) +"rpT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"rqc" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/holoplant, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/high/north_bump, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"rqo" = ( +/obj/effect/floor_decal/corner/mauve{ dir = 10 }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_10) -"rnY" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) +/obj/structure/table/standard, +/obj/item/retail_scanner/science, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "rqp" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"rqZ" = ( -/obj/item/radio/intercom{ - pixel_y = -24 +"rqS" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 }, -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/airlock/glass{ + name = "Medbay Lobby" + }, +/obj/machinery/door/firedoor/glass{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"rrt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/window/brigdoor/northleft{ - req_access = null; - req_one_access = list(8) - }, -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"rrG" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/space) -"rrM" = ( -/obj/machinery/door/airlock/glass/medical{ - id_tag = "MedbayFoyer"; - name = "Treatment Center" - }, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/medical/reception) -"rsK" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/escape) "rtx" = ( /obj/machinery/computer/robotics, /obj/effect/floor_decal/corner/purple{ @@ -23173,53 +13633,37 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"rul" = ( +"ruc" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/red/bordercorner, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"ruS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_science, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/research/researchdivision) +"ruW" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck1/fore) "rvm" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, /area/rnd/research/researchdivision) -"rvz" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"rvD" = ( -/obj/structure/closet/wardrobe/red, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "1-8" - }, +"rvu" = ( +/obj/landmark/spawnpoint/job/xenobotanist, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"rwl" = ( -/turf/simulated/wall/r_wall, -/area/hallway/primary/fore) +/area/rnd/xenobiology/xenoflora) "rws" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -23252,12 +13696,14 @@ /obj/item/hand_labeler, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"rxa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 8 +"rww" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 }, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) +/obj/structure/table/steel_reinforced, +/obj/item/storage/firstaid/surgery, +/turf/simulated/floor/tiled, +/area/medical/surgery2) "rxc" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/floor_decal/industrial/outline/blue, @@ -23269,12 +13715,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"rxn" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) "rxD" = ( /obj/structure/railing{ dir = 1 @@ -23308,18 +13748,6 @@ }, /turf/simulated/floor/tiled/white, /area/space) -"ryW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) "rzB" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ @@ -23327,17 +13755,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"rzY" = ( -/obj/structure/table/rack/steel, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/red/border, -/obj/item/clothing/accessory/storage/pouches/green, -/obj/item/clothing/accessory/armor/legguards/ballistic, -/obj/item/clothing/accessory/armor/armguards/ballistic, -/obj/item/clothing/suit/armor/pcarrier/ballistic, -/obj/item/clothing/head/helmet/ballistic, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) "rAb" = ( /obj/machinery/dnaforensics, /obj/effect/floor_decal/borderfloorwhite{ @@ -23348,49 +13765,12 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"rAj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"rAo" = ( -/obj/structure/window/basic, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/bed/chair/sofa/black/left{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "rAs" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/solars) -"rAz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"rAZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) "rBT" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -23420,31 +13800,16 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"rCz" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"rCK" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"rDe" = ( -/obj/structure/table/marble, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "rDl" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"rDt" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +"rEi" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" }, -/turf/simulated/floor/wood, -/area/hallway/primary/fore) +/turf/simulated/floor/reinforced/airless, +/area/space) "rEB" = ( /obj/structure/table/rack/steel, /obj/structure/window/reinforced{ @@ -23472,6 +13837,16 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark, /area/security/riot_control) +"rEI" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/mob/living/simple_mob/humanoid/clown, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_9) "rFO" = ( /obj/machinery/holopad, /obj/structure/noticeboard{ @@ -23479,100 +13854,53 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/bar) -"rGu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +"rGc" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"rGL" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) +/area/main_map/maintenance/deck_one/port) "rHa" = ( /obj/effect/floor_decal/corner/green/full{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/xenoflora) -"rHf" = ( -/obj/structure/cable{ - icon_state = "32-8" +"rHh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/structure/lattice, -/turf/simulated/open, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/starboard) "rHt" = ( /obj/landmark/spawnpoint/job/chef, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"rHC" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = -4; - pixel_y = -6 +"rIz" = ( +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_one/port) +"rJq" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 4 }, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/security/security_equiptment_storage) -"rHM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"rHQ" = ( -/obj/machinery/atmospherics/component/unary/engine/bigger{ - dir = 8 - }, -/turf/simulated/shuttle/plating/carry, -/area/space) -"rIb" = ( -/obj/effect/floor_decal/industrial/warning/cee{ +/mob/living/simple_mob/humanoid/clown, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"rJs" = ( +/obj/structure/grille, +/obj/structure/girder/reinforced, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/main_map/Hangar_bay/deck1/a) +"rJC" = ( +/obj/structure/stairs/spawner/west, +/obj/structure/railing{ dir = 1 }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/deliveryChute, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"rJz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/tiled/red, -/area/tether/surfacebase/security/hallway) +/turf/simulated/floor/plating, +/area/medical/medbay) "rKf" = ( /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor, @@ -23596,15 +13924,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"rKw" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"rLl" = ( -/obj/machinery/computer/shuttle_control/tether_backup{ - req_one_access = list() - }, -/turf/simulated/shuttle/floor/black, -/area/space) "rLu" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 @@ -23626,131 +13945,40 @@ }, /turf/simulated/floor/reinforced, /area/security/armoury) -"rMr" = ( -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"rMA" = ( -/obj/structure/window/reinforced{ - dir = 8 +"rMT" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 }, -/obj/structure/bed/chair/shuttle, -/obj/effect/floor_decal/borderfloor{ - dir = 9 +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/air_alarm{ + desc = " "; + pixel_y = 24 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 +/obj/machinery/camera/network/security, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 +/obj/effect/floor_decal/corner/pink/bordercorner2{ + dir = 4 }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"rMR" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 6; - frequency = 1380; - id_tag = "expshuttle_exterior_sensor"; - master_tag = "expshuttle_docker"; - pixel_x = 4; - pixel_y = 28 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"rMS" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/tether/surfacebase/security/lobby) -"rNp" = ( -/obj/structure/bed/chair/bay/chair/padded/red/bignest, -/obj/random/plushielarge, -/turf/simulated/floor/carpet/arcadecarpet, -/area/maintenance/deck_one/port) -"rNw" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +/turf/simulated/floor/tiled/white, +/area/security/forensics) "rNE" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"rNF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, +"rOn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"rNJ" = ( -/obj/structure/table/standard, -/obj/item/deck/cards, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) -"rNM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"rNO" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"rNT" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/area/rnd/xenobiology/xenoflora_storage) "rOA" = ( /obj/structure/bed/chair{ dir = 4 @@ -23767,36 +13995,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/bridge/hallway) -"rQB" = ( -/obj/machinery/photocopier, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) "rQY" = ( /turf/simulated/open, /area/rnd/research/researchdivision) -"rRq" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_11) -"rRx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/reinforced, -/area/security/riot_control) -"rRJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"rRy" = ( +/obj/structure/railing{ dir = 4 }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_11) +/turf/simulated/open, +/area/main_map/maintenance/deck_one/port) "rRW" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -23811,16 +14018,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/wood, /area/bridge/hallway) -"rSb" = ( -/turf/simulated/wall, -/area/crew_quarters/heads/hos) -"rSi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/space) "rSC" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -23829,6 +14026,14 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) +"rSP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "rTZ" = ( /obj/structure/railing, /obj/structure/railing{ @@ -23840,49 +14045,6 @@ /obj/structure/window/basic, /turf/simulated/open, /area/crew_quarters/bar) -"rUb" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/closet/walllocker{ - dir = 4; - pixel_x = 28 - }, -/obj/item/camera, -/obj/item/camera_film, -/obj/item/tape_recorder, -/obj/item/cassette_tape/random, -/obj/item/cassette_tape/random, -/obj/item/storage/secure/briefcase, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"rUh" = ( -/obj/machinery/button/windowtint{ - id = "det_office"; - pixel_x = -24; - pixel_y = 24 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"rUw" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"rUF" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"rUG" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) "rUU" = ( /obj/structure/bed/chair{ dir = 4 @@ -23895,16 +14057,25 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) +"rVb" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/sleep/Dorm_1) "rVt" = ( /obj/machinery/door/airlock/lift, /turf/simulated/floor/holofloor/tiled/dark, /area/medical/medbay) -"rVw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +"rVu" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/glass/reinforced, +/area/main_map/maintenance/deck_one) +"rVE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/space) "rWd" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -23924,33 +14095,10 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"rXf" = ( +"rXs" = ( +/obj/structure/table/steel, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"rXh" = ( -/turf/simulated/wall, -/area/rnd/robotics) -"rXr" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/sign/directions/roomnum{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"rYi" = ( -/obj/machinery/door/airlock{ - name = "Internal Affairs"; - req_access = list(38) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) +/area/tether/surfacebase/security/briefingroom) "rZZ" = ( /obj/machinery/atmospherics/valve/open{ dir = 4; @@ -23958,83 +14106,48 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"sae" = ( -/obj/item/radio/intercom{ - pixel_y = -24 +"sac" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1) +"saW" = ( +/obj/structure/sign/deck1{ + pixel_y = 32 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"sag" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/forward/starboard) +"scw" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4-8" }, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/escape) -"sav" = ( -/obj/structure/table/steel, -/obj/item/folder/red, -/obj/item/storage/box/donut, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"sax" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera/network/security, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"saG" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, +/turf/simulated/floor/reinforced/airless, /area/space) -"sbX" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/energy/ionrifle, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/machinery/camera/network/security, -/obj/effect/floor_decal/borderfloorblack{ +"scJ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/defib_kit/loaded{ + pixel_y = 3 + }, +/obj/item/tool/screwdriver, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/paleblue{ dir = 5 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"scu" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ +/obj/effect/floor_decal/spline/plain{ dir = 1 }, -/obj/map_helper/airlock/atmos/pump_out_external, -/obj/structure/handrail{ +/turf/simulated/floor/tiled/white, +/area/medical/medbay) +"scS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/airlock_sensor/airlock_exterior{ - dir = 4; - pixel_x = -24 - }, -/obj/map_helper/airlock/sensor/ext_sensor, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/simulated/floor/tiled/techmaint, /area/space) -"scL" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/wall, -/area/hallway/primary/fore) "sde" = ( /obj/machinery/cryopod/robot/door/shuttle, /turf/simulated/floor/tiled/techmaint, @@ -24062,45 +14175,6 @@ /obj/item/storage/box/beakers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"sdX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"seG" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"seH" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/gun/energy/phasegun/rifle, -/obj/item/gun/energy/phasegun/rifle, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"seK" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_one) -"sfm" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) "sft" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -24108,106 +14182,6 @@ /obj/landmark/spawnpoint/job/detective, /turf/simulated/floor/carpet, /area/security/detectives_office) -"sfK" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/computer/arcade/battle, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"sfV" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock{ - id_tag = "dorm3"; - name = "Dorm 3" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"sgb" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"sgn" = ( -/obj/structure/ladder, -/obj/structure/bookcase, -/turf/simulated/floor/plating, -/area/space) -"shn" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass/security{ - id_tag = "BrigFoyer"; - layer = 2.8; - name = "Security"; - req_one_access = list(38,63) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"shs" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"shw" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/space) -"shB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "armorylight"; - name = "Light Armory Access"; - pixel_x = 25; - pixel_y = 25; - req_access = list(3) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"sim" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/bar_backroom) "siz" = ( /obj/machinery/deployable/barrier, /obj/effect/floor_decal/corner/blue/full{ @@ -24219,10 +14193,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"siD" = ( -/obj/machinery/door/airlock/glass_external, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/forward/starboard) "siG" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 1 @@ -24235,33 +14205,37 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"skA" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "shuttle_hatch"; - name = "Shuttle Rear Hatch" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"sle" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"snx" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"snO" = ( -/obj/structure/shuttle/engine/heater{ +"skg" = ( +/obj/machinery/computer/ship/sensors{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) +/obj/machinery/oxygen_pump{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) +"sll" = ( +/obj/structure/disposalpipe/sortjunction/untagged/flipped, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/port) +"sly" = ( +/obj/machinery/door/airlock/glass/research{ + name = "Xenoflora Research"; + req_one_access = list(30,47,77) + }, +/obj/machinery/door/firedoor/glass, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"slE" = ( +/obj/machinery/door/airlock/glass{ + desc = "A room dedicated for the repairs and recharging of adherent."; + name = "Adherent Maintenance" + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/crystal, +/area/main_map/hallway/deck1) "snQ" = ( /obj/machinery/computer/card{ dir = 1 @@ -24274,15 +14248,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"snS" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) "snZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -24302,56 +14267,17 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"soW" = ( -/obj/structure/cryofeed{ - dir = 2 +"spg" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "spk" = ( /obj/structure/filingcabinet, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officea) -"spy" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/hallway/primary/fore) -"spG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) -"spK" = ( -/obj/structure/table/reinforced, -/obj/item/stamp/internalaffairs, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"spM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) -"spT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) "spY" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -24363,9 +14289,19 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"sqo" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/hop) +"sqC" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/air_alarm{ + pixel_y = 30 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) "sqY" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -24385,14 +14321,6 @@ }, /turf/simulated/floor/crystal, /area/space) -"srh" = ( -/obj/machinery/air_alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/table/marble, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "srv" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -24411,110 +14339,35 @@ }, /turf/simulated/open, /area/rnd/research/researchdivision) -"srX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_office) -"sst" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 33 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) "ssY" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, /turf/simulated/floor/carpet/sblucarpet, /area/crew_quarters/sleep/Dorm_4) -"stJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"stL" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"stP" = ( -/obj/structure/table/rack/steel, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/red/border, -/obj/item/clothing/accessory/storage/pouches, -/obj/item/clothing/accessory/armor/legguards/riot, -/obj/item/clothing/accessory/armor/armguards/riot, -/obj/item/clothing/suit/armor/pcarrier/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/shield/riot, -/obj/item/clothing/accessory/storage/pouches, -/obj/item/clothing/accessory/armor/legguards/riot, -/obj/item/clothing/accessory/armor/armguards/riot, -/obj/item/clothing/suit/armor/pcarrier/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/shield/riot, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"stU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_7) -"stY" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"sux" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area_hallway) -"svg" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/starboard) -"svY" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) "swc" = ( /obj/structure/flora/pottedplant/minitree, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"swj" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +"swk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/obj/machinery/oxygen_pump{ + dir = 8; + pixel_x = -30 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/Hangar_bay/deck1/a) "swn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -24522,76 +14375,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_2) -"swo" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"swr" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id = "armoryriot"; - name = "Emergency Armory Access" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) "swy" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, /obj/machinery/botany/extractor, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"swE" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) -"sxb" = ( -/turf/simulated/wall/r_wall, -/area/rnd/robotics) -"sxj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) -"sxI" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_x = -32 - }, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) "syo" = ( /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ dir = 4 @@ -24616,11 +14405,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/open, /area/maintenance/security/upper) -"szx" = ( -/obj/structure/table/bench/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"syC" = ( +/obj/structure/stairs/spawner/east, /turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) +/area/main_map/hallway/deck1/fore) "szT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -24640,148 +14428,63 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"sAi" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"sAm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"sAp" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"sAr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 - }, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) -"sAx" = ( -/obj/structure/table/standard, -/obj/item/defib_kit/loaded, -/obj/item/storage/firstaid/clotting{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/firstaid/adv, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"sAD" = ( -/obj/structure/shuttle/engine/heater, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/effect/shuttle_landmark{ - base_area = /area/centcom/terminal; - base_turf = /turf/unsimulated/floor/techfloor_grid; - landmark_tag = "escape_cc"; - name = "Escape Shuttle Centcom" - }, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) -"sAI" = ( -/obj/effect/floor_decal/techfloor, -/obj/machinery/door/firedoor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/space) -"sBb" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) +"sAV" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one) "sBy" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/carpet/oracarpet, /area/crew_quarters/heads/chief) -"sBC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) "sBQ" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/solars) -"sCq" = ( -/obj/machinery/computer/cryopod/robot{ - pixel_x = -31; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"sCr" = ( -/obj/machinery/vending/security, -/obj/machinery/camera/network/security{ +"sCK" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/forward/port) +"sDo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"sDH" = ( -/turf/simulated/floor/plating, -/area/maintenance/security/lower) -"sEi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) -"sEz" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) +"sEf" = ( +/obj/structure/table/rack/steel, +/obj/structure/window/reinforced, +/obj/item/clothing/shoes/leg_guard/bulletproof, +/obj/item/clothing/gloves/arm_guard/bulletproof, +/obj/item/clothing/suit/armor/bulletproof/alt, +/obj/item/clothing/head/helmet/ballistic, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/rack/steel, +/obj/structure/window/reinforced, +/obj/item/clothing/shoes/leg_guard/bulletproof, +/obj/item/clothing/gloves/arm_guard/bulletproof, +/obj/item/clothing/suit/armor/bulletproof/alt, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/window/reinforced{ + dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) +/area/security/riot_control) "sFq" = ( /obj/machinery/recharger/wallcharger{ pixel_x = -22 @@ -24809,61 +14512,24 @@ }, /turf/simulated/floor/carpet/sblucarpet, /area/crew_quarters/captain) -"sGA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"sGy" = ( +/turf/simulated/open, +/area/tether/surfacebase/security/hallway) +"sGJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"sGI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/fore) -"sGQ" = ( -/obj/structure/cryofeed, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"sHf" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/open, -/area/medical/medbay) -"sHh" = ( -/turf/simulated/wall, -/area/rnd/robotics/mechbay) -"sIC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"sIO" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/door/firedoor{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/starboard) +"sGW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/space) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/warden) "sJc" = ( /obj/machinery/computer/secure_data{ dir = 1 @@ -24887,20 +14553,9 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"sJj" = ( -/obj/structure/ladder, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"sJr" = ( -/obj/machinery/door/airlock/maintenance/medical{ - name = "Medical Maintenance Access"; - req_access = list(5) - }, -/turf/simulated/floor/plating, -/area/medical/medbay) +"sJp" = ( +/turf/simulated/floor/tiled/red, +/area/tether/surfacebase/security/hallway) "sJv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -24910,35 +14565,23 @@ }, /turf/simulated/floor/wood, /area/bridge/hallway) +"sJG" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) "sJS" = ( /obj/machinery/appliance/cooker/oven, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sLI" = ( +"sMN" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/catwalk, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) -"sMf" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/tether/surfacebase/security/lobby) -"sMq" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck1) "sMU" = ( /obj/structure/flora/pottedplant/largebush, /turf/simulated/floor/wood, @@ -24955,19 +14598,23 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/security/security_lockerroom) -"sNB" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"sOx" = ( -/obj/structure/cable/green{ - icon_state = "0-2" +"sNi" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +/turf/simulated/open, +/area/main_map/maintenance/deck_one/port) +"sOK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) "sOP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -24983,29 +14630,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_7) -"sPG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/spline/plain{ - dir = 1; - pixel_y = -15 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) "sPX" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -25013,6 +14637,10 @@ /obj/machinery/power/apc/direction_bump/north, /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/heads/hor) +"sQu" = ( +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/red, +/area/tether/surfacebase/security/hallway) "sQG" = ( /obj/machinery/computer/secure_data{ dir = 4 @@ -25023,37 +14651,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"sQW" = ( -/obj/structure/catwalk, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) -"sRf" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/machinery/cryopod/robot, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"sRi" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"sRz" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) "sRV" = ( /obj/machinery/door/airlock/glass/security{ id_tag = "detdoor"; @@ -25068,77 +14665,12 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/security/forensics) -"sRX" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) -"sSp" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = -4 - }, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - dir = 2; - pixel_y = 3 - }, -/turf/simulated/wall/r_wall, -/area/security/security_lockerroom) "sSs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/space) -"sSJ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"sSX" = ( -/obj/structure/window/basic, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/chair/sofa/black/left{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"sTp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/door/window/westleft{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1; - pixel_y = -15 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) "sTr" = ( /obj/machinery/light/small{ dir = 4 @@ -25148,83 +14680,80 @@ "sUR" = ( /turf/simulated/floor/tiled/techmaint, /area/maintenance/security/port) -"sVI" = ( -/obj/structure/stairs/spawner/west, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, +"sVe" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/riot_control) +"sVE" = ( +/obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) +/area/main_map/maintenance/deck_one/starboard) "sVS" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_7) -"sWq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) -"sWx" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"sWG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"sWg" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/spline/plain, +/obj/machinery/power/apc/direction_bump/south, +/obj/structure/cable/green{ + icon_state = "0-4" }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/space) +/turf/simulated/floor/tiled/white, +/area/medical/medbay) "sWI" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/maintenance/solars) -"sXB" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/space) +"sYb" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/port) "sYi" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, /area/space) -"sYx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"sYj" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Observation"; + req_access = list(2) }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/hallway) +"sYI" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/main_map/hallway/deck1/fore) +"sZa" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/ablative, +/obj/effect/floor_decal/corner/red{ + dir = 10 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 +/obj/structure/table/rack/steel, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/effect/floor_decal/corner/red{ + dir = 10 }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/upperhall) +/turf/simulated/floor/tiled/dark, +/area/security/riot_control) "sZd" = ( /obj/structure/bed/chair/comfy/brown, /turf/simulated/floor/wood, @@ -25236,25 +14765,6 @@ }, /turf/simulated/floor/reinforced, /area/security/tactical) -"sZu" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) -"sZz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/space) -"sZG" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/adv{ - pixel_y = 10 - }, -/obj/item/robotanalyzer, -/turf/simulated/floor/tiled/neutral, -/area/space) "sZJ" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/white, @@ -25265,16 +14775,6 @@ }, /turf/simulated/floor/carpet/tealcarpet, /area/crew_quarters/sleep/Dorm_3) -"taa" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Engine Compartment"; - req_one_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "tag" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -25286,33 +14786,36 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/sblucarpet, /area/crew_quarters/sleep/Dorm_4) -"tbG" = ( -/obj/structure/bed/chair/shuttle, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +"tai" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_one/aft/port) +"tay" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/nanopaste{ + amount = 30 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay) +"taY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) +"tcq" = ( +/obj/structure/bed/chair/sofa/blue/corner, +/turf/simulated/floor/carpet/arcadecarpet, +/area/main_map/maintenance/deck_one/port) "tcC" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/reinforced/airless, /area/space) -"tdi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/tiled/dark, -/area/space) -"tdk" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) "tdp" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Solar Farm - SMES 1" @@ -25331,9 +14834,13 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"tdF" = ( -/turf/simulated/wall, -/area/maintenance/deck_one/aft/port) +"tdT" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "tdU" = ( /obj/machinery/body_scanconsole{ dir = 4 @@ -25362,60 +14869,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"tel" = ( -/obj/machinery/shower{ - dir = 8 +"tfu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"tes" = ( -/turf/simulated/wall, -/area/rnd/xenobiology/xenoflora_storage) -"teU" = ( -/obj/structure/stairs/spawner/east, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) -"tfj" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"tfZ" = ( -/obj/structure/closet/crate/mimic/closet/cointoss, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"tgk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access = list(25); - req_one_access = list(25) - }, -/turf/simulated/floor/wood, -/area/space) -"tgv" = ( -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "tgB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -25438,6 +14897,22 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) +"tgS" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/map_helper/airlock/atmos/pump_out_external, +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + pixel_x = -24 + }, +/obj/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/Hangar_bay/deck1/a) "thD" = ( /obj/structure/table/woodentable, /obj/item/book/manual/standard_operating_procedure, @@ -25449,27 +14924,17 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"thK" = ( -/obj/structure/table/marble, -/turf/simulated/floor/tiled, -/area/space) -"thU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"thS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/security/port) "tim" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/iaa/officea) -"tjk" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/space) "tjp" = ( /obj/effect/floor_decal/corner/white/border, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -25505,31 +14970,10 @@ /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"tjK" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/space) "tkx" = ( /obj/machinery/computer/timeclock/premade/east, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) -"tlj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/security/tactical) "tlH" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -25543,9 +14987,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_7) -"tlY" = ( -/turf/simulated/floor/lino, -/area/maintenance/deck_one/aft/port) "tmc" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -25581,20 +15022,6 @@ /obj/structure/window/basic, /turf/simulated/open, /area/crew_quarters/bar) -"tmY" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/glasses/hud/security, -/obj/item/clothing/glasses/hud/security, -/obj/item/clothing/glasses/hud/security, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) "tnf" = ( /obj/structure/filingcabinet, /obj/machinery/light/no_nightshift{ @@ -25602,25 +15029,22 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officeb) -"toj" = ( -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/tiled/dark, -/area/space) -"tov" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +"tnz" = ( +/obj/machinery/door/airlock/glass/security, +/turf/simulated/floor/tiled/red, +/area/tether/surfacebase/security/hallway) +"tnL" = ( +/obj/structure/sign/directions/medical, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = -10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/structure/sign/directions/cryo{ + dir = 8; + pixel_y = 10 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/space) +/turf/simulated/wall, +/area/main_map/hallway/deck1/fore) "toG" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/wood, @@ -25632,21 +15056,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_8) -"toM" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"toR" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/effect/floor_decal/techfloor/hole/right, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) "tqf" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 @@ -25656,12 +15065,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"tqw" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) "tqx" = ( /obj/structure/sign/department/armory{ pixel_y = 32 @@ -25671,45 +15074,6 @@ }, /turf/simulated/floor/tiled/red, /area/space) -"tqB" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"tqK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/bed/chair/sofa/black/left, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"trL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "tti" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -25722,19 +15086,18 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"tty" = ( -/obj/structure/cryofeed{ - dir = 2 +"ttB" = ( +/obj/effect/floor_decal/corner/paleblue, +/obj/machinery/bodyscanner{ + dir = 4 }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"ttK" = ( -/obj/machinery/door/airlock, /turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) +/area/medical/medbay) +"ttC" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "ttV" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -25750,18 +15113,6 @@ }, /turf/simulated/floor/tiled, /area/security/security_lockerroom) -"tuq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) "tuS" = ( /obj/structure/railing{ dir = 4 @@ -25771,6 +15122,10 @@ }, /turf/simulated/open, /area/crew_quarters/kitchen) +"tvI" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/prepainted/medical, +/area/medical/medbay) "twi" = ( /obj/item/suit_cooling_unit{ pixel_y = -5 @@ -25814,73 +15169,28 @@ }, /turf/simulated/floor/plating, /area/medical/medbay_emt_bay) -"txc" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, +"txe" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 + dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 + dir = 4 }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"tya" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"tyq" = ( -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"tyt" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"tyQ" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 8 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"tzv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"tzU" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/door/blast/regular/open{ - id = "emergency_shuttle_lockdown"; - name = "Emergency Shuttle Blast Door" - }, -/obj/structure/window/reinforced/polarized/full{ - id = "emergency_security" - }, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/escape) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/starboard) "tzW" = ( /turf/simulated/floor/tiled/white, /area/medical/surgery) +"tzX" = ( +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/port) +"tAj" = ( +/obj/structure/sign/deck1{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/aft/port) "tAU" = ( /obj/structure/table/marble, /obj/item/reagent_containers/dropper, @@ -25921,26 +15231,6 @@ }, /turf/simulated/floor/plating, /area/medical/medbay_emt_bay) -"tCo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"tCB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_one) "tCK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, @@ -25953,21 +15243,6 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark, /area/security/tactical) -"tDA" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"tDB" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) "tDT" = ( /obj/effect/floor_decal/corner/blue{ dir = 6 @@ -26015,58 +15290,6 @@ }, /turf/simulated/floor/carpet/purcarpet, /area/tether/surfacebase/security/iaa/officeb) -"tFK" = ( -/obj/structure/closet/crate{ - name = "Carrier Tags" - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/item/clothing/accessory/armor/tag/opos, -/obj/item/clothing/accessory/armor/tag/opos, -/obj/item/clothing/accessory/armor/tag/oneg, -/obj/item/clothing/accessory/armor/tag/oneg, -/obj/item/clothing/accessory/armor/tag/bpos, -/obj/item/clothing/accessory/armor/tag/bpos, -/obj/item/clothing/accessory/armor/tag/bneg, -/obj/item/clothing/accessory/armor/tag/bneg, -/obj/item/clothing/accessory/armor/tag/apos, -/obj/item/clothing/accessory/armor/tag/apos, -/obj/item/clothing/accessory/armor/tag/aneg, -/obj/item/clothing/accessory/armor/tag/aneg, -/obj/item/clothing/accessory/armor/tag/abpos, -/obj/item/clothing/accessory/armor/tag/abpos, -/obj/item/clothing/accessory/armor/tag/abneg, -/obj/item/clothing/accessory/armor/tag/abneg, -/obj/item/clothing/accessory/armor/tag/nts, -/obj/item/clothing/accessory/armor/tag/nts, -/obj/item/clothing/accessory/armor/tag/nts, -/obj/item/clothing/accessory/armor/tag/nts, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"tFR" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"tGh" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/basic, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) "tGW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -26079,108 +15302,46 @@ "tHh" = ( /turf/simulated/floor/wood, /area/crew_quarters/bar) -"tID" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +"tHR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"tIK" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/accessory/armor/helmcover/nt, -/obj/item/clothing/accessory/armor/helmcover/nt, -/obj/item/clothing/accessory/armor/helmcover/nt, -/obj/item/clothing/accessory/armor/helmcover/nt, -/obj/item/clothing/accessory/armor/helmcover/nt, -/obj/item/clothing/accessory/armor/helmcover/nt, -/obj/item/clothing/accessory/armor/helmcover/nt, -/obj/item/clothing/accessory/armor/helmcover/nt, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "tJt" = ( /turf/simulated/wall/r_wall, /area/security/warden) +"tJO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1) "tJW" = ( /turf/simulated/floor/tiled/dark, /area/security/armoury) -"tKf" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 +"tKE" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/space) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "tLm" = ( /obj/machinery/camera/motion/security{ dir = 8 }, /turf/space, /area/space) -"tLq" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 +"tMD" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/space) -"tLE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor, -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/space) -"tLL" = ( -/obj/machinery/media/jukebox{ - icon_state = "superjuke-nopower"; - state_base = "superjuke" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"tLS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) -"tMj" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/corner/brown/bordercorner, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"tMF" = ( -/obj/structure/table/woodentable, -/obj/machinery/reagentgrinder, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/packageWrap, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/machinery/light_switch{ - pixel_x = -9; - pixel_y = 30 - }, -/turf/simulated/floor/wood, -/area/space) +/area/main_map/hallway/deck1/fore) "tNx" = ( /obj/machinery/camera/network/research{ dir = 4 @@ -26194,28 +15355,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/security/lobby) -"tNK" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_5) +"tOi" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "tOq" = ( /obj/structure/railing/grey{ dir = 8 }, /turf/simulated/floor/crystal, /area/space) -"tOP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) "tPj" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced, @@ -26240,9 +15391,12 @@ /obj/landmark/spawnpoint/job/medical_doctor, /turf/simulated/floor/tiled, /area/medical/reception) -"tQd" = ( -/turf/simulated/floor/glass/reinforced, -/area/hallway/primary/central_one) +"tPS" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "tQe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -26267,11 +15421,18 @@ /obj/item/book/manual/legal/sop_vol5_7, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officecommon) -"tQz" = ( -/obj/structure/medical_stand/anesthetic, -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +"tQs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research/researchdivision) "tQB" = ( /obj/structure/bed/chair{ dir = 4 @@ -26285,38 +15446,22 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) -"tQE" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/oxygen_pump{ - dir = 4; - pixel_x = 30 - }, -/obj/effect/floor_decal/spline/fancy, -/obj/structure/handrail{ - dir = 8 - }, -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "tQG" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/solars) -"tQT" = ( -/obj/effect/floor_decal/borderfloor{ +"tRc" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor/hole, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"tQX" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/hos) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "tRj" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/firstaid/regular, @@ -26329,40 +15474,33 @@ }, /turf/simulated/floor/tiled/red, /area/tether/surfacebase/security/lobby) -"tTp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +"tSb" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/space) +"tSd" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"tUc" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/deck_one) -"tUs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/structure/handrail, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor/airlock_interior{ + pixel_x = -24; + pixel_y = 24 }, /turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) +/area/main_map/Hangar_bay/deck1/a) +"tSh" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one) +"tSm" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/main_map/maintenance/deck_one/aft/port) "tUH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -26372,35 +15510,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"tUK" = ( -/obj/structure/table/steel, -/obj/item/folder/red, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"tUS" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"tUV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/space) -"tVg" = ( -/obj/structure/bed/double/padded, -/obj/random/bedsheet/double, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) "tVx" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -26417,21 +15526,6 @@ "tVC" = ( /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"tVO" = ( -/obj/structure/table/reinforced, -/obj/item/megaphone, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"tVV" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/space) "tVX" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -26451,65 +15545,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"tWi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"tWj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Cargo Compartment"; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"tWo" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/reinforced, -/area/space) -"tWp" = ( -/obj/effect/floor_decal/corner/paleblue/full, -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"tWF" = ( -/obj/structure/table/marble, -/obj/item/storage/pill_bottle/dice_nerd, -/obj/item/deck/cards, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/item/deck/unus{ - pixel_x = 7 - }, -/obj/item/deck/cah{ - pixel_x = -8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "tWN" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/firstaid/surgery, @@ -26540,39 +15575,24 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"tZF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/window/basic, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +"tZN" = ( +/obj/machinery/door/airlock/maintenance, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/aft/port) +"uaP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/bed/chair/sofa/black/right{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"tZX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 10 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"uaO" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/port) +"uaR" = ( +/obj/structure/sign/deck/first, +/turf/simulated/wall/prepainted/civilian, +/area/main_map/hallway/deck1) "ubb" = ( /turf/simulated/floor/tiled/techfloor, /area/space) @@ -26610,29 +15630,21 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"ubz" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shuttle_sensor{ - dir = 5; - id_tag = "shuttlesens_exp_int"; - pixel_y = -24 +"ucr" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/obj/structure/closet/walllocker/emergsuit_wall{ - dir = 8; - pixel_x = -32 +/obj/machinery/r_n_d/protolathe{ + dir = 1 }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/effect/floor_decal/corner/mauve{ + dir = 6 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"ubF" = ( -/turf/simulated/wall, -/area/holodeck_control) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"ucz" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/port) "ucH" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/blue/border, @@ -26648,13 +15660,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_4) -"udi" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "udq" = ( /obj/structure/table/rack/shelf/steel, /obj/item/gun/energy/taser, @@ -26668,30 +15673,21 @@ /obj/item/melee/baton/loaded, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"udy" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/space) "uei" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, /area/space) -"uet" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 +"ueD" = ( +/turf/simulated/wall/prepainted/engineering, +/area/main_map/maintenance/deck_one/aft/port) +"ueO" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/starboard) "ufm" = ( /obj/machinery/computer/prisoner{ dir = 1 @@ -26723,15 +15719,21 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"ugS" = ( -/turf/simulated/open, -/area/maintenance/deck_one/starboard) -"uhm" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"ugJ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/space) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) +"ugO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/starboard) "uhv" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 @@ -26759,87 +15761,30 @@ "uig" = ( /turf/simulated/floor/carpet/sblucarpet, /area/crew_quarters/captain) -"uiv" = ( -/obj/structure/railing{ - dir = 1 +"ukl" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 }, -/obj/structure/railing{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/structure/railing, -/obj/structure/railing{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "32-1" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/deck_one/starboard) -"uiF" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/box/gloves{ - pixel_y = 4 - }, -/obj/item/storage/box/syringes{ - pixel_y = -4 - }, -/obj/machinery/air_alarm{ - desc = " "; - pixel_y = 24 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"ujk" = ( -/obj/structure/reagent_dispensers/water_cooler/full{ +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) +"ukm" = ( +/obj/machinery/atmospherics/component/unary/engine/bigger{ dir = 8 }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"ujz" = ( -/obj/structure/ladder, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) -"ujQ" = ( -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) -"ujZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"ukf" = ( -/obj/structure/flora/pottedplant/orientaltree, -/obj/machinery/computer/security/telescreen{ - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/space) +/turf/simulated/shuttle/plating/carry, +/area/main_map/Hangar_bay/deck1/a) "ukn" = ( /obj/effect/floor_decal/techfloor{ dir = 10 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"ukr" = ( -/obj/machinery/door/airlock/engineering{ - name = "Hangar Substation" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/port) "ukF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/techfloor{ @@ -26851,6 +15796,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) +"umo" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "umz" = ( /obj/structure/railing{ dir = 1 @@ -26896,16 +15847,6 @@ /obj/item/surgical/bioregen, /turf/simulated/floor/tiled, /area/medical/surgery) -"umS" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) "una" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -26914,14 +15855,6 @@ /obj/machinery/camera/network/security, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"unh" = ( -/obj/machinery/papershredder, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/tiled, -/area/medical/reception) "unR" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 @@ -26937,17 +15870,15 @@ /obj/machinery/computer/skills, /turf/simulated/floor/carpet/oracarpet, /area/tether/surfacebase/security/iaa/officea) -"uoJ" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +"uot" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"uoM" = ( -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_one/aft/port) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "uoP" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techmaint, @@ -26957,54 +15888,15 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"upW" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/crew_quarters/sleep/Dorm_3) -"uqy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/table/rack/shelf/steel, -/obj/item/cell/device/weapon{ - pixel_x = -8 - }, -/obj/item/cell/device/weapon{ - pixel_x = -4 - }, -/obj/item/cell/device/weapon{ - pixel_x = -1 - }, -/obj/item/cell/device/weapon{ - pixel_x = 3 - }, -/obj/item/cell/device/weapon{ - pixel_x = 8 - }, -/obj/item/cell/device/weapon{ - pixel_x = 3 - }, -/obj/item/cell/device/weapon{ - pixel_x = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) "uqB" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"urc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/blue/border, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) +"uqS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) "urv" = ( /obj/structure/railing{ dir = 1 @@ -27028,16 +15920,6 @@ /obj/structure/lattice, /turf/simulated/open, /area/crew_quarters/bar) -"usk" = ( -/obj/structure/closet/lawcloset, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) "usl" = ( /obj/structure/railing{ dir = 4 @@ -27056,20 +15938,6 @@ }, /turf/simulated/floor/tiled/white, /area/space) -"usD" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "armorytactical"; - name = "Tactical Armory Access"; - pixel_x = 25; - pixel_y = -6; - req_access = list(3) - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/reinforced, -/area/security/riot_control) "usE" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -27091,12 +15959,16 @@ /obj/machinery/suit_storage_unit/medic, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"usY" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +"utf" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) "uti" = ( /obj/structure/table/marble, /obj/machinery/atmospherics/component/unary/vent_scrubber/on, @@ -27115,132 +15987,53 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"utM" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/forward/port) -"uus" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) -"uuA" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_x = 32 - }, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) -"uuC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) "uuG" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) -"uuL" = ( -/obj/structure/handrail{ +"uuZ" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/cell/high{ + maxcharge = 15000 + }, +/obj/effect/floor_decal/corner/mauve/full{ dir = 1 }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"uvk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) -"uwo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"uwA" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"uwH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"uwW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"uwZ" = ( -/obj/structure/table/marble, -/obj/structure/flora/pottedplant/small, -/turf/simulated/floor/carpet/bcarpet, -/area/space) +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"uxD" = ( +/obj/machinery/vending/blood, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay) "uxH" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"uyc" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"uyJ" = ( +/obj/structure/disposalpipe/sortjunction/untagged/flipped{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloorblack, -/turf/simulated/floor/tiled/dark, -/area/space) -"uyC" = ( -/obj/machinery/door/airlock/glass_external, -/obj/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"uzd" = ( -/turf/simulated/wall, -/area/crew_quarters/heads/cmo) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/port) +"uzc" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor/hole, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "uzi" = ( /obj/structure/bed/double, /obj/item/bedsheet/cedouble, @@ -27250,29 +16043,6 @@ /obj/structure/railing, /turf/simulated/open, /area/crew_quarters/bar_backroom) -"uzu" = ( -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/machinery/fitness/heavy/lifter, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"uzM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"uzN" = ( -/obj/machinery/computer/arcade/orion_trail, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "uzR" = ( /obj/machinery/door/airlock/maintenance/command, /obj/machinery/door/firedoor/glass, @@ -27290,6 +16060,9 @@ }, /turf/simulated/floor/plating, /area/medical/reception) +"uBh" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "uBF" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -27311,16 +16084,10 @@ /obj/item/retail_scanner/civilian, /turf/simulated/floor/wood, /area/crew_quarters/bar_backroom) -"uCa" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm1"; - name = "Room 1 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +"uCf" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "uCs" = ( /obj/effect/mist, /turf/simulated/floor/water/pool, @@ -27331,18 +16098,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/security/port) -"uDk" = ( -/obj/machinery/computer/security/telescreen{ - pixel_x = 32 +"uDl" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, /turf/simulated/floor/wood, -/area/space) +/area/main_map/hallway/deck1/fore) "uDy" = ( /obj/machinery/computer/ship/navigation{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"uDX" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/sleep/Dorm_9) "uEb" = ( /obj/structure/catwalk, /turf/space, @@ -27362,14 +16132,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_3) -"uEL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 +"uEQ" = ( +/obj/structure/bed/chair/comfy/red{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/mob/living/simple_mob/humanoid/clown, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) "uFv" = ( /obj/structure/table/rack/shelf/steel, /obj/item/gun/energy/laser, @@ -27385,9 +16157,9 @@ /obj/item/retail_scanner/medical, /turf/simulated/floor/tiled, /area/medical/reception) -"uFM" = ( -/turf/simulated/wall, -/area/medical/surgery2) +"uGa" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/space) "uGe" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27413,18 +16185,26 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) +"uGj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "uGn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/security/lobby) -"uHq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +"uHi" = ( +/obj/machinery/holopad, +/turf/simulated/floor/lino, +/area/main_map/maintenance/deck_one/aft/port) "uHB" = ( /obj/structure/railing{ dir = 4 @@ -27434,6 +16214,15 @@ }, /turf/simulated/open, /area/crew_quarters/bar) +"uIi" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/structure/closet/crate/nanotrasen, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"uIm" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/forward/port) "uIq" = ( /obj/structure/closet/wardrobe/red, /obj/effect/floor_decal/industrial/outline/yellow, @@ -27442,14 +16231,6 @@ }, /turf/simulated/floor/tiled, /area/security/security_lockerroom) -"uIL" = ( -/obj/structure/table/bench/steel, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/landmark/spawnpoint/job/security_officer, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) "uIN" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorwhite{ @@ -27504,146 +16285,32 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"uJz" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"uKo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"uKM" = ( +/obj/structure/ladder, +/obj/structure/bookcase, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one) +"uKN" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"uKG" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, +/obj/structure/cable/green, +/obj/machinery/power/apc/direction_bump/east, +/turf/simulated/floor/carpet, +/area/security/warden) +"uMn" = ( +/turf/simulated/wall/r_wall/prepainted/security, /area/space) -"uLo" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"uLp" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = -32 - }, -/obj/structure/bed/chair/comfy/brown, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"uLu" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"uLE" = ( -/obj/structure/table/rack/steel, -/obj/structure/window/reinforced, -/obj/item/clothing/shoes/leg_guard/bulletproof, -/obj/item/clothing/gloves/arm_guard/bulletproof, -/obj/item/clothing/suit/armor/bulletproof/alt, -/obj/item/clothing/head/helmet/ballistic, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"uLX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) -"uMt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 - }, -/obj/machinery/door/airlock/security{ - name = "Armory Storage"; - secured_wires = 1 - }, -/obj/machinery/door/blast/regular{ - id = "armoryaccess"; - name = "Armory" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"uNq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) "uNR" = ( /obj/machinery/computer/operating{ dir = 4 }, /turf/simulated/floor/tiled/monotile, /area/medical/surgery2) -"uNZ" = ( -/obj/structure/stairs/spawner/east, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/space) -"uOx" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/toilet) -"uON" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/deck_one/aft/port) -"uPy" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) +"uPi" = ( +/obj/structure/bed/chair/sofa/blue/right, +/turf/simulated/floor/carpet/arcadecarpet, +/area/main_map/maintenance/deck_one/port) "uQj" = ( /obj/structure/table/steel_reinforced, /obj/machinery/firealarm{ @@ -27653,12 +16320,6 @@ /obj/item/defib_kit/loaded, /turf/simulated/floor/tiled, /area/medical/surgery) -"uQo" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) "uQD" = ( /obj/machinery/door/airlock/glass_external, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -27670,30 +16331,6 @@ /obj/map_helper/airlock/door/int_door, /turf/simulated/floor/plating, /area/medical/medbay_emt_bay) -"uQN" = ( -/obj/structure/table/steel, -/obj/item/storage/box/stunshells{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/flashshells{ - pixel_x = 1 - }, -/obj/item/storage/box/beanbags{ - pixel_x = 4; - pixel_y = -5 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 5 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) "uQP" = ( /obj/spawner/window/reinforced/full/firelocks, /obj/machinery/door/blast/shutters{ @@ -27706,13 +16343,18 @@ }, /turf/simulated/floor/plating, /area/medical/reception) -"uRf" = ( -/obj/structure/bed/chair{ - dir = 1 +"uRi" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 8 }, -/obj/landmark/spawnpoint/job/security_officer, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) +/turf/simulated/wall, +/area/main_map/hallway/deck1) +"uRl" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/port) "uRw" = ( /obj/structure/table/woodentable, /obj/machinery/computer/ship/navigation/telescreen{ @@ -27731,74 +16373,19 @@ /obj/item/book/manual/legal/cr_vol5, /turf/simulated/floor/lino, /area/security/detectives_office) -"uSe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/blast/regular{ - id = "armoryaccess_red"; - name = "Armory" +"uSC" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"uSr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"uSK" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"uSN" = ( -/obj/structure/table/steel, -/obj/item/storage/box/shotgunshells{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/storage/box/shotgunshells{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/storage/box/shotgunshells{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/ammo_magazine/m45/flash{ - pixel_y = 9 - }, -/obj/item/ammo_magazine/m45/flash{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/ammo_magazine/m45/flash{ - pixel_y = -3 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"uTN" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"uUj" = ( -/turf/simulated/open, -/area/maintenance/deck_one/port) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) +"uSR" = ( +/obj/structure/sign/warning/caution, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology/xenoflora_storage) +"uTg" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/crew_quarters/heads/hor) "uUu" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -27807,97 +16394,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) -"uUG" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) -"uUL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/shuttle/escape) -"uUR" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) "uVw" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/carpet/turcarpet, /area/crew_quarters/sleep/Dorm_2) -"uVz" = ( -/obj/machinery/holopad, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/bar) -"uVC" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"uVJ" = ( -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape) "uVV" = ( /obj/structure/adherent_pylon, /turf/simulated/floor/crystal, /area/space) -"uWE" = ( -/obj/machinery/computer/ship/sensors{ - dir = 1 - }, -/obj/machinery/oxygen_pump{ - dir = 8; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "uXb" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_7) -"uXg" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/security_space_law, -/obj/item/book/codex, -/obj/item/book/manual/security_space_law, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"uXh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) "uXv" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/machinery/atmospherics/component/unary/vent_pump/on{ @@ -27905,12 +16417,9 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_2) -"uYt" = ( -/obj/structure/bed/chair/bay/comfy{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +"uYz" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/port) "uYE" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 @@ -27927,6 +16436,14 @@ /obj/structure/flora/pottedplant/orientaltree, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) +"uYR" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/port) "uYU" = ( /obj/structure/railing{ dir = 1 @@ -27942,34 +16459,6 @@ }, /turf/simulated/open, /area/crew_quarters/bar) -"vaa" = ( -/obj/structure/table/steel, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/item/storage/lockbox, -/obj/item/storage/box/nifsofts_security, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"vaF" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) -"vbh" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_one/aft/port) "vbU" = ( /obj/structure/closet/secure_closet/security, /obj/machinery/firealarm{ @@ -27986,21 +16475,6 @@ /obj/effect/mist, /turf/simulated/floor/water/pool, /area/space) -"vda" = ( -/obj/landmark/spawnpoint/latejoin/station/arrivals_shuttle, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"vde" = ( -/obj/structure/table/glass, -/obj/item/storage/box/cups, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) "vdj" = ( /obj/structure/closet/crate/bin{ desc = "A large bin for medical and other personnel that deals with bio-grade waste."; @@ -28014,12 +16488,6 @@ }, /turf/simulated/floor/tiled, /area/medical/surgery2) -"vdn" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) "vdr" = ( /obj/machinery/optable, /obj/machinery/oxygen_pump/anesthetic{ @@ -28036,29 +16504,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"veu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_1) -"veP" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "emergency_shuttle_lockdown"; - name = "Emergency Shuttle Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/escape) +"vdN" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/aft/port) +"veU" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/main_map/Hangar_bay/deck1/a) "veW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -28071,10 +16523,6 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/surgery_hallway) -"vfa" = ( -/obj/structure/ladder, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/port) "vfb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -28084,9 +16532,6 @@ icon_state = "techmaint" }, /area/holodeck_control) -"vfu" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) "vfz" = ( /obj/machinery/power/apc/critical/west_bump, /obj/structure/cable/green{ @@ -28105,12 +16550,6 @@ /obj/machinery/light/flamp, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/bar) -"vgs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) "vgu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -28140,23 +16579,6 @@ /obj/machinery/light/flamp, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/bar) -"vhr" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/starboard) -"vhv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora_storage) "vhx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -28176,15 +16598,9 @@ }, /turf/simulated/floor/tiled/red, /area/tether/surfacebase/security/lobby) -"vhS" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/bar) -"vim" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/deck_one/port) +"vhU" = ( +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_one/aft/port) "viM" = ( /obj/structure/closet/hydrant{ pixel_y = 32 @@ -28203,34 +16619,29 @@ }, /turf/simulated/floor/tiled, /area/security/security_lockerroom) -"vjp" = ( -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_y = -26 - }, -/obj/structure/handrail{ +"vjf" = ( +/obj/structure/railing{ dir = 1 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"vjs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_one) -"vjO" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "32-1" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_one/starboard) +"vjE" = ( +/obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1) "vjR" = ( /obj/machinery/button/remote/airlock{ id = "dorm2"; @@ -28241,44 +16652,51 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_2) -"vjU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"vkd" = ( -/obj/structure/closet/secure_closet/guncabinet/excursion, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"vkN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +"vkf" = ( +/obj/machinery/door/airlock/glass/medical{ + id_tag = "MedbayFoyer"; + name = "Treatment Center" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 + dir = 4 }, -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -32 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/security/lobby) -"vlh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/door/firedoor/glass{ + dir = 4 }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"vkl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) +"vkV" = ( +/turf/simulated/wall/prepainted/medical, +/area/tether/surfacebase/medical/chemistry) "vlC" = ( /obj/structure/table/steel_reinforced, /obj/item/folder/red, /turf/simulated/floor/carpet, /area/security/warden) +"vmf" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "vmk" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/techfloor{ @@ -28325,27 +16743,24 @@ /obj/structure/cable/green, /turf/simulated/floor/reinforced/airless, /area/space) -"vpT" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, +"voW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 10 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"vqb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) +"vpq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/obj/machinery/holopad, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/space) "vqk" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/box/masks{ @@ -28370,66 +16785,46 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"vqx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +"vql" = ( +/obj/machinery/power/apc/direction_bump/north, +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_one) -"vqz" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) +/turf/simulated/floor/plating, +/area/maintenance/security/upper) +"vqH" = ( +/turf/simulated/wall/prepainted/command, +/area/crew_quarters/heads/chief) +"vqN" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/Hangar_bay/deck1/a) "vqV" = ( /obj/machinery/photocopier, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/security/lobby) -"vrW" = ( -/obj/structure/table/steel, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/storage/firstaid/regular, -/obj/item/retail_scanner/security, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/effect/floor_decal/corner/red/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) "vse" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_6) -"vsq" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +"vsN" = ( +/obj/spawner/window/low_wall/borosillicate/full/firelocks, +/turf/simulated/floor/plating, +/area/crew_quarters/bar_backroom) +"vsV" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain{ dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/turf/simulated/floor/tiled/white, +/area/medical/medbay) "vsX" = ( /obj/structure/catwalk, /obj/machinery/power/pointdefense{ @@ -28442,16 +16837,27 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"vtc" = ( -/obj/machinery/door/airlock/atmos{ - name = "Medical Atmospherics Backup"; - req_access = list(24) +"vtd" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/space) +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/door/airlock/glass{ + name = "Medbay Lobby" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/medical/reception) "vtL" = ( /obj/structure/table/reinforced, /obj/item/book/manual/security_space_law, @@ -28477,36 +16883,23 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/surgery_hallway) -"vue" = ( -/obj/machinery/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"vui" = ( -/obj/structure/bed/padded, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 +"vtV" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_one/forward/port) +"vuy" = ( +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = -10 }, -/obj/machinery/light_switch{ +/obj/structure/sign/directions/cryo{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ dir = 1; - pixel_x = -2; - pixel_y = -28 + pixel_y = 10 }, -/obj/random/bedsheet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"vum" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm9"; - name = "Room 9 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck1) "vuU" = ( /obj/effect/floor_decal/corner/paleblue/bordercee, /obj/effect/floor_decal/spline/plain{ @@ -28524,10 +16917,6 @@ /obj/structure/closet/secure_closet/medical2, /turf/simulated/floor/tiled, /area/medical/surgery) -"vwm" = ( -/obj/structure/sign/deck/first, -/turf/simulated/wall, -/area/hallway/primary/central_one) "vwo" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -28540,35 +16929,6 @@ }, /turf/simulated/floor/carpet/turcarpet, /area/crew_quarters/sleep/Dorm_2) -"vwr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Research Entrance"; - req_one_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) -"vwx" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/flora/pottedplant/smalltree, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) "vwI" = ( /obj/landmark/spawnpoint/job/head_nurse, /turf/simulated/floor/tiled/dark, @@ -28594,78 +16954,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"vxj" = ( -/obj/machinery/door/blast/regular{ - dir = 8; - id = "armorytactical"; - name = "Tactical Armory Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/reinforced, -/area/security/tactical) -"vxl" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa/officecommon) -"vxm" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "supply isolation valve" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/armory) -"vxJ" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) "vyz" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"vyH" = ( -/obj/structure/railing{ +"vze" = ( +/obj/structure/bed/chair/wood{ dir = 1 }, -/obj/structure/lattice, -/obj/structure/sign/deck1{ - pixel_y = -32 - }, -/turf/simulated/open, -/area/maintenance/deck_one/forward/port) -"vzg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/space) +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_one/aft/port) "vzP" = ( /obj/structure/closet/walllocker/emerglocker/north, /obj/effect/floor_decal/corner/white/border{ @@ -28673,11 +16973,33 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_4) +"vAd" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/main_map/maintenance/deck_one/port) "vBA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) +"vCf" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"vCY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "vDb" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -28685,43 +17007,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"vDT" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"vDY" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"vEe" = ( -/obj/structure/sign/directions/medical, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = -10 - }, -/obj/structure/sign/directions/cryo{ - dir = 8; - pixel_y = 10 - }, -/turf/simulated/wall, -/area/hallway/primary/fore) -"vEu" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "vEL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -28750,96 +17035,54 @@ /obj/effect/mist, /turf/simulated/floor/water/pool, /area/space) -"vFM" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) "vFR" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/meter, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"vFW" = ( -/obj/machinery/button/remote/blast_door{ - id = "armoryriot"; - name = "Emergency Armory Access"; - pixel_x = -25; - pixel_y = -6; - req_access = list(3) - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"vGq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_1) "vGz" = ( /obj/effect/floor_decal/corner/paleblue/bordercee, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"vGJ" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"vHl" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, +"vGK" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-4" }, -/turf/simulated/floor, -/area/tether/surfacebase/security/briefingroom) -"vHW" = ( -/obj/structure/bed/chair/sofa/right, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"vIj" = ( -/obj/machinery/holoplant{ - pixel_y = 6 +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) +"vIq" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "armoryriot"; + name = "Emergency Armory Access" }, -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"vIL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/reinforced, +/area/security/riot_control) +"vIA" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/space) +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/west, +/turf/simulated/floor/reinforced, +/area/security/tactical) +"vJd" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/r_n_d/destructive_analyzer, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "vJv" = ( /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/security/hallway) @@ -28860,28 +17103,21 @@ }, /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/bar) -"vJS" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"vKi" = ( +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/space) -"vKx" = ( -/obj/structure/bed/double/padded, -/obj/random/bedsheet/double, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"vKJ" = ( -/obj/machinery/sleep_console{ +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/effect/floor_decal/corner/paleblue/bordercee{ - dir = 1 +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/simulated/floor/reinforced, +/area/space) "vLe" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -28894,15 +17130,12 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) -"vLy" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 26 +"vLQ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "vLX" = ( /obj/structure/table/rack/shelf/steel, /obj/effect/floor_decal/industrial/outline/red, @@ -28910,16 +17143,6 @@ /obj/item/gunbox/lethal, /turf/simulated/floor/tiled/dark, /area/security/tactical) -"vMh" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 1 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) "vMp" = ( /obj/item/radio/intercom{ dir = 8; @@ -28950,44 +17173,6 @@ /obj/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, /area/maintenance/solars) -"vMU" = ( -/obj/machinery/holopad, -/turf/simulated/floor/tiled/dark, -/area/space) -"vNb" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"vNd" = ( -/obj/machinery/door/airlock/maintenance/sec, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/security/port) "vNv" = ( /obj/structure/railing{ dir = 1 @@ -28997,61 +17182,37 @@ }, /turf/simulated/open, /area/space) -"vNK" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_one/starboard) +"vNx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/vent/high_volume, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/Hangar_bay/deck1/a) "vNO" = ( /obj/structure/bed/double/padded, /obj/random/bedsheet/double, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_4) -"vNY" = ( -/turf/simulated/floor/tiled/neutral, -/area/space) -"vOO" = ( +"vPf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/turf/simulated/floor/carpet/sblucarpet, -/area/crew_quarters/sleep/Dorm_2) -"vPa" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/item/cell/device/weapon{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon{ - pixel_x = -6; - pixel_y = -3 - }, -/obj/item/cell/device/weapon{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/cell/device/weapon{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"vPm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass/security, /turf/simulated/floor/tiled/red, -/area/space) +/area/tether/surfacebase/security/hallway) +"vPi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "vPy" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -29071,22 +17232,9 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar_backroom) -"vPI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"vPK" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/security/lower) +"vPE" = ( +/turf/simulated/floor/glass/reinforced, +/area/tether/surfacebase/security/hallway) "vPS" = ( /obj/machinery/door/airlock{ name = "Holodeck" @@ -29096,18 +17244,6 @@ icon_state = "techmaint" }, /area/holodeck_control) -"vPZ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "vQP" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -29125,20 +17261,6 @@ }, /turf/simulated/floor/reinforced, /area/security/tactical) -"vQT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "emergency_shuttle_lockdown"; - name = "Emergency Shuttle Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/escape) "vRh" = ( /obj/machinery/atmospherics/valve{ dir = 4; @@ -29150,38 +17272,6 @@ /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_2) -"vRO" = ( -/obj/structure/table/steel, -/obj/item/storage/box/evidence, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/machinery/camera/network/security{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"vRS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/handrail{ - dir = 4 - }, -/obj/machinery/airlock_sensor/airlock_exterior{ - dir = 4; - pixel_x = -24 - }, -/obj/map_helper/airlock/sensor/ext_sensor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "vSh" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/blue/border, @@ -29199,63 +17289,50 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"vSr" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "vSs" = ( /obj/structure/bed/chair/bay/comfy{ dir = 1 }, /turf/simulated/floor/glass/reinforced, /area/bridge/bunker) -"vTc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 +"vSw" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = -22 }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 }, -/turf/simulated/floor/plating, -/area/space) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/riot_control) "vTl" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_8) -"vTA" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) "vTH" = ( /obj/structure/railing, /turf/simulated/floor/reinforced/airless, /area/space) +"vUe" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/main_map/maintenance/atmospheric_substation/medical) "vUj" = ( /obj/machinery/button/remote/airlock{ id = "dorm7"; @@ -29266,14 +17343,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_7) -"vUu" = ( -/obj/structure/window/basic, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/bed/chair/sofa/black{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) "vUv" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -29312,6 +17381,14 @@ /obj/item/reagent_containers/dropper, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) +"vVr" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/riot_control) +"vVJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) "vWz" = ( /obj/machinery/door/airlock/maintenance/command, /obj/machinery/door/blast/regular{ @@ -29323,51 +17400,24 @@ }, /turf/simulated/floor/tiled/techmaint, /area/bridge/bunker) -"vXM" = ( +"vXp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"vYd" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research/researchdivision) -"vYo" = ( -/obj/effect/floor_decal/corner/paleblue/bordercee, -/obj/machinery/vending/blood, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"vYs" = ( -/obj/structure/cable/green{ - icon_state = "32-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/deck_one) +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"vXI" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/reception) "vYy" = ( /turf/simulated/floor/plating, /area/space) -"vYI" = ( -/obj/effect/floor_decal/corner/mauve/full, -/obj/structure/closet/crate/nanotrasen, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) "vYK" = ( /obj/machinery/door/airlock/glass/security{ name = "Warden's Office"; @@ -29376,6 +17426,13 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/security/warden) +"vZf" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "vZn" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -29386,6 +17443,20 @@ }, /turf/simulated/open, /area/bridge/bunker) +"vZt" = ( +/obj/machinery/door/airlock{ + name = "Internal Affairs"; + req_access = list(38) + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/tether/surfacebase/security/iaa/officeb) +"vZK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/main_map/hallway/deck1/fore) "was" = ( /obj/structure/catwalk, /obj/structure/ladder, @@ -29403,33 +17474,32 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgery2) +"waR" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/rnd/lab) "waV" = ( /obj/machinery/camera/network/security, /obj/structure/bed/chair, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"wbh" = ( -/obj/structure/bed/chair/shuttle, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"wbH" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/starboard) +"wbF" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/rnd/lab) +"wbO" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/main_map/maintenance/deck_one/aft/starboard) "wbY" = ( /turf/simulated/floor/glass/reinforced, /area/medical/medbay) -"wcE" = ( -/obj/structure/sign/hangar/one, -/turf/simulated/wall/r_wall, +"wdu" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/reinforced, /area/space) -"wcR" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_7) "wdA" = ( /turf/simulated/floor/plating, /area/maintenance/substation/command) @@ -29444,85 +17514,30 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/sleep/Dorm_5) -"wdG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"wdO" = ( -/obj/structure/window/basic{ +"wep" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/bed/chair/sofa/black/right, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"weT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/starboard) -"wfj" = ( -/obj/item/stool/padded, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) +"wfe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"wfz" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = -22 +/obj/effect/floor_decal/corner/blue{ + dir = 6 }, /obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"wgt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/space) -"wgJ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/structure/sign/directions/roomnum{ dir = 4; - pixel_y = 24 + layer = 3.3; + pixel_x = 26 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"wgL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/space) -"wgQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) "whe" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector, @@ -29537,17 +17552,15 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"whx" = ( -/obj/machinery/door/window/brigdoor/southleft{ - req_access = null; - req_one_access = list(8) +"whm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, /obj/effect/floor_decal/techfloor{ - dir = 10 + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) @@ -29564,17 +17577,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_1) -"whE" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"whG" = ( -/obj/machinery/status_display, -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/escape) "whN" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -29605,16 +17607,19 @@ name = "Holodeck Projector Floor" }, /area/holodeck/alphadeck) -"wip" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 +"wjk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/structure/closet/crate/bin{ - anchored = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) "wjA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -29624,34 +17629,24 @@ }, /turf/simulated/floor/tiled, /area/space) +"wjN" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/rnd/research_foyer) "wjS" = ( /obj/structure/closet/secure_closet/hop2, /obj/item/clothing/accessory/poncho/roles/cloak/hop, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"wkf" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "wkU" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"wlh" = ( -/obj/machinery/door/airlock/glass/research{ - name = "Xenoflora Research"; - req_one_access = list(30,47,77) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +"wkY" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/warden) "wlo" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor{ @@ -29659,6 +17654,16 @@ }, /turf/simulated/floor/tiled/techmaint, /area/space) +"wmf" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/obj/structure/sign/deck1{ + pixel_y = -32 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_one/forward/port) "wmo" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -29668,27 +17673,29 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) +"wmH" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/briefingroom) "wnn" = ( /obj/structure/bed/chair/sofa/brown/right{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_2) +"wnD" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/medbay_emt_bay) +"wnS" = ( +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/forward/port) "wor" = ( /obj/machinery/computer/ship/navigation/telescreen{ pixel_x = -32 }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_1) -"wot" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_9) "woI" = ( /obj/structure/bookcase/legal/corpreg, /obj/item/book/manual/legal/cr_vol1, @@ -29701,18 +17708,6 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/security/iaa/officecommon) -"woN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/button/remote/blast_door{ - dir = 0; - id = "shuttle_hatch"; - name = "Shuttle Rear Hatch"; - pixel_x = 20; - pixel_y = 25 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "woO" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -29724,6 +17719,13 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/wood, /area/bridge/hallway) +"woZ" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/direction_bump/east, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1/fore) "wpA" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -29734,14 +17736,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"wpI" = ( -/obj/machinery/media/jukebox, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"wpJ" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) "wpR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -29755,6 +17749,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) +"wpV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1) "wpZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -29770,50 +17770,16 @@ }, /turf/simulated/floor/glass/reinforced, /area/crew_quarters/bar) -"wqC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/aft/starboard) -"wrw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ +"wqv" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ dir = 8 }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"wrA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) -"wrH" = ( -/obj/machinery/door/airlock/glass{ - desc = "A room dedicated for the repairs and recharging of adherent."; - name = "Adherent Maintenance" - }, -/turf/simulated/floor/crystal, -/area/hallway/primary/central_one) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/aft/starboard) +"wtd" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/forward/port) "wtT" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -29823,34 +17789,30 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/Dorm_1) -"wvj" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +"wtZ" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) +"wun" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/turnstile{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"wvt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"wvv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/security/lobby) +"wvu" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/prepainted/medical, +/area/medical/reception) "wwz" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -29864,15 +17826,6 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/red, /area/tether/surfacebase/security/hallway) -"wwF" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/hallway) -"wxy" = ( -/obj/structure/table/bench/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/landmark/spawnpoint/job/security_officer, -/turf/simulated/floor/tiled/monotile, -/area/security/security_lockerroom) "wxQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -29912,14 +17865,19 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"wyC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"wyR" = ( +"wyq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/starboard) +"wyy" = ( /turf/simulated/wall, -/area/crew_quarters/sleep/cryo) +/area/main_map/maintenance/deck_one/aft/port) "wzi" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -29944,14 +17902,6 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_emt_bay) -"wzD" = ( -/obj/effect/floor_decal/corner/paleblue/bordercee, -/obj/machinery/vending/medical, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) "wzH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -30005,99 +17955,21 @@ }, /turf/simulated/floor/tiled/white, /area/space) -"wCV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 +"wDN" = ( +/turf/simulated/floor/tiled, +/area/medical/medbay) +"wEc" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"wDi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"wDu" = ( -/obj/structure/table/reinforced, -/obj/item/folder{ - pixel_x = -4 - }, -/obj/item/folder/blue{ - pixel_x = 5 - }, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/item/clipboard, -/obj/item/storage/briefcase{ - pixel_x = -2; - pixel_y = -5 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 27 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officeb) -"wEi" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"wEj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/techfloor/hole/right{ dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) "wEl" = ( /turf/simulated/floor/wood, /area/bridge/hallway) -"wEq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/security/lobby) -"wEB" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"wEH" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"wFf" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"wFj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/security/hallway) "wFy" = ( /obj/structure/closet{ name = "Evidence Closet" @@ -30107,34 +17979,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/forensics) -"wFM" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"wFU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled, -/area/space) -"wGH" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/starboard) -"wGL" = ( -/turf/simulated/wall/r_wall, -/area/security/security_equiptment_storage) "wHz" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -30148,16 +17992,6 @@ }, /turf/simulated/floor/carpet, /area/security/warden) -"wHX" = ( -/obj/structure/fuel_port{ - dir = 4; - pixel_x = 29 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "wIf" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -30170,30 +18004,31 @@ "wIk" = ( /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_6) -"wJk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"wJj" = ( +/obj/machinery/door/firedoor{ + dir = 2 }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, /area/space) "wJm" = ( /turf/simulated/shuttle/wall/voidcraft, /area/space) -"wKm" = ( -/obj/effect/floor_decal/corner/mauve/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) "wKw" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /obj/machinery/meter, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) +"wKM" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/security/lobby) "wKY" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -30220,23 +18055,6 @@ /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/tiled/white, /area/medical/surgery) -"wLn" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/lobby) "wLA" = ( /obj/structure/railing{ dir = 1 @@ -30254,74 +18072,15 @@ /obj/structure/toilet, /turf/simulated/floor/tiled/white, /area/space) -"wMb" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"wMA" = ( +/turf/simulated/wall{ + can_open = 1 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/evastorage) -"wMq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"wMH" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/newscaster{ - pixel_y = -31 - }, -/turf/simulated/floor/wood, -/area/space) -"wNP" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/westright{ - name = "Research Desk"; - req_access = null; - req_one_access = list(8,44) - }, -/obj/item/deskbell, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/space) -"wOc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) -"wOy" = ( -/turf/simulated/floor/wood, -/area/hallway/primary/port) -"wOK" = ( -/obj/machinery/appliance/mixer/cereal, -/turf/simulated/floor/tiled/dark, -/area/space) +/area/main_map/maintenance/deck_one) +"wNm" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "wPj" = ( /obj/structure/table/steel, /obj/item/folder/red, @@ -30332,21 +18091,13 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/wood, /area/crew_quarters/bar_backroom) -"wPz" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +"wPB" = ( +/turf/simulated/open, +/area/main_map/maintenance/deck_one/port) "wPI" = ( /obj/item/stool/padded, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/bar) -"wQz" = ( -/obj/machinery/scale, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"wQD" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) "wQG" = ( /turf/space/basic, /area/space) @@ -30359,6 +18110,13 @@ }, /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/sleep/Dorm_5) +"wRf" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research/researchdivision) "wRi" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -30372,15 +18130,6 @@ }, /turf/simulated/floor/tiled, /area/space) -"wRX" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) "wSp" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -30404,26 +18153,19 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"wSD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"wSO" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"wTC" = ( -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -32 +/obj/machinery/door/firedoor/glass{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fore) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck1/fore) "wTD" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -30433,111 +18175,29 @@ }, /turf/simulated/floor/tiled, /area/security/security_lockerroom) -"wTI" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_10) -"wTK" = ( -/turf/simulated/wall, -/area/maintenance/deck_one/aft/starboard) -"wTW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) "wUb" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"wUq" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "wUW" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/security/riot_control) +"wUY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora) "wVc" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/carpet/oracarpet, /area/crew_quarters/heads/chief) -"wVd" = ( -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/scale, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"wVh" = ( -/obj/machinery/door/window/westright{ - dir = 1; - name = "Bar"; - req_access = list(25); - req_one_access = list(25) - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"wVx" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"wWn" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"wWt" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 5 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "medbayquar"; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"wXo" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_one/aft/port) -"wXW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"wYa" = ( -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area_hallway) "wYi" = ( /obj/effect/floor_decal/corner/white/border, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -30546,18 +18206,6 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_4) -"wYm" = ( -/obj/structure/table/marble, -/obj/machinery/reagentgrinder, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_containers/dropper, -/turf/simulated/floor/tiled, -/area/space) "wYy" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/light/small{ @@ -30570,73 +18218,20 @@ /obj/structure/table/marble, /turf/simulated/floor/wood, /area/crew_quarters/bar_backroom) -"wZk" = ( -/obj/structure/closet/walllocker/emergsuit_wall{ - pixel_y = 26 - }, -/obj/structure/bed/chair/shuttle, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"wZO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) "xaj" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/space) -"xaI" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"xaT" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - id = "bathroomlock17"; - name = "Bar Toilet 1 Lock"; - pixel_x = -10; - pixel_y = 22; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"xaZ" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"xbh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"xbx" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, +"xbv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck1/fore) "xbJ" = ( /obj/machinery/atmospherics/component/unary/heater{ icon_state = "heater" @@ -30652,31 +18247,20 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"xbS" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_4) -"xbU" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/space) "xbY" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"xcC" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_11) +"xch" = ( +/obj/machinery/atmospherics/portables_connector/fuel, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) +"xcw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) "xcD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/techfloor{ @@ -30700,37 +18284,20 @@ }, /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/sleep/Dorm_5) -"xcX" = ( -/turf/simulated/wall, -/area/maintenance/deck_one/port) -"xdo" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 +"xdy" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + name = "Research Desk"; + req_access = null; + req_one_access = list(8,44) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/obj/item/deskbell, +/obj/structure/noticeboard{ + pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"xdZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"xfe" = ( -/obj/machinery/holopad, -/turf/simulated/floor/lino, -/area/security/detectives_office) +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) "xfr" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -30747,31 +18314,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"xfC" = ( -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay emergency access door."; - id = "MedbayEmergency"; - name = "Door Switch"; - pixel_x = -24; - pixel_y = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"xga" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) "xgU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -30784,23 +18326,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"xhx" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/captain) -"xhW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) -"xix" = ( -/obj/structure/grille, -/obj/structure/girder/reinforced, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/maintenance/deck_one/aft/port) "xiN" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -30810,10 +18335,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) -"xiZ" = ( -/obj/structure/closet/emcloset, -/turf/simulated/shuttle/floor/black, -/area/space) "xjg" = ( /obj/item/defib_kit/compact/loaded, /obj/item/defib_kit/compact/loaded, @@ -30837,91 +18358,31 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"xjL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ +"xjP" = ( +/obj/machinery/door/airlock/glass/medical{ + id_tag = "MedbayEmergency"; + name = "Medbay Emergency Access" + }, +/obj/machinery/door/blast/shutters{ + density = 0; dir = 4; - id = "armorylight"; - name = "Light Armory Acccess" + icon_state = "shutter0"; + id = "medbayquar"; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"xjW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) -"xlH" = ( -/turf/simulated/shuttle/floor/black, -/area/space) -"xlK" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"xlP" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fore) -"xmJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/starboard) +/turf/simulated/floor/tiled, +/area/medical/medbay) "xmP" = ( /obj/structure/bed/padded, /obj/random/bedsheet, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_5) -"xmZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/machinery/recharger{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"xnc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor, -/obj/structure/bed/chair/sofa/black/left, -/turf/simulated/floor/tiled, -/area/space) +"xnb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/research_foyer) "xnh" = ( /turf/simulated/shuttle/wall/voidcraft/hard_corner, /area/medical/medbay_emt_bay) @@ -30934,20 +18395,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgery2) -"xnH" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_scanner, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/wood, -/area/space) -"xnJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) "xnP" = ( /obj/structure/railing{ dir = 1 @@ -30967,42 +18414,6 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"xoA" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) -"xpf" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloorblack, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/space) -"xpi" = ( -/obj/structure/table/steel, -/obj/item/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/item/storage/box/evidence, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) "xpp" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -31010,19 +18421,9 @@ }, /turf/simulated/floor/carpet/purcarpet, /area/crew_quarters/bar) -"xpr" = ( -/turf/simulated/wall, -/area/security/breakroom) -"xpD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/vent/high_volume, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +"xpK" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_one/port) "xpN" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -31047,15 +18448,6 @@ }, /turf/simulated/floor/tiled/white, /area/space) -"xqm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "xqQ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -31065,45 +18457,10 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"xrd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_10) -"xrr" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "armorylight"; - name = "Light Armory Acccess" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/reinforced, -/area/security/armoury) -"xrx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"xrI" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"xrV" = ( -/obj/machinery/holopad, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) +"xrX" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) "xsa" = ( /obj/structure/railing{ dir = 8 @@ -31113,58 +18470,26 @@ }, /turf/simulated/open, /area/rnd/robotics) -"xsD" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24 +"xsW" = ( +/obj/machinery/door/firedoor{ + dir = 8 }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"xsE" = ( -/obj/structure/railing{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/deck_one/forward/port) -"xva" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = -8 - }, -/obj/item/clothing/accessory/armor/helmcover/nt{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/item/clothing/accessory/armor/helmcover/nt{ - pixel_x = 5; - pixel_y = -6 - }, -/obj/item/clothing/accessory/armor/helmcover/nt{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/accessory/armor/helmcover/nt{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) +/obj/machinery/door/airlock/glass/security, +/turf/simulated/floor/tiled/red, +/area/tether/surfacebase/security/hallway) +"xuq" = ( +/obj/structure/railing, +/turf/simulated/floor/reinforced, +/area/space) "xvf" = ( /obj/structure/table/reinforced, /obj/item/forensics/sample_kit/powder, @@ -31181,36 +18506,24 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics) -"xvm" = ( -/obj/structure/table/rack/shelf/steel{ - pixel_y = -2 - }, -/obj/machinery/door/window/northleft, -/obj/structure/window/reinforced{ +"xvs" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/lab) +"xvS" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/starboard) +"xwj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/electrical{ - pixel_y = -4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"xvA" = ( -/obj/machinery/camera/network/outside{ - dir = 5 - }, -/turf/space, -/area/space) -"xvB" = ( -/obj/structure/railing{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/structure/railing, -/turf/simulated/floor/reinforced/airless, -/area/space) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck1) "xwu" = ( /obj/structure/railing{ dir = 4 @@ -31222,51 +18535,27 @@ /obj/structure/window/basic, /turf/simulated/open, /area/crew_quarters/bar) -"xwA" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"xwZ" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/space) -"xwL" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"xxa" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) +/turf/simulated/open, +/area/main_map/maintenance/deck_one/aft/starboard) "xxI" = ( /obj/item/radio/intercom{ dir = 8; @@ -31275,23 +18564,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_5) -"xxJ" = ( -/obj/machinery/atmospherics/portables_connector/fuel, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"xxM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "emergency_shuttle_lockdown"; - name = "Emergency Shuttle Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/escape) "xyl" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -31303,123 +18575,59 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/sleep/Dorm_9) -"xys" = ( -/obj/effect/floor_decal/techfloor{ +"xzy" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) +"xzF" = ( +/obj/structure/sign/deck/first, +/turf/simulated/wall, +/area/main_map/hallway/deck1) +"xAO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/turf/simulated/floor/tiled, -/area/space) -"xyW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_10) -"xzh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one/forward/starboard) -"xzq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/security_lockerroom) -"xzV" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft, -/area/space) -"xzX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"xBc" = ( +/obj/effect/floor_decal/corner/mauve{ dir = 9 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) -"xAe" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/techfloor{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/bar) -"xAj" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) -"xAs" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/deck_one/port) -"xAG" = ( -/obj/structure/table/steel, -/obj/item/folder/red, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"xBN" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"xBq" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/security/port) "xBY" = ( /obj/structure/flora/pottedplant/shoot, /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_6) -"xCC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"xCP" = ( +/obj/structure/closet{ + desc = "Dents and old flaky paint blanket this old storage unit."; + name = "old locker" }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"xCM" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/obj/item/instrument/violin, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"xCW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"xDw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/security/warden) +/obj/item/storage/toolbox/lunchbox/filled, +/obj/random/plushielarge, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_one/port) +"xCR" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/south, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora_storage) +"xDi" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck1) "xDG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -31434,31 +18642,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"xEd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"xEC" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) "xFr" = ( /obj/structure/railing/grey{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"xFw" = ( -/obj/machinery/computer/shuttle_control/explore{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "xFE" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -31469,18 +18658,10 @@ /obj/machinery/vending/coffee, /turf/simulated/floor/tiled/white, /area/medical/reception) -"xFU" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +"xFO" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck1/fore) "xGl" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/carpet/purcarpet, @@ -31494,117 +18675,33 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"xGW" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/pen/blue{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/pen/blade/red{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"xIz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/maintenance/deck_one/aft/port) -"xIM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_6) -"xIN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"xIO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, +"xGQ" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/tether/surfacebase/security/hallway) +"xHO" = ( +/obj/spawner/window/low_wall/borosillicate/full/firelocks, /turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/starboard) -"xIS" = ( -/obj/machinery/holopad, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) -"xIW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"xIY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"xJc" = ( -/obj/structure/sign/directions/bridge{ - dir = 1 - }, -/turf/simulated/wall, -/area/hallway/primary/central_one) +/area/crew_quarters/kitchen) "xJO" = ( /obj/structure/closet/firecloset, /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"xKd" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/wood, -/area/tether/surfacebase/security/iaa/officecommon) +"xJV" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "armorytactical"; + name = "Tactical Armory Access"; + pixel_x = 25; + pixel_y = -6; + req_access = list(3) + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/reinforced, +/area/security/riot_control) "xKi" = ( /turf/simulated/floor/tiled/techmaint, /area/space) @@ -31616,12 +18713,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/sblucarpet, /area/crew_quarters/sleep/Dorm_4) -"xKN" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 +"xKR" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/security/riot_control) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/red, +/area/tether/surfacebase/security/lobby) "xKT" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 9 @@ -31629,15 +18732,19 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology/xenoflora_storage) -"xKU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +"xLj" = ( +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/obj/machinery/air_alarm{ + pixel_y = 22 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research/researchdivision) +/turf/simulated/floor/tiled, +/area/medical/surgery) "xLH" = ( /obj/structure/table/reinforced, /obj/item/folder/red_hos, @@ -31664,6 +18771,15 @@ }, /turf/simulated/floor/crystal, /area/space) +"xMX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one/forward/starboard) "xNd" = ( /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/techfloor/hole, @@ -31684,11 +18800,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"xNO" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_one) "xNZ" = ( /obj/structure/table/standard, /obj/effect/floor_decal/borderfloorwhite{ @@ -31702,30 +18813,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"xOh" = ( -/obj/structure/table/standard, -/obj/item/disk/design_disk{ - pixel_x = 3; - pixel_y = -1 +"xOk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/item/disk/design_disk{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/disk/design_disk{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/disk/design_disk{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/disk/tech_disk, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) +"xOm" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/reinforced, +/area/security/riot_control) "xOs" = ( /obj/machinery/atmospherics/component/binary/pump{ dir = 1; @@ -31733,95 +18831,21 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"xON" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, +"xPR" = ( /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/iaa) -"xOX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/vacant/vacant_office) +/area/main_map/hallway/deck1) +"xQc" = ( +/obj/machinery/computer/ship/engines, +/obj/machinery/oxygen_pump{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/Hangar_bay/deck1/a) "xRY" = ( /obj/structure/railing, /turf/space, /area/space) -"xSh" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/lathe/autolathe, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"xSn" = ( -/obj/structure/sign/deck1{ - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/aft/port) -"xSQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/iaa/officea) -"xSY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"xTA" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/space) -"xTN" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"xUp" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "xVu" = ( /obj/machinery/door/airlock/security{ name = "Equipment Storage"; @@ -31829,22 +18853,6 @@ }, /turf/simulated/floor/tiled, /area/security/security_equiptment_storage) -"xWe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/briefingroom) "xWv" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -31860,10 +18868,21 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area) +"xWT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_one) "xWZ" = ( /obj/structure/flora/pottedplant/orientaltree, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"xXe" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/recreation_area) "xXn" = ( /obj/machinery/camera/network/medbay{ dir = 8 @@ -31890,32 +18909,19 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"xXN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "emergency_medical" - }, -/turf/simulated/floor, -/area/shuttle/escape) -"xYp" = ( -/obj/effect/floor_decal/borderfloor{ +"xXy" = ( +/obj/structure/railing{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/structure/railing{ + dir = 4 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape) -"xYG" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/deck_one/starboard) +/obj/machinery/light/no_nightshift, +/turf/simulated/open, +/area/rnd/lab) +"xXS" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/research_foyer) "xYN" = ( /obj/machinery/light{ dir = 1 @@ -31927,15 +18933,6 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/lino, /area/security/detectives_office) -"xYZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) "xZj" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/wood, @@ -32005,44 +19002,32 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/Dorm_4) -"ycr" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "ycs" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/space) +"ycJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck1/fore) +"ycS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) "ydq" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/space) -"ydU" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) -"yeg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/curtain/open/bed{ - anchored = 1; - name = "curtain" - }, -/turf/simulated/floor/plating, -/area/space) -"yeh" = ( -/obj/machinery/computer/shuttle_control/explore/excursion, -/turf/simulated/floor/tiled/techfloor, -/area/space) "yek" = ( /obj/structure/window/reinforced{ dir = 1 @@ -32068,16 +19053,6 @@ /obj/machinery/camera/motion/security, /turf/simulated/floor/tiled/dark, /area/security/riot_control) -"yeS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/techmaint, -/area/space) "yfy" = ( /obj/structure/table/bench/steel, /obj/landmark/spawnpoint/job/security_officer, @@ -32114,42 +19089,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) -"ygJ" = ( -/obj/machinery/cryopod{ - dir = 2 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"yhA" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "armorylight"; - name = "Light Armory Access"; - pixel_x = 25; - pixel_y = -25; - req_access = list(3) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"yhL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "yhU" = ( /obj/effect/floor_decal/corner/paleblue/bordercee, /obj/effect/floor_decal/industrial/outline/blue, @@ -32160,44 +19099,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"yik" = ( -/obj/machinery/door/airlock/security{ - name = "Armory"; - req_access = list(3); - secured_wires = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/outfitting/storage) -"yiI" = ( -/obj/structure/table/reinforced, -/obj/item/radio{ - pixel_x = -4 - }, -/obj/item/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/briefingroom) -"yjj" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"yke" = ( -/turf/simulated/wall, -/area/medical/surgery) "ykB" = ( /turf/simulated/floor/wood, /area/crew_quarters/sleep/Dorm_3) @@ -32214,53 +19115,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"ylm" = ( -/obj/item/stool/padded, -/turf/simulated/floor/wood, -/area/space) -"ylA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"ylL" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"ylN" = ( -/obj/structure/table/steel, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/obj/machinery/camera/network/security, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) "ylO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -32268,29 +19122,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"ylX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"ylY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) (1,1,1) = {" bmU @@ -32408,34 +19239,34 @@ bmU bmU bmU bmU -ecX -ecX -eGe -ecX -ecX -ecX -ecX -nwv -nfM -mJk -bYi -oeP -wMb -qWQ -btA -mJk -bmU -bmU -rPq -eLt -xsD -fGp -fGp -nPq -nPq -lna -rPq -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -32602,34 +19433,34 @@ bmU bmU bmU bmU -ecX -bwv -fuh -xva -xpi -fZv -ecX -uMt -pLF -fcf -fcf -nKj -fcf -fcf -fcf -fcf -bmU -bmU -bjP -ylX -fKK -wdG -uVC -aOm -tJW -lna -rPq -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -32791,44 +19622,44 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -ecX -geR -usY -vaF -sRz -jYG -ecX -lew -vxm -qQf -rmw -qrV -qou -gkB -fcf -fcf -bmU -bmU -xjL -tZX -tJW -oFA -lNr -btu -tJW -lna -rPq -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG wQG wQG wQG @@ -32958,71 +19789,71 @@ wQG wQG wQG wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -ecX -oGh -efQ -gfd -dOM -lKy -yik -mky -bwU -jfe -mkE -qrV -eps -fGq -fcf -fcf -bmU -bmU -rPq -exe -tJW -uqy -hTN -rlH -hOU -lna -rPq -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG wQG wQG wQG @@ -33147,70 +19978,32 @@ bmU bmU bmU bmU -hHg -hHg -hHg -hHg -hHg -egZ -egZ -egZ -egZ -egZ -lQL -oHI -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -ecX -ecX -ecX -ecX -ecX -ecX -ecX -lrq -aWz -igw -tzv -uKo -xCW -urc -fcf -fcf -bmU -bmU -cvQ -ylN -baX -qRb -xIY -gZf -cEk -lna -rPq +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33229,6 +20022,44 @@ wQG wQG wQG wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33310,26 +20141,27 @@ bmU bmU bmU bmU -bmU -toj -geI -jHi -drx -fkr -ikw -geI -loj -sTp -tCo -tCo -mYi -tCo -irQ -tCo -tCo -tCo -tCo -mYi +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33340,71 +20172,32 @@ bmU bmU bmU bmU -bmU -hHg -hHg -hHg -hHg -hHg -egZ -usk -cWv -odx -egZ -egZ -egZ -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -gXT -xdZ -xSh -eSe -dla -aQh -kdk -dfk -feJ -vPa -qrV -bpD -gPd -dLC -fcf -fcf -bmU -bmU -cvQ -cBZ -cBZ -eaA -swr -gIv -cBZ -cBZ -cBZ +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33423,6 +20216,44 @@ wQG wQG wQG wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33504,26 +20335,27 @@ bmU bmU bmU bmU -bmU -dDv -cgT -eEc -eEc -kyA -gGz -gGz -gGz -gGz -bvb -nQe -dwd -gID -cAg -gGz -gGz -gGz -gGz -eoE +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33534,71 +20366,32 @@ bmU bmU bmU bmU -bmU -hHg -hHg -bPt -bPt -bPt -egZ -gPC -chc -kmr -lbn -iAM -khr -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -orH -eLN -vXM -nHq -wMq -rfj -uSe -eye -lcl -uQN -vTA -dRp -hDl -cjS -fcf -fcf -bmU -bmU -cvQ -lFw -vFW -hOj -kSp -wTW -lMG -czL -cBZ +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33617,6 +20410,44 @@ wQG wQG wQG wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33624,15 +20455,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33698,26 +20529,27 @@ bmU bmU bmU bmU -bmU -xqm -eEc -qOP -gGz -gGz -fAv -fAv -heY -gGz -gGz -gGz -nAP -gtf -jaS -mhH -pMb -ubz -gGz -gGz +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33728,71 +20560,32 @@ bmU bmU bmU bmU -bmU -hHg -bPt -bPt -dXQ -vNb -egZ -qZJ -uQo -xSQ -spK -xGW -khr -bmU -iUL -iUL -nxQ -iUL -iUL -iUL -iUL -xNk -xNk -xNk -xNk -xNk -sDH -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -fcf -tFK -qrV -uSN -feJ -stP -fcf -vdn -stY -fcf -fcf -fcf -fcf -fcf -fcf -fcf -bmU -bmU -cvQ -dba -oHl -seH -kSp -asi -xKN -eNn -cBZ +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33811,6 +20604,44 @@ wQG wQG wQG wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33818,15 +20649,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33892,26 +20723,27 @@ bmU bmU bmU bmU -bmU -xqm -eEc -kyA -gGz -vkd -tMj -oBd -jmd -ios -jmd -rcm -mTZ -gGz -rIb -eYK -cUw -heV -nHK -eqz +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -33922,77 +20754,76 @@ bmU bmU bmU bmU -bmU -hHg -bPt -nqP -hXL -jcn -rYi -awd -eoW -otE -ekk -sEz -khr -bmU -iUL -lNO -wEj -emf -amv -lZc -thD -hXj -mKp -cAl -iFc -xNk -vPK -bmU -bmU -bmU -bmU -nxk -mtW -bmU -bmU -bmU -bmU -bmU -fcf -eHj -qrV -iDg -feJ -rzY -fcf -cIW -cIW -fcf -fcf -fcf -fcf -fcf -fcf -fcf -bmU -bmU -cvQ -dba -tyq -oOG -kSp -oLD -tyq -uLE -cBZ -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG wQG wQG wQG @@ -34012,15 +20843,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -34086,26 +20917,27 @@ bmU bmU bmU bmU -bmU -xqm -eEc -gGz -gGz -att -bqI -sNB -dhh -ecn -gbU -uei -pOi -taa -woN -gYX -pts -wHX -kmJ -skA +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -34116,77 +20948,76 @@ bmU bmU bmU bmU -bmU -hHg -oxh -hCi -xaI -cyx -egZ -kEU -kwm -dNF -dNF -rle -egZ -bmU -iUL -ksA -uwo -rmy -fZn -sft -hqk -gyB -rAb -nrD -sJc -xNk -xNk -bmU -bmU -bmU -bmU -nxk -xaT -bmU -bmU -bmU -bmU -bmU -fcf -sbX -lzl -cby -xIN -nCZ -fcf -fcf -fcf -fcf -oSf -eem -eem -bYB -fVr -qrL -bmU -bmU -cvQ -dba -tyq -bbr -xIS -iJZ -tyq -cFL -cBZ -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG wQG wQG wQG @@ -34206,15 +21037,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -34280,139 +21111,139 @@ bmU bmU bmU bmU -bmU -xqm -eEc -eEc -kyA -gGz -gGz -ios -tWj -gGz -gGz -cna -evm -gGz -cVj -uSr -gXG -gGz -gGz -gGz -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -hHg -oxh -vde -vue -wrw -mrS -qNU -kUL -bOD -bOD -bOD -hhJ -bmU -iUL -bng -cTS -qkb -dhu -dhu -dqF -hXj -aXK -lfd -vUw -wFy -xNk -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -cvQ -dba -lcK -lao -xxa -ezp -xlK -bIk -cBZ -bmU -bmU -bmU -bmU -bmU -bmU -xpr -xpr -xpr -xpr -xpr -xpr -xpr -xpr -kPh -kPh +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG wQG wQG bmU bmU bmU bmU -mRp -ckF -ckF -pTR -ckF -ckF -gNK -gNK -vHl -ckF bmU bmU bmU bmU bmU bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +bmU +bmU +bmU +bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +bmU +bmU +bmU +bmU bmU bmU bmU @@ -34474,136 +21305,136 @@ bmU bmU bmU bmU -bmU -xqm -eEc -eEc -wkf -mLp -cuK -rnU -nqn -mhZ -qMa -yeh -oZM -gGz -cVj -tWi -pHN -udy -btJ -eEc -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -hHg -oxh -ujk -kOG -rul -qqS -iai -fNe -cUL -cUL -cUL -tTp -bmU -iUL -xYN -gvR -qeG -dUN -jMY -jMY -sRV -ggi -aiT -uhL -moQ -xNk -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -cvQ -cZP -cZP -cZP -bcX -cZP -cZP -cZP -cZP -bmU -bmU -bmU -bmU -bmU -bmU -hfN -kVr -vRO -oeY -sCr -eLy -jxR -imP -kPh -job +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG wQG wQG bmU bmU bmU bmU -mRp -uXg -hBL -eTF -leL -hSg -tQT -tQT -uSK -ckF bmU bmU bmU +bmU +bmU +bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +bmU +bmU +bmU +bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +bmU wQG wQG wQG @@ -34668,26 +21499,27 @@ bmU bmU bmU bmU -bmU -fUn -eEc -eEc -bHL -mLp -wbh -qRe -qPZ -kjr -qMa -jNq -rqZ -gGz -cVj -gzj -dxZ -alo -btJ -eEc +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -34698,105 +21530,104 @@ bmU bmU bmU bmU -bmU -hHg -oxh -hCi -rUG -xON -nLu -jHH -gBf -fEd -fEd -aYI -nLu -bmU -iUL -uiF -mDO -wzR -dhu -dhu -aCT -hXj -nPr -fCs -vUw -wFy -xNk +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -cvQ -cZP -cZP -jdf -mnx -kCu -mBb -cZP -cZP -bmU -dpB -dpB -dpB -bmU -bmU -hfN -kOI -kOI -khC -kOI -kOI -kOI -kOI -jCx -jCx -bmU -bmU -bmU -bmU -bmU -bmU -mRp -aeJ -dft -tUK -rnY -hMN -mKi -isd -sSJ -ckF -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU wQG wQG @@ -34862,135 +21693,135 @@ bmU bmU bmU bmU -bmU -xqm -eEc -eEc -bHL -mLp -eQl -gtb -nqn -vSr -qMa -atT -fbF -gGz -cOl -lmL -xmZ -jam -btJ -eEc +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU -bmU -lLO +qPO bmU bmU bmU bmU bmU bmU -hHg -bPt -fAM -kdA -rNM -mWc -iGN -vqb -haW -nmq -lxQ -qSq -bmU -iUL -ksA -bzy -kCA -iZB -wCJ -hqk -gyB -rAb -dme -sJc -xNk -xNk +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU +qPO bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -cvQ -cZP -cZP -buI -vxJ -hLD -cZP -cZP -cZP -bmU -dpB -dpB -dpB -bmU -bmU -hfN -obv -bqv -hvF -xrV -oPp -qES -cgk -jCx -jCx -bmU -bmU -bmU -lLO -bmU -bmU -xWe -sIC -fHd -wPj -isd -lys -wPj -uRf -eFK -ckF -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU wQG wQG @@ -35056,133 +21887,133 @@ bmU bmU bmU bmU -bmU -kXr -eEc -eEc -bHL -mLp -wbh -sNB -rSi -iVe -qMa -kGN -miI -ctX -nWJ -yeS -phd -alo -btJ -eEc -bmU -bmU -bmU -bmU -lLO -bmU -bmU -bmU -bmU -bmU -bmU -hHg -iEK -iEK -nOq -ahn -nLu -eVa -nnS -gDn -jxb -qYA -qSq -bmU -iUL -uRF -bzy -wzR -olH -fXM -nLk -hXj -tEd -uIN -xvf -xNk -sDH -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -cvQ -cZP -cZP -cZP -hpZ -cZP -cZP -cZP -cZP -bmU -dpB -dpB -dpB -bmU -bmU -hfN -auq -vaa -gGx -dFz -ddY -iQC -tmY -jCx -jCx +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU lLO bmU bmU -xWe -fVM -mVR -sav -isd -xSY -sav -isd -tDA -ckF +bmU +bmU +bmU +bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +bmU +bmU +bmU +lLO +bmU +bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -35250,133 +22081,133 @@ bmU bmU bmU bmU -bmU -dDv -eEc -eEc -bHL -mLp -wbh -rnU -nqn -iVe -qMa -aLo -xKi -evF -xKi -rkv -bvL -bMO -btJ -eEc -bmU -bmU -bmU -bmU -lLO -bmU -bmU -bmU -bmU -bmU -bmU -hHg -iEK -sax -bBl -blJ -nLu -jTu -lQs -que -hgg -jsT -qSq -bmU -iUL -iUL -lMk -iUL -iUL -iUL -iUL -xNk -xNk -xNk -xNk -xNk -vPK -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -cvQ -cZP -cZP -cZP -cZP -cZP -cZP -cZP -cZP -bmU -dpB -dpB -dpB -bmU -bmU -lRq -czA -lRq -bkN -lRq -lRq -fZK -tIK -jCx -jCx +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU lLO bmU bmU -xWe -rAZ -snS -wPj -uRf -lys -wPj -isd -tDA -ckF +bmU +bmU +bmU +bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +bmU +bmU +bmU +lLO +bmU +bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -35444,27 +22275,27 @@ bmU bmU bmU bmU -bmU -xqm -eEc -eEc -kyA -gGz -gGz -ios -fgR -gGz -gGz -xga -xga -gGz -kcE -gGz -mnX -gGz -gGz -gGz -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -35475,18 +22306,32 @@ bmU bmU bmU bmU -hHg -fmR -ffU -lUS -cco -nLu -cLY -rUb -qTI -gAT -wDu -nLu +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -35525,52 +22370,38 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -nxk -dpB -dpB -dpB -nxk -bmU -dGi -bwd -kEb -rkL -tGh -lRq -qjw -gni -jCx -jCx +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU lLO bmU bmU -ckF -tVO -dft -cLb -kcL -bFi -xAG -isd -tDA -ckF +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -35638,27 +22469,27 @@ bmU bmU bmU bmU -bmU -xqm -eEc -gGz -gGz -qIG -mCP -sNB -ylA -lbs -jjW -uei -wgQ -trL -ndE -wUq -cDP -bNN -axL -gGz -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -35669,32 +22500,32 @@ bmU bmU bmU bmU -hHg -fmR -iYj -vxl -rQB -nLu -nLu -nLu -nLu -nLu -nLu -nLu -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -35733,38 +22564,38 @@ bmU bmU bmU bmU -nxk -lMW -lMW -lMW -nxk -bmU -lRq -gMi -sWq -eHb -hkJ -rUw -xzq -vrW -jCx -jCx +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU lLO bmU bmU -ckF -yiI -aJU -aJU -blF -lPt -mEQ -aJU -dqm -ckF +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -35832,27 +22663,27 @@ bmU bmU bmU bmU -bmU -xqm -eEc -kyA -gGz -sZG -dkY -xTA -xbU -ios -pCL -wyC -xwL -ipY -qFp -gMO -jby -byw -hJR -gGz -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -35863,32 +22694,32 @@ bmU bmU bmU bmU -hHg -iEK -bDX -lIg -enc -jdF -jKf -cej -ejH -anS -mfh -fHt -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU lLO @@ -35927,38 +22758,38 @@ bmU bmU bmU bmU -nxk -lMW -lMW -lMW -nxk -bmU -iOE -mLD -wxy -mki -szx -rHM -lCZ -gaV -jCx -jCx +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU lLO bmU bmU -ckF -ckF -ckF -ckF -ckF -ckF -ckF -ckF -ckF -ckF +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -36026,27 +22857,27 @@ bmU bmU bmU bmU -bmU -xqm -eEc -eoE -gGz -gGz -oPA -vNY -jIx -gGz -vTc -vTc -vTc -vTc -gGz -bBv -isg -pCa -gGz -gGz -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -36057,18 +22888,18 @@ bmU bmU bmU bmU -hRC -iEK -iEK -iEK -iEK -iEK -sYx -aOP -ejH -ejH -ejH -ejH +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -36121,22 +22952,22 @@ bmU bmU bmU bmU -nxk -nxk -nxk -nxk -nxk -bmU -gxe -sBb -aBg -nvr -uIL -knf -qQU -rvD -jCx -jCx +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -36220,27 +23051,27 @@ bmU bmU bmU bmU -bmU -tdi -bjX -eEc -eEc -kyA -gGz -gGz -gGz -gGz -cza -cza -cza -jaI -qxT -jVO -vTc -rMR -iEu -eoE -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU lLO @@ -36251,6 +23082,18 @@ bmU bmU bmU bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -36261,28 +23104,16 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -isG -isG -isG -isG +oPU +oPU +oPU +oPU lLO lLO -isG -isG -isG -isG +oPU +oPU +oPU +oPU lLO lLO lLO @@ -36315,22 +23146,22 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -lRq -rgE -cqm -jBc -iwo -piU -rnV -kyB -jCx -jCx +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU lLO @@ -36414,27 +23245,27 @@ bmU bmU bmU bmU -bmU -flA -iwx -iBM -ayK -iWa -cOc -iwx -jsq -sPG -uzM -uzM -bUX -uzM -agQ -uzM -gnz -njQ -uzM -sdX -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU lLO @@ -36464,19 +23295,19 @@ bmU bmU bmU bmU -isG -isG -isG -isG -xix -xix -isG -isG -isG -isG -fDP -fDP -isG +oPU +oPU +oPU +oPU +bDO +bDO +oPU +oPU +oPU +oPU +uYz +uYz +oPU lLO lLO lLO @@ -36491,8 +23322,8 @@ lLO lLO lLO cBZ -lFw -wfz +hHj +vSw cBZ cBZ cBZ @@ -36509,22 +23340,22 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -dGi -ifj -ckU -lGS -nio -lRq -jmA -lRq -jCx -jCx +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU lLO @@ -36655,22 +23486,22 @@ bmU bmU bmU bmU -isG -isG -isG -isG -xix -xix -isG -isG -isG -isG -fDP -fDP -fDP -fDP -fDP -isG +oPU +oPU +oPU +oPU +bDO +bDO +oPU +oPU +oPU +oPU +uYz +uYz +uYz +uYz +uYz +oPU lLO lLO vJy @@ -36686,14 +23517,14 @@ lLO lLO cBZ rEB -tyq +vVr bqZ -etS -mTx -cZP -cZP -cZP -cZP +sZa +sEf +iKd +iKd +iKd +iKd mOB mOB cZP @@ -36846,25 +23677,25 @@ bmU bmU bmU bmU -isG -isG -isG -isG -xix -xix -isG -isG -isG -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +oPU +oPU +oPU +oPU +bDO +bDO +oPU +oPU +oPU +oPU +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +oPU lLO lLO vJy @@ -36880,15 +23711,15 @@ lLO lLO cBZ fxW -tyq +vVr rnD ogG tPj bBN -jrX +vIA sZh -cZP -cZP +iKd +iKd cZP cZP mOB @@ -37037,28 +23868,28 @@ bmU bmU bmU bmU -isG -isG -isG -isG -xix -xix -isG -isG -isG -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +oPU +oPU +oPU +oPU +bDO +bDO +oPU +oPU +oPU +oPU +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +oPU lLO lLO vJy @@ -37074,15 +23905,15 @@ lLO lLO cBZ yek -tyq -ogG -rRx -usD -vxj -tlj +vVr +xOm +okA +xJV +fWp +nwG jnc vLX -cZP +iKd cZP cZP cZP @@ -37231,28 +24062,28 @@ bmU aBR aBR aBR -isG -xix -xix -isG -isG -isG -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +oPU +bDO +bDO +oPU +oPU +oPU +oPU +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +oPU lLO lLO oeA @@ -37269,14 +24100,14 @@ lLO cBZ eDR tgB -uNq +ebc pCW -cBZ -cZP +sVe +iKd hdz jnc fSM -cZP +iKd oeC oeC oeC @@ -37412,41 +24243,41 @@ lLO lLO lLO lLO -aBR -aBR -mnC -mnC -mnC -mnC -mnC -mnC -mnC -aBR -aBR -mqS -mqS -isG -isG -isG -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +ovz +ovz +iZI +iZI +iZI +iZI +iZI +iZI +iZI +ovz +ovz +rJs +rJs +oPU +oPU +oPU +oPU +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +oPU lLO lLO oeA @@ -37461,11 +24292,11 @@ jch lLO lLO cBZ -cBZ +sVe lLS -dBA +vIq jtz -cBZ +sVe uFv kai jnc @@ -37475,13 +24306,13 @@ oeC oeC oeC oeC -cZP -aBR -aBR -aBR -aBR -aBR -aBR +iKd +uMn +uMn +uMn +uMn +uMn +uMn mqS mqS aBR @@ -37494,7 +24325,7 @@ aBR aBR aBR aBR -aBR +btn lLO lLO lLO @@ -37606,41 +24437,41 @@ lLO lLO lLO lLO -aBR -eEc -eEc -eEc -eEc -eEc -eEc -eEc -eEc -eEc -aBR -aBR -aBR -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +ovz +bJT +bJT +bJT +bJT +bJT +bJT +bJT +bJT +bJT +ovz +ovz +ovz +oPU +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +oPU lLO lLO oeA @@ -37657,9 +24488,9 @@ lLO rPq hoS tWe -wXW +wjk mvr -rPq +qot tDi ovX jnc @@ -37669,26 +24500,26 @@ oeC oeC oeC oeC -cZP +iKd dpB dpB dpB dpB dpB -aBR -aBR -aBR -aBR -dpB -dpB -dpB -dpB -dpB -dpB -dpB -feu -dpB -aBR +uMn +uMn +uMn +uMn +uMn +oFr +oFr +oFr +oFr +uGa +uGa +uGa +uGa +btn lLO lLO lLO @@ -37800,41 +24631,41 @@ lLO lLO lLO lLO -aBR -eEc -eEc -eEc -wJm -pby -pby -wJm -eEc -eEc -eEc -xKi -xKi -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +ovz +bJT +bJT +bJT +jcB +iMl +iMl +jcB +bJT +bJT +bJT +riq +riq +oPU +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +oPU lLO lLO vJy @@ -37851,19 +24682,19 @@ lLO rPq kuK tJW -gFu +sOK jQS -rPq +qot qDZ vQP eYC bTt -cZP +iKd oeC oeC oeC oeC -cZP +iKd dpB dpB dpB @@ -37873,16 +24704,16 @@ dpB dpB dpB dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -etv +uMn +oFr +oFr +oFr +oFr +uGa +uGa +uGa +uGa +btn lLO lLO lLO @@ -37994,41 +24825,41 @@ lLO lLO lLO lLO -aBR -eEc -eEc -wJm -wJm -fCZ -xFw -wJm -wJm -eEc -eEc -xKi -xKi -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +ovz +bJT +bJT +jcB +jcB +jEm +dOj +jcB +jcB +bJT +bJT +riq +riq +oPU +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +uYz +uYz +oPU lLO lLO vJy @@ -38045,19 +24876,19 @@ lLO rPq una tJW -gFu +sOK udq -rPq -cZP +qot +iKd nzi nzi -cZP -cZP -cZP -cZP -cZP -cZP -cZP +iKd +iKd +iKd +iKd +iKd +iKd +iKd dpB dpB dpB @@ -38067,16 +24898,16 @@ dpB dpB dpB dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -etv +uMn +oFr +oFr +oFr +oFr +aBR +bCn +bCn +bCn +btn lLO lLO lLO @@ -38188,41 +25019,41 @@ lLO lLO lLO lLO -aBR -eEc -eEc -qcx -gtC -kDi -kDi -uWE -qcx -eEc -eEc -xKi -xKi -qKe -dLE -dLE -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +ovz +bJT +bJT +gwf +xQc +jIe +jIe +skg +gwf +bJT +bJT +riq +riq +vdN +pwO +pwO +pwO +pwO +pwO +pwO +pwO +pwO +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +oPU lLO lLO vJy @@ -38237,11 +25068,11 @@ jch lLO lLO rPq -lQG -tJW -gFu +hlb +fLR +sOK jXb -rPq +qot oxz dRw esd @@ -38261,16 +25092,16 @@ dpB dpB dpB dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -feu -dpB -etv +uMn +oFr +oFr +oFr +oFr +mTt +lMW +lMW +lMW +btn lLO lLO lLO @@ -38382,41 +25213,41 @@ lLO lLO lLO lLO -aBR -eEc -eEc -qcx -nGD -eYB -xrI -xvm -qcx -eEc -eEc -xKi -xKi -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +ovz +bJT +bJT +gwf +pvu +dyp +fEq +eJi +gwf +bJT +bJT +riq +riq +oPU +uYz +uYz +uYz +uYz +uYz +uYz +uYz +pwO +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +oPU lLO lLO oeA @@ -38431,9 +25262,9 @@ jch lLO lLO rPq -mqU +sqC tJW -gFu +sOK glV pGe dpB @@ -38455,16 +25286,16 @@ dpB dpB dpB dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -etv +uMn +oFr +oFr +oFr +oFr +mTt +lMW +lMW +lMW +btn lLO lLO lLO @@ -38576,41 +25407,41 @@ lLO lLO lLO lLO -aBR -eEc -eEc -qcx -nhf -sle -otu -aPa -qcx -eEc -eEc -xKi -xKi -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +ovz +bJT +bJT +gwf +cnJ +xOk +igQ +lBr +gwf +bJT +bJT +riq +riq +oPU +wyy +wyy +wyy +wyy +wyy +wyy +uYz +pwO +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +oPU lLO lLO oeA @@ -38627,7 +25458,7 @@ lLO rPq fox tJW -gFu +sOK aZQ pGe dpB @@ -38649,16 +25480,16 @@ dpB dpB dpB dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -aBR +uMn +oFr +oFr +oFr +oFr +mTt +lMW +lMW +lMW +btn lLO lLO lLO @@ -38770,42 +25601,42 @@ lLO lLO lLO lLO -aBR -eEc -eEc -aOe -wJm -kTx -bOq -wJm -aOe -eEc -eEc -xKi -xKi -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG -isG +ovz +bJT +bJT +veU +jcB +jHq +gcZ +jcB +veU +bJT +bJT +riq +riq +oPU +uYz +uYz +uYz +uYz +uYz +wyy +uYz +pwO +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +uYz +wyy +wyy +wyy +oPU +oPU lLO vJy apD @@ -38821,7 +25652,7 @@ jny rPq fox tJW -gFu +sOK osD rPq tqx @@ -38843,16 +25674,16 @@ dpB dpB dpB dpB -dpB -dpB -dpB -dpB -dpB -dpB -aBR -aBR +uMn +uGa aBR +mTt +mTt aBR +lMW +lMW +lMW +btn lLO lLO lLO @@ -38964,42 +25795,42 @@ lLO lLO lLO lLO -aBR -eEc -eEc -vRS -uyC -hSG -fPg -uyC -scu -eEc -eEc -xKi -xKi -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +ovz +bJT +bJT +bJN +xzy +tSd +vVJ +xzy +tgS +bJT +bJT +riq +riq +oPU +uYz +uYz +uYz +uYz +uYz +wyy +wyy +vdN +wyy +wyy +wyy +uYz +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +uYz +oPU lLO vJy apD @@ -39015,19 +25846,19 @@ jny gdi fvI tJW -jov +riS vDb rLF nSu xKi xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi +dpB +dpB +dpB +dpB +dpB +dpB +dpB dpB dpB dpB @@ -39037,16 +25868,16 @@ nxk dpB dpB dpB -dpB -dpB -dpB -dpB -dpB -dpB -aBR -hKx -hKx -gra +uMn +uGa +lMW +lMW +lMW +lMW +lMW +lMW +lMW +btn lLO lLO lLO @@ -39158,42 +25989,42 @@ lLO lLO lLO lLO -aBR -eEc -eEc -xpD -qlI -gAS -otu -uyC -udi -eEc -hOW -xKi -xKi -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fUC +ovz +bJT +bJT +vNx +fak +gcX +igQ +xzy +jvR +bJT +nwr +riq +riq +oPU +uYz +uYz +uYz +uYz +uYz +wyy +uYz +pwO +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +uYz +pyu lLO vJy apD @@ -39209,38 +26040,38 @@ jny siz tEC tDT -dHz -yhA -xrr -shB -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -aBR -aBR -aBR -aBR -hKx -hKx -gra +wfe +dcS +nzG +jGp +lQr +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +fgg +fgg +uMn +uGa +jUd +lMW +lMW +lMW +lMW +lMW +lMW +btn lLO lLO lLO @@ -39302,30 +26133,30 @@ bmU bmU bmU bmU -eBb -nWv -lKw -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv -nWv +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -39352,42 +26183,42 @@ lLO lLO lLO lLO -aBR -eEc -eEc -aOe -wJm -kTx -bOq -wJm -aOe -eEc -eEc -xKi -xKi -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fUC +ovz +bJT +bJT +veU +jcB +jHq +gcZ +jcB +veU +bJT +bJT +riq +riq +oPU +uYz +uYz +uYz +uYz +uYz +wyy +uYz +pwO +uYz +uYz +wyy +uYz +uYz +uYz +uYz +uYz +uYz +wyy +uYz +uYz +uYz +pyu lLO vJy apD @@ -39400,41 +26231,41 @@ apD von lLO tJt -tJt -tJt +qCD +qCD oLZ -tJt +qCD eby -tJt -xKi -xKi -dpB -dpB -dpB -dpB -dpB -dpB -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -aBR -hKx -hKx -hKx -hKx -hKx -gra +qCD +vJv +lQr +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +vJv +fgg +fgg +uMn +uGa +sYi +lMW +lMW +lMW +lMW +lMW +lMW +btn lLO lLO lLO @@ -39496,30 +26327,30 @@ bmU bmU bmU bmU -eBb -wQD -cUk -cUk -cUk -cUk -cUk -cUk -cUk -cUk -cUk -cUk -aBf -snO -rxa -bvA -tzU -tzU -bvA -bCO -cUk -cUk -cUk -cUk +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -39546,42 +26377,42 @@ lLO lLO lLO lLO -aBR -eEc -eEc -iCz -wJm -oax -uuL -wJm -kJL -eEc -eEc -xKi -xKi -isG -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG -isG -isG -isG -isG -fDP -fUC +ovz +bJT +bJT +swk +jcB +diu +cVg +jcB +pen +bJT +bJT +riq +riq +oPU +uYz +uYz +uYz +uYz +uYz +wyy +uYz +pwO +uYz +uYz +wyy +wyy +wyy +wyy +wyy +joZ +joZ +joZ +joZ +joZ +uYz +pyu lLO vJy apD @@ -39600,35 +26431,35 @@ qgf aou itv iac -xKi -xKi -dpB -dpB -dpB -dpB -dpB -cpr -uwW -uwW -kxc -vPm -vPm -vPm -vPm -vPm -vPm -vPm -vPm -vPm -gCL -gCL -mNS -iiw -hKx -hKx -hKx -hKx -gra +vJv +lQr +ogl +ogl +ogl +ogl +idb +idb +ogl +ogl +ogl +ogl +ogl +cQb +gxY +gxY +gxY +dxU +fgg +uMn +uGa +sYi +lMW +lMW +lMW +lMW +lMW +lMW +btn lLO lLO lLO @@ -39690,30 +26521,30 @@ bmU bmU bmU bmU -eBb -wQD -cUk -cUk -cUk -cUk -cUk -sag -uet -bvA -juo -bvA -bvA -bvA -oBZ -xbh -xbh -xbh -jCI -sxj -gvz -qba -cUk -cUk +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -39740,19 +26571,19 @@ lLO lLO lLO lLO -aBR -eEc -eEc -hpm -qcx -xxJ -owU -qcx -cLh -eEc -eEc -xKi -xKi +ovz +bJT +bJT +nZF +gwf +xch +xcw +gwf +dYP +bJT +bJT +riq +riq tim egZ egZ @@ -39760,22 +26591,22 @@ egZ egZ egZ egZ -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -eXL -xSn -uON -uON -isG -fDP -fUC +uYz +pwO +uYz +uYz +wyy +uYz +uYz +uYz +pwO +fQI +tAj +mEw +mEw +joZ +uYz +pyu lLO vJy apD @@ -39789,40 +26620,40 @@ jch lLO tJt cyQ -sAm -mRM -mRM -mRM -igC -xKi -xKi -dpB -dpB -dpB -dpB -dpB -dpB -xKi -vJv -whV +jtU +ohL +ohL +ohL +hMD +lQr +lQr +ogl +rXs +rXs +dgp +jxY +jxY rUU khH khH dsB -aBR -pYI -aBR -aBR -aBR -aBR -aBR -aBR -iiw -hKx -nwB -nwB -nwB -boy +ogl +vJv +sJp +xGQ +sYj +xGQ +cxT +uMn +cjx +btn +btn +btn +btn +jBk +jBk +jBk +jBk lLO lLO lLO @@ -39884,30 +26715,30 @@ bmU bmU bmU bmU -eBb -wQD -cUk -cUk -cUk -bIr -pkB -cHk -oBZ -qdB -krs -hvL -kKQ -cGt -dvX -fIN -nWI -fIN -nuf -sxj -bvA -gvz -qba -cUk +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -39934,19 +26765,19 @@ lLO lLO lLO lLO -aBR -eEc -eEc -nhC -wJm -mzb -mZk -wJm -tQE -eEc -eEc -xKi -xKi +ovz +bJT +bJT +fBp +jcB +qkD +qqI +jcB +eEX +bJT +bJT +riq +riq tim owQ kBV @@ -39954,22 +26785,22 @@ fjW cym azB egZ -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG -isG -isG -isG -isG -fDP -fUC +uYz +pwO +uYz +uYz +wyy +uYz +uYz +uYz +pwO +joZ +joZ +joZ +joZ +joZ +uYz +pyu lLO oeA apD @@ -39983,40 +26814,40 @@ jch lLO tJt dPZ -jjK +cNI nsq peT jkh -tJt -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -xKi +qCD vJv -whV +lQr +ogl +rXs +dVH +dft +jxY +jxY alY wPj wPj bGk -aBR -lMW -aBR -hKx -hKx -hKx -hKx -hKx -iiw -hKx -nwB +ogl +vJv +sJp +xGQ +sGy +wbO +nOl +nOl +nOl +kRe +kij +kij +kij +jBk srO gXp -boy +jBk lLO lLO lLO @@ -40078,30 +26909,30 @@ bmU bmU bmU bmU -eBb -wQD -cUk -cGt -pkB -nuM -cGt -qdB -sxI -tbG -ujQ -ujQ -vjp -cGt -wZk -ujQ -ujQ -llJ -pkB -qcg -fro -pkB -pkB -hRh +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -40128,19 +26959,19 @@ lLO lLO lLO lLO -aBR -eEc -eEc -aOe -xzV -huD -dJL -hzw -aOe -eEc -eEc -xKi -xKi +ovz +bJT +bJT +veU +fGB +qYi +ntk +cQH +veU +bJT +bJT +riq +riq tim spk umB @@ -40148,22 +26979,22 @@ uoe yga fjW egZ -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +uYz +pwO +uYz +uYz +wyy +uYz +uYz +uYz +pwO +wyy +uYz +uYz +uYz +wyy +kOz +oPU lLO oeA apD @@ -40177,40 +27008,40 @@ jch lLO tJt isN -rGu +sGW vlC amx pcu cUx -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -xKi -wFj -cyV +vJv +lQr +ogl +lbc +dft +dft +jpb +jpb tQB bdd bdd rOA -aBR -lMW -aBR -hKx -hKx -hKx -hKx -hKx -iiw -hKx -nwB +ogl +vJv +sQu +xGQ +sGy +wbO +nOl +kij +kij +kRe +kij +kij +kij +jBk srO gXp -boy +jBk lLO lLO lLO @@ -40272,30 +27103,30 @@ bmU bmU bmU bmU -eBb -wQD -cGt -cGt -pkB -adE -whG -atN -pPD -atN -ujQ -iBH -qmX -cGt -bim -ujQ -ujQ -gZh -cGt -spT -ezU -crc -dXa -fyY +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -40322,19 +27153,19 @@ lLO lLO lLO lLO -aBR -eEc -eEc -wJm -mBY -rHQ -mBY -rHQ -wJm -eEc -eEc -xKi -xKi +ovz +bJT +bJT +jcB +ldj +ukm +ldj +ukm +jcB +bJT +bJT +riq +riq tim kpX umB @@ -40342,22 +27173,22 @@ umH nGZ qek egZ -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +iAC +kyq +kyq +kyq +kyq +kyq +kyq +kyq +kyq +kyq +kyq +kyq +kyq +kyq +kyq +oPU lLO oeA apD @@ -40371,40 +27202,40 @@ von lLO tJt cSh -jOY +xAO unR tjI ufm -tJt -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -xKi +qCD vJv -aeQ +lQr +ogl +hMB +dft +dft +jpb +jpb alY wPj wPj -bGk -aBR -lMW -aBR -hKx -hKx -hKx -hKx -hKx -gra -gra -nwB -srO -gXp -boy +cos +ogl +vJv +sJp +xGQ +sGy +wbO +nOl +kij +kij +kRe +kij +kij +kij +jBk +oih +oih +jBk lLO lLO lLO @@ -40466,30 +27297,30 @@ bmU bmU bmU bmU -eBb -wQD -pkB -pkB -bEQ -fGL -iqv -dUB -ujQ -uwH -ujQ -xYp -oIG -pkB -cGt -lne -pqa -whG -pkB -aMK -oOM -stL -kZi -fyY +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -40516,42 +27347,42 @@ lLO lLO lLO lLO -aBR -eEc -eEc -eEc -mBY -mBY -mBY -mBY -eEc -eEc -eEc -xKi -xKi +ovz +bJT +bJT +bJT +ldj +ldj +ldj +ldj +bJT +bJT +bJT +riq +riq tim -umB -umB +nGm +nGm umB pcd umB egZ -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -isG +ltc +kyq +uYz +uYz +wyy +uYz +uYz +uYz +uYz +wyy +uYz +uYz +uYz +uYz +kyq +oPU lLO oeA apD @@ -40564,41 +27395,41 @@ apD von lLO tJt -jec -qgf -xDw +pxs +wkY +uKN wHz jzJ cUx -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -xKi vJv -whV +lQr +ogl +lbc +dft +dft +jpb +jpb fvj dft dft aZm -aBR -aBR -aBR -hKx -hKx -hKx -hKx -hKx -iiw -hKx -nwB -lTa -lTa -boy +ogl +eMT +tnz +xGQ +xGQ +wbO +ftC +kRe +kRe +kRe +kij +kij +kij +jBk +alN +alN +jBk lLO lLO lLO @@ -40660,30 +27491,30 @@ bmU bmU bmU bmU -eBb -wQD -veP -mMv -pmd -kht -cct -tID -eLC -eLC -eLC -eLC -bSh -abG -iPw -ujQ -shs -vIj -itU -mBX -bkz -uUL -uUL -ccu +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -40710,42 +27541,42 @@ lLO lLO lLO lLO -aBR -eEc -udy -eEc -eEc -eEc -eEc -eEc -eEc -eEc -eEc -xKi -xKi +ovz +bJT +mmw +bJT +bJT +bJT +bJT +bJT +bJT +bJT +bJT +riq +riq tim nBE -umB +nGm umB umB umB egZ -tdF -pQD -tdF -tdF -tdF -tdF -tdF -tdF -tdF -tdF -fDP -tdF -tdF -fDP -fDP -isG +wyy +tZN +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +uYz +wyy +wyy +uYz +kyq +oPU lLO vJy apD @@ -40759,39 +27590,39 @@ von lLO tJt vYK -tJt -tJt -tJt -tJt -tJt -dpB -dpB -dpB -dpB -dpB -dpB -mDY -dpB -xKi +qCD +qCD +qCD +qCD +qCD +eMT +dDn +ogl +rXs +oEF +dft +jxY +nUG +utf +wmH +wmH +fzx +ogl vJv -whV -fvj -dft -dft -aZm -aBR -hKx -hKx -hKx -hKx -hKx -hKx -hKx -iiw -hKx +sJp +xGQ +kij +kij +nOl +kij +kRe +kij +kij +kij +kij nwB -jPd -oUn +pal +pQm boy lLO lLO @@ -40854,30 +27685,30 @@ bmU bmU bmU bmU -eBb -wQD -veP -hLe -mNP -ujQ -hKk -ujQ -bVw -cUW -rNJ -bVw -ujQ -ujQ -ujQ -ujQ -ujQ -gqq -iAb -cHe -pyn -sAD -qba -cIx +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -40904,42 +27735,42 @@ lLO lLO lLO lLO -aBR -eEc -eEc -eEc -eEc -eEc -eEc -aBR -mTt -mTt -aBR -eCp -wVx +ovz +bJT +bJT +bJT +bJT +bJT +bJT +ovz +cbf +cbf +ovz +hky +gJU tim egZ -fcP +beR khr khr egZ egZ -uoM -uoM -uoM -tdF -pZl -nDa -qCi -qCi -tdF -fDP -fDP -fDP -tdF -fDP -fDP -isG +tai +jxN +tai +wyy +bdb +jLH +tSm +tSm +wyy +uYz +uYz +uYz +wyy +uYz +kyq +oPU lLO vJy apD @@ -40957,35 +27788,35 @@ noW noW noW noW -jny -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -xKi +xGQ vJv -vVg +lQr +ogl +rXs +rXs +fHw +jxY +nUG ygA vtL xLH jRG -aBR -hKx -hKx -hKx -hKx -hKx -hKx -hKx -iiw -hKx +ogl +vJv +sJp +xGQ +kij +kij +nOl +kij +kRe +kRe +kRe +pOh +kRe nwB -qjs -rXf +kWi +eRN rgs lLO lLO @@ -41048,30 +27879,30 @@ bmU bmU bmU bmU -eBb -wQD -vQT -eYe -aBS -kht -cct -kZE -gUD -gUD -gUD -gUD -gvF -sBC -bmi -ujQ -gFt -mQy -itU -mhG -wFf -pkB -pkB -bJQ +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -41098,42 +27929,42 @@ lLO lLO lLO lLO -aBR -eEc -eEc -eEc -eEc -eEc -eEc -mTt +ovz +bJT +bJT +bJT +bJT +bJT +bJT +cbf lMW lMW -mTt -xKi -mBV +cbf +riq +pDr lNy dRQ -vUX +gyO eTp eTp vUX kTs -uoM -uoM -vbh -fUC -tlY -dtD -qCi -xIz -tdF -fDP -fDP -fDP -tdF -fDP -fDP -isG +tai +jxN +vze +pyu +ndV +fxL +tSm +bNz +wyy +uYz +uYz +uYz +wyy +uYz +kyq +oPU lLO vJy apD @@ -41151,35 +27982,35 @@ noW noW noW sUR -vNd -dpB -dpB -dpB -dpB -dpB -dpB -dpB -dpB -xKi +cxT vJv -whV -wwF -wwF -wwF -wwF -wwF -hKx -hKx -hKx -hKx -hKx -hKx -hKx -iiw -hKx +lQr +ogl +ogl +ogl +ogl +idb +lnR +ogl +ogl +ogl +ogl +ogl +vJv +sJp +xGQ +kij +kij +nOl +kij +kRe +kij +kij +kij +kij nwB -qjs -rXf +whm +pgT rgs lLO lLO @@ -41242,30 +28073,30 @@ bmU bmU bmU bmU -eBb -wQD -pkB -pkB -cgG -okj -cct -tUs -ujQ -ihd -ujQ -oDh -eWR -pkB -cGt -cWK -xXN -whG -pkB -aMK -hvV -crc -dXa -fyY +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -41292,42 +28123,42 @@ lLO lLO lLO lLO -aBR -eEc -eEc -eEc -eEc -eEc -eEc -mTt +ovz +bJT +bJT +bJT +bJT +bJT +bJT +cbf lMW lMW -mTt -xKi -mBV +cbf +riq +pDr lNy woI -vUX -vUX -vUX -vUX -xKd -uoM -uoM -uoM -eWb -tlY -mnD -qCi -tlY -tdF -fDP -vfa -fDP -tdF -fDP -fDP -isG +gyO +gyO +gyO +gyO +ozJ +jxN +jxN +jxN +gmr +ndV +uHi +tSm +dpc +wyy +uYz +tzX +uYz +wyy +uYz +kyq +oPU lLO vJy apD @@ -41345,35 +28176,35 @@ noW noW noW sUR -jny -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi +xGQ vJv -iAn -gxY -gxY -gxY -pvz -wwF -hKx -hKx -hKx -hKx -hKx -hKx -iiw -iiw -hKx +lQr +vJv +vJv +vJv +vJv +vJv +lQr +vJv +vJv +eMT +vJv +vJv +vJv +sQu +xGQ +kij +kij +nOl +kij +kRe +kij +kij +kij +kij nwB -qjs -rXf +kWi +eRN rgs lLO lLO @@ -41436,30 +28267,30 @@ bmU bmU bmU bmU -eBb -wQD -cGt -cGt -pkB -ibB -whG -rMA -pPD -rMA -ujQ -nIW -eey -cGt -czc -ujQ -uLu -uLu -cGt -jZQ -neb -stL -kZi -fyY +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -41486,42 +28317,42 @@ wJm wJm wJm lLO -aBR -aBR -aBR -mTt -mTt -mTt -aBR -brg +ovz +ovz +ovz +cbf +cbf +cbf +ovz +nMe hMl hMl -wcE -iXZ -fDI +mZp +vqN +bBH lNy tQp -vUX +gyO fjn fjn vUX kTs -uoM -uoM -vbh -fUC -tlY -tlY -tlY -tlY -tdF -fDP -fDP -fDP -tdF -fDP -fDP -isG +tai +tai +vze +pyu +ndV +dpc +dpc +dpc +wyy +uYz +uYz +uYz +wyy +uYz +kyq +oPU lLO vJy apD @@ -41539,35 +28370,35 @@ noW noW noW sUR -jny -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi -xKi +xGQ vJv +lQr +lQr +lQr +lQr +lQr +lQr +lQr +lQr vJv +eMT vJv vJv vJv whV cxT -iiw -iiw -hKx -hKx -hKx -hKx -iiw -hKx -hKx -nwB -qjs -rXf +nOl +nOl +nOl +nOl +ftC +nOl +nOl +nOl +nOl +pLJ +kWi +eRN rgs lLO lLO @@ -41630,30 +28461,30 @@ bmU bmU bmU bmU -eBb -wQD -cUk -cGt -pkB -xxM -cGt -qQL -uuA -tbG -ujQ -ujQ -vjp -cGt -okU -ujQ -ujQ -ppm -pkB -qcg -kPG -pkB -pkB -ccu +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -41695,16 +28526,16 @@ qwr utj nLu nLu -lfq +vZt qSq qSq nLu nLu -wXo -uoM +oSp +tai iUL iUL -gts +qdS iUL iUL iUL @@ -41713,9 +28544,9 @@ xNk xNk xNk xNk -fDP -fDP -isG +uYz +kyq +oPU lLO vJy apD @@ -41733,35 +28564,35 @@ noW noW noW sUR -jny -jny -gCL -gCL -gCL -xKi -xKi -gCL -big -odd -big -big -big -big +xGQ +xGQ +vJv +vJv +sJp +vJv +vJv +sJp +nIe +kGt +nIe +nIe +nIe +nIe vJv whV -wwF -hKx -ujz -hKx -hKx -hKx -iiw -iiw -hKx -hKx +xGQ +kij +iAT +nOl +kij +kRe +kij +kij +kij +kij nwB -qjs -rXf +tQs +bZY rgs lLO lLO @@ -41824,30 +28655,30 @@ bmU bmU bmU bmU -eBb -wQD -cUk -cUk -cUk -bIr -pkB -kYy -mXe -qQL -uVJ -pdE -nAf -cGt -bOT -ujQ -ujQ -ujQ -qER -sxj -bvA -gvz -qba -cIx +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -41889,16 +28720,16 @@ lBm aVt nLu ghU -oWl +ceY oWl oWl oWl nLu -uoM -uoM +tai +tai iUL aqK -rUh +jML amv lZc thD @@ -41907,9 +28738,9 @@ mKp cAl iFc xNk -fDP -dLE -isG +uYz +kyq +oPU lLO vJy apD @@ -41928,34 +28759,34 @@ noW noW sUR noW -jny -gCL -gCL -gCL -xKi -xKi -gCL -big -tYS +xGQ +vJv +vJv +sJp +vJv +vJv +sJp +nIe +iTv syo tYS tYS -big +nIe ocX vVg -wwF -wTK -wTK -hKx -hKx -hKx -iiw -hKx -hKx -hKx +xGQ +kRe +kRe +nOl +kij +kRe +kij +kij +kij +kij nwB -lYk -etR +jHs +wRf boy lLO lLO @@ -42018,30 +28849,30 @@ bmU bmU bmU bmU -eBb -wQD -cUk -cUk -cUk -cUk -cUk -rsK -ldx -bvA -aJy -bvA -bvA -bvA -mXe -cgP -mNz -tQz -sAx -sxj -gvz -qba -cUk -cIx +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -42082,17 +28913,17 @@ aBR qwr qwr nLu -oWl -oWl +ceY +ceY oWl dUW oWl nLu -uoM -uoM +tai +tai iUL ksA -wzR +gqK fZn sft hqk @@ -42102,8 +28933,8 @@ nrD sJc xNk xNk -dLE -isG +kyq +oPU lLO vJy apD @@ -42122,34 +28953,34 @@ edq edq sUR noW -jny -gCL -gCL -gCL -xKi -xKi -gCL -big -dYf +xGQ +vJv +vJv +sJp +vJv +vJv +sJp +nIe +vql szT tYS tYS -big +nIe vJv -rJz -wwF -hKx -iiw -iiw -iiw -iiw -iiw -hKx -hKx -hKx +whV +xGQ +kij +nOl +nOl +kij +kRe +kij +kij +kij +kij nwB -gFB -rXf +fxM +eMv boy lLO lLO @@ -42212,30 +29043,30 @@ bmU bmU bmU bmU -eBb -wQD -cUk -cUk -cUk -cUk -cUk -cUk -cUk -cUk -cUk -cUk -aBf -fJv -iKC -sAr -ffH -ffH -sAr -spM -cUk -cUk -cUk -cIx +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -42282,11 +29113,11 @@ tFr avO gvh nLu -uoM -uoM +tai +tai iUL nLj -wzR +gqK dhu dhu dqF @@ -42296,8 +29127,8 @@ lfd vUw jlB xNk -dLE -isG +kyq +oPU lLO lLO ewo @@ -42316,34 +29147,34 @@ osi edq sUR noW -jny -gCL -gCL -gCL -ihD -ihD -gCL -big +xGQ +vJv +vJv +ayA +ocP +ocP +ayA +nIe tYS iNp fFi tYS -big +nIe uoP aeQ -wwF -hKx -iiw -hKx -nwB -nwB -nwB -nwB -nwB -nwB -nwB -xKU -nyT +xGQ +kij +nOl +kij +hRN +hRN +hRN +hRN +hRN +hRN +hRN +fBA +ggJ boy lLO lLO @@ -42361,13 +29192,13 @@ vTH peB dBY bmU -gOa -gOa -gOa -pdG -gOa -gOa -gOa +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -42406,30 +29237,30 @@ bmU bmU bmU bmU -eBb -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -pbQ -hRh +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -42457,8 +29288,8 @@ dpB dpB gBp sde -vda -vda +dcp +dcp mKV auW qwr @@ -42476,22 +29307,22 @@ nqz keY qKB nLu -uoM -uoM +tai +tai iUL xYN -wzR -xfe -wzR -wzR +gqK +oqR +gqK +gqK sRV ggi aiT uhL cnv xNk -dLE -isG +kyq +oPU lLO lLO lLO @@ -42510,32 +29341,32 @@ hmK aAL sUR noW -jny -xKi -xKi -nxk -nxk -nxk -nxk -big -big -oBU -big -big -big +xGQ vJv -whV -wwF -hKx -iiw -hKx -nwB +vJv +ayA +ayA +ayA +ayA +nIe +nIe +oBU +nIe +nIe +nIe +eMT +vPf +xGQ +kij +nOl +kij +hRN boG hlQ -oLo +qDc iiE qjL -oOK +gnB leK ukn rgs @@ -42555,13 +29386,13 @@ vTH peB dBY bmU -nHb -emn -kHN -esB -jyf -fME -hps +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -42651,8 +29482,8 @@ dpB dpB gBp sde -vda -vda +dcp +dcp mKV auW qwr @@ -42670,22 +29501,22 @@ qKB oNl aWt nLu -uoM -uoM +tai +tai iUL -uiF +gTl wzR dhu dhu jIQ hXj -nPr +rMT fCs vUw wFy xNk -agw -isG +jLN +oPU lLO lLO lLO @@ -42704,14 +29535,14 @@ hmK edq sUR noW -jny -xKi -xKi -xKi -xKi -xKi -xKi -xKi +xGQ +vJv +vJv +vJv +vPE +vPE +vPE +vJv vJv ceP vJv @@ -42719,17 +29550,17 @@ vJv vJv vJv whV -wwF -hKx -iiw -hKx -nwB +xGQ +kij +nOl +kij +hRN kDw sJi ciy ukF xcD -mKY +ruS iJo eMv rgs @@ -42749,21 +29580,21 @@ vTH peB dBY bmU -nHb -rLl -xlH -xlH -jyf -fME -hps -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -42864,8 +29695,8 @@ nLu nLu nLu nLu -uoM -uoM +tai +tai iUL ksA wzR @@ -42878,8 +29709,8 @@ dme sJc xNk xNk -dLE -isG +kyq +oPU lLO lLO lLO @@ -42898,14 +29729,14 @@ wYy edq sUR noW -jny -xKi -xKi -xKi -xKi -xKi -xKi -xKi +xGQ +vJv +vJv +vPE +vPE +vPE +vPE +vPE vJv mHM gxY @@ -42913,20 +29744,20 @@ gxY gxY gxY eqB -wwF -hKx -iiw -hKx -nwB -gZA -wZO -nwB +xGQ +kij +nOl +kij +hRN +gnB +cnu +nbK pxD pxD -nwB +hRN oih oih -boy +hRN lLO lLO lLO @@ -42943,21 +29774,21 @@ vTH peB dBY bmU -nHb -xiZ -gsk -xlH -jyf -fME -hps -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -43051,15 +29882,15 @@ utj rKf qwr qwr -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM +tai +tai +tai +tai +tai +tai +tai +tai +tai iUL uRF wzR @@ -43071,9 +29902,9 @@ tEd uIN xvf xNk -fDP -dLE -isG +uYz +kyq +oPU lLO lLO lLO @@ -43092,26 +29923,26 @@ edq edq anH jny -jny -mNS -aBR -xKi -xKi -xKi -xKi -xKi +xGQ +cxT +xGQ +vPE +vPE +vPE +vPE +vPE vJv wwz -wGL -wGL -wGL -wGL -wGL -wGL -hKx -iiw -hKx -nwB +nxa +nxa +nxa +nxa +nxa +fXo +kij +nOl +kij +hRN nRO mXs srO @@ -43120,7 +29951,7 @@ rQY pxD erm erm -boy +hRN lLO lLO lLO @@ -43137,21 +29968,21 @@ vTH peB dBY bmU -gOa -gOa -gOa -gOa -gOa -gOa -gOa -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -43233,8 +30064,8 @@ dpB dpB gBp sde -vda -vda +dcp +dcp mKV auW qwr @@ -43245,15 +30076,15 @@ utj rKf qwr qwr -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM +tai +tai +tai +tai +tai +tai +tai +tai +tai iUL iUL lRN @@ -43265,9 +30096,9 @@ xNk xNk xNk xNk -fDP -dLE -isG +uYz +kyq +oPU iXB iXB lLO @@ -43288,33 +30119,33 @@ ari lAy urI ari -jny -xKi -xKi -xKi -xKi -xKi +xGQ +vPE +vPE +vPE +vPE +vPE vJv wyb -wGL +nxa npj -rHC +pyj ckx bGr -wGL -hKx -iiw -hKx -nwB +fXo +kij +nOl +kij +hRN nJF jQV srO rQY rQY -nwB +hRN pxD pxD -boy +hRN lLO lLO lLO @@ -43337,15 +30168,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -43427,8 +30258,8 @@ dpB dpB gBp sde -vda -vda +dcp +dcp mKV auW qwr @@ -43439,29 +30270,29 @@ utj aBR oFr oFr -fMx -fMx -uoM -uoM -tdF -tdF -tdF -tdF -tdF -tdF -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -dLE -dLE -dLE -dLE -isG +vhU +vhU +tai +tai +wyy +wyy +wyy +wyy +wyy +wyy +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +kyq +kyq +kyq +kyq +oPU pzF pzF lLO @@ -43482,12 +30313,12 @@ ari lAy urI ari -jny -xKi -xKi -xKi -xKi -xKi +xGQ +vPE +vPE +vPE +vPE +vPE vJv mHM fwY @@ -43495,11 +30326,11 @@ vsZ mPX mwK cEi -wGL -hKx -iiw -hKx -nwB +fXo +kij +nOl +kij +hRN dwN xgU rvm @@ -43531,15 +30362,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -43633,29 +30464,29 @@ utj aBR oFr oFr -fMx -fMx -uoM -uoM -tdF -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -dLE -fDP -tdF -tdF -isG +vhU +vhU +tai +tai +wyy +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +kyq +uYz +uYz +uYz +oPU fsW edq edq @@ -43676,24 +30507,24 @@ ari lAy urI was -jny -nxk -mTt -mTt -mTt -nxk -dRj -aTo -wGL +xGQ +ayA +ccE +ccE +ccE +ayA +gIA +xsW +nxa iEd iRG jqy ybO -wGL -hKx -iiw -hKx -nwB +fXo +kij +nOl +kij +hRN fgQ vgu gFU @@ -43725,15 +30556,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -43827,29 +30658,29 @@ utj aBR oFr oFr -fMx -fMx -uoM -uoM -tdF -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -dLE -fDP -tdF -fDP -fDP +vhU +vhU +tai +tai +wyy +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +kyq +uYz +ueD +iDv +ueD fsW iOF dVR @@ -43870,7 +30701,7 @@ ari lAy aZH pYk -jny +bdQ lMW lMW lMW @@ -43878,17 +30709,17 @@ lMW axd nZH srv -wGL +nxa gsh iRG jqy oIS -wGL -hKx -iiw -wqC -fTm -jWG +fXo +kij +nOl +myy +eZK +kqA xNd srO rQY @@ -43896,7 +30727,7 @@ rQY rQY rQY rQY -boy +hRN lLO lLO lLO @@ -43919,15 +30750,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -44021,29 +30852,29 @@ aVt aBR oFr oFr -fMx -fMx -uoM -uoM -tdF -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -dLE -fDP -dSp -fDP -fDP +vhU +vhU +tai +tai +wyy +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +kyq +iAC +ueD +uYz +uYz fsW qof qof @@ -44064,7 +30895,7 @@ ari qAb ibZ ibZ -jny +bdQ lMW lMW lMW @@ -44072,17 +30903,17 @@ lMW axd nZH dho -wGL +nxa tml lJV cvU ihS -wGL -hJe -tLS -xIO -nwB -sRX +fXo +cVp +ioD +eBY +hRN +dPY clr srO rQY @@ -44090,7 +30921,7 @@ rQY rQY rQY rQY -boy +hRN lLO lLO lLO @@ -44113,15 +30944,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -44215,29 +31046,29 @@ qwr aBR oFr oFr -fMx -fMx -uoM -uoM -tdF -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -fDP -dLE -fDP -tdF -fDP -vfa +vhU +vhU +tai +tai +wyy +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +uYz +kyq +ltc +ueD +uYz +tzX fsW qMK cAp @@ -44258,7 +31089,7 @@ ari ari ari kTQ -jny +bdQ lMW lMW lMW @@ -44266,25 +31097,25 @@ lMW axd nZH srv -wGL +nxa jqy hVr bia vMp -wGL -nwB -nwB -nwB -nwB -gZA -wZO -nxk -mTt -mTt -mTt -mTt -nxk -aBR +fXo +gwD +gwD +gwD +gwD +hYb +iPA +pbB +waR +waR +waR +waR +pbB +gwD lLO lLO lLO @@ -44305,17 +31136,17 @@ lLO bmU bmU bmU -xpr -xpr -xpr -xpr -xpr -xpr -xpr -xpr -kPh -kPh -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -44396,49 +31227,49 @@ lLO lLO aEl lLO -fsO -fsO -eTs -fsO -lBt -tdk -tdk -tdk -tCB -pXp -gnr -jpc -jpc -jpc -gbp -jzv -jzv -jpc -jpc -jpc -jpc -qnW -jpc -jpc -jpc -jpc -jpc -jpc -jpc -jpc -jpc -jfB -jpc -jpc -jpc -jpc -lBt -lBt -lBt -gkO -tdk -tdk -tdk +abf +abf +uYR +abf +aLc +xDi +xDi +xDi +jCL +sac +jPP +heZ +heZ +heZ +aNY +vjE +vjE +heZ +heZ +heZ +heZ +flT +heZ +heZ +heZ +heZ +heZ +heZ +heZ +heZ +heZ +hJO +heZ +heZ +heZ +heZ +aLc +aLc +aLc +vuy +xDi +xDi +xDi bWL edq edq @@ -44450,9 +31281,9 @@ edq edq qqH fWj -fWj -jny -jny +bdQ +bdQ +bdQ mzA lMW lMW @@ -44460,25 +31291,25 @@ lMW ejG nZH srv -wGL +nxa xVu hgy hgy -wGL -wGL -gPP -jWs -vYI -nwB -boG -jva -nxk -fdp -pOl -vPZ -kMi -qqA -aBR +fXo +fXo +bAX +kYo +uIi +gwD +jdM +eEa +pbB +hmY +ucr +mJY +vJd +bXm +gwD lLO lLO lLO @@ -44499,17 +31330,17 @@ lLO lLO bmU bmU -hfN -kVr -vRO -oeY -sCr -eLy -jxR -imP -kPh -job -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -44590,61 +31421,61 @@ lLO lLO lLO lLO -fsO -cJw -kPq -cJw -pca -rKw -djY -djY -nuQ -rKw -mnE -rKw -rKw -pXp -rKw -rKw -rKw -rKw -rKw -rKw -rKw -mnE -rKw -rKw -rKw -rKw -rKw -rKw -rKw -rKw -mnE -rKw -rKw -jzv -rKw -rKw -mnE -rKw -rKw -rKw -djY -djY -djY -rKw -rKw -rKw -mnE -rKw -rKw -rKw -jpc +abf +clX +ijT +oJX +jUJ +xPR +jwH +jwH +vkl +xPR +hBs +xPR +xPR +sac +xPR +xPR +xPR +xPR +fKH +xPR +xPR +hBs +xPR +xPR +xPR +xPR +xPR +xPR +xPR +xPR +hBs +fKH +fKH +axx +fKH +fKH +aJB +fKH +fKH +fKH +dzd +dzd +dzd +fKH +fKH +fKH +aJB +fKH +fKH +xPR +heZ noW sUR noW -jny +bdQ fYz eyX kNq @@ -44654,25 +31485,25 @@ axd eNu tCK psK -jCx +jhN rnV gMs rkL vbU -jCx -oRH -vFM -omb -wKm -aDf -mjb -nlk -niB -bhW -cWP -ycr -wvj -qcx +aKB +nBL +wEc +lnG +ttC +vCY +uzc +phT +aEv +eCP +lHC +eWM +eja +wbF lLO lLO lLO @@ -44693,17 +31524,17 @@ lLO lLO lLO bmU -hfN -kOI -kOI -khC -kOI -kOI -kOI -kOI -jCx -jCx -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -44784,63 +31615,63 @@ lLO lLO lLO lLO -fsO -cJw -kPq -ngs -mpI -rKw -djY -djY -prF -fKG -vqx -rAz -rAz -spG -rAz -rAz -rAz -rAz -rAz -mne -rAz -jlF -rAz -rAz -rAz -rAz -rAz -rAz -rAz -rAz -grt -rAz -rAz -mXq -rAz -rAz -grt -rAz -vjs -vjs -vjs -ich -jCE -vjs -vjs -rAz -grt -rAz -rAz -rAz -egP -mWg -aVi -sUR -vNd -gko -wEq +abf +nzv +ijT +ucz +ivd +xPR +jwH +jwH +hPH +bFU +fhS +wpV +wpV +iHS +wpV +wpV +wpV +wpV +wpV +dKa +gef +ika +gef +gef +gef +gef +gef +gef +gef +gef +eVI +gef +gef +gbB +gef +gef +eVI +gef +uqS +uqS +uqS +hwB +jpO +uqS +uqS +gef +eVI +gef +wpV +wpV +sMN +thS +nIR +xBq +bVx +gss +gyF ecf vNv lMW @@ -44848,25 +31679,25 @@ axd nOk tNF sqY -jCx +jhN bNS oow adI iwo -jCx -oRH -fch -jlG -whx -lAS -xoA -rrt -jMQ -dwh -vjU -ntO -oXA -qcx +aKB +nBL +tfu +vZf +iAW +liV +xBc +aEt +ekq +aSQ +ksg +xvs +csa +wbF lLO lLO lLO @@ -44887,17 +31718,17 @@ lLO lLO lLO bmU -hfN -obv -bqv -hvF -xrV -oPp -qES -cgk -jCx -jCx -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -44978,61 +31809,61 @@ lLO lLO lLO lLO -fsO -cJw -kPq -cJw -jpc -rKw -djY -djY -rKw -rKw -fSJ -rKw -rKw -pXp -rKw -rKw -rKw -rKw -rKw -wvt -rKw -fSJ -rKw -rKw -rKw -rKw -rKw -rKw -rKw -rKw -fSJ -rKw -rKw -jzv -rKw -rKw -fSJ -rKw -rKw -rKw -djY -djY -hSv -rKw -rKw -rKw -fSJ -rKw -rKw -rKw -jpc +abf +oJX +ijT +oJX +heZ +xPR +jwH +jwH +xPR +xPR +qWt +xPR +xPR +sac +xPR +xPR +xPR +xPR +xPR +lFP +xPR +qWt +xPR +xPR +xPR +xPR +xPR +xPR +xPR +xPR +qWt +xPR +xPR +vjE +xPR +xPR +qWt +xPR +xPR +xPR +jwH +pIj +xwj +xPR +xPR +xPR +qWt +xPR +xPR +xPR +heZ uCC isr sUR -jny +bdQ bph pPz vqV @@ -45047,20 +31878,20 @@ fmV fnl aHl leZ -jCx -oRH -fch -htr -nEk -sMq -swE -pWA -gbC -tyt -cTC -gCw -xOh -qcx +aKB +nBL +tfu +bPX +kQk +bUu +cFm +hOo +fqs +umo +tPS +nIE +lWV +wbF lLO lLO lLO @@ -45081,17 +31912,17 @@ lLO lLO lLO bmU -hfN -auq -vaa -gGx -dFz -ddY -iQC -tmY -jCx -jCx -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -45172,61 +32003,61 @@ lLO lLO lLO lLO -fsO -cJw -kPq -cJw -jpc -jpc -jpc -jpc -jpc -jpc -vwm -jfB -jpc -jpc -vwm -rKw -rKw -vwm -jpc -hjg -dBm -jpc -tdk -tdk -tdk -jpc -jpc -jpc -jpc -jpc -jpc -jfB -jpc -jpc -jpc -jpc -jpc -jpc -jpc -vwm -rKw -djY -wvt -vwm -jpc -jpc -jpc -rKw -rKw -rKw -jpc +abf +oJX +ijT +oJX +heZ +heZ +heZ +heZ +heZ +heZ +xzF +aCV +heZ +heZ +xzF +xPR +xPR +uaR +fsn +gWg +dQt +fsn +xDi +xDi +xDi +fsn +fsn +heZ +heZ +heZ +heZ +aCV +heZ +heZ +heZ +heZ +heZ +heZ +heZ +xzF +xPR +jwH +lFP +xzF +heZ +heZ +heZ +xPR +xPR +xPR +heZ noW noW sUR -jny +bdQ tRj pPz cBi @@ -45236,25 +32067,25 @@ jXY nWO nZH fCM -jCx +jhN ekw dhe mPf yfy -jCx -oRH -uUG -vYd -aGC -vMh -toR -cWj -hoV -oUC -oUC -fvw -lXE -qcx +aKB +nBL +eAA +csM +hSk +obR +ksU +uuZ +tKE +gJV +gJV +bRU +rqo +wbF lLO lLO lLO @@ -45275,17 +32106,17 @@ lLO lLO lLO bmU -lRq -czA -lRq -bkN -lRq -lRq -fZK -tIK -jCx -jCx -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -45353,12 +32184,12 @@ lLO vsX peB peB -fsO -mZz -fsO -fsO -fsO -fsO +abf +oJC +abf +abf +abf +abf lLO lLO lLO @@ -45366,24 +32197,24 @@ lLO lLO lLO lLO -fsO -cJw -kPq -cJw -xcX -cJw -cJw -cJw -cJw -xcX -cJw -ngs -cJw -cJw -jpc -jzv -jzv -jpc +abf +oJX +ijT +oJX +lFl +oJX +oJX +oJX +oJX +lFl +clX +ucz +oJX +oJX +heZ +vjE +vjE +fsn hEo pgu tVC @@ -45392,63 +32223,63 @@ hEo hEo hEo hEo -aWR -izy -izy -izy -izy -svY -izy -aWR -izy -izy -izy -izy -izy -jpc -pXp -pXp -hQA -jpc +jKW +lXs +sAV +eYq +lXs +oaB +lXs +niL +akX +lXs +lXs +lXs +lXs +heZ +sac +sac +ktG +heZ +tSb vYy -vYy -jpc -rKw -rKw -rKw -jpc +heZ +xPR +xPR +xPR +heZ noW noW sUR -jny +bdQ mZY pPz nZH hCH nZH -nZH +mdn nZH nZH srv -jCx +jhN iGH eWL bEp iwo -jCx -mLv -fLx -hIb -nwB -bMI -aOd -nxk -cyp -uKG -nDs -iwD -pfs -aBR +aKB +akc +tdT +ePK +gwD +rqc +bXS +pbB +qBt +kMM +bmX +jUb +xXy +gwD lLO lLO lLO @@ -45456,12 +32287,12 @@ lLO lLO lLO lLO -gGY +uSR gnD gnD dCH gnD -gGY +uSR peB dBY lLO @@ -45469,17 +32300,17 @@ lLO lLO lLO bmU -dGi -bwd -kEb -rkL -tGh -lRq -qjw -gni -jCx -jCx -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -45547,37 +32378,37 @@ lLO lLO vTH peB -fsO -cJw -cJw -fsO -cJw -fsO -fsO -fsO -fsO -fsO -fsO -fsO -fsO -fsO -cJw -kPq -cJw -xcX -cJw -cJw -cJw -cJw -xcX -cJw -ngs -cJw -cJw -jpc -rKw -rKw -tdk +abf +oJX +oJX +abf +oJX +abf +abf +abf +abf +abf +abf +abf +abf +abf +oJX +ijT +oJX +lFl +oJX +oJX +oJX +oJX +lFl +nzv +ucz +oJX +oJX +heZ +xPR +xPR +xDi nsj qLP ijW @@ -45586,76 +32417,76 @@ hEo hEo hEo hEo -kHo -svY -svY -svY -svY -svY -svY -xNO -svY -svY -svY -svY -izy -jpc -rKw -rKw -wvt -jpc +aXw +oaB +oaB +kOT +eJj +cWf +cWf +wtZ +tHR +cWf +cWf +gnV +lXs +heZ +xPR +xPR +lFP +heZ +jAA vYy -vYy -jpc -pXp -pXp -pXp -jpc +heZ +sac +sac +sac +heZ fWj fWj qqH -jny -pPy -rhg -pem -nzX +bdQ +dUq +ajS epg -sMf +xKR +aiR +amC epg epg -rMS -jCx +lPW +jhN bke gMs rkL rkL -jCx -nwB -nwB -nwB -nwB -gZA -vwr -nxk -wNP -mTt -mTt -rXh -rXh -sxb -sxb -sxb -sxb -cYR -cYR -cYR -cYR -cYR +aKB +gwD +gwD +gwD +gwD +hYb +iPA +xXS +xdy +wjN +wjN +hoi +hoi +hoi +hoi +hoi +hoi +qTg +qTg +qTg +qTg +qTg mjv vRh jyh rZZ -cYR +qTg ozZ dBY lLO @@ -45663,17 +32494,17 @@ lLO lLO lLO bmU -lRq -gMi -sWq -eHb -hkJ -rUw -xzq -vrW -jCx -jCx -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -45741,37 +32572,37 @@ lLO lLO vTH peB -fsO -cJw -cJw -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -kPq -cJw -xcX -cJw -cJw -cJw -cJw -xcX -cJw -ngs -cJw -cJw -jpc -bcx -bcx -tdk +abf +oJX +oJX +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +ijT +oJX +lFl +oJX +oJX +oJX +oJX +lFl +oJX +ucz +oJX +oJX +heZ +hzX +hzX +xDi sdK tUH sAh @@ -45780,67 +32611,67 @@ sZd sdK nMa hEo -aWR -izy -svY -izy -izy -izy -izy -aWR -izy -izy -izy -svY -svY -mpI -rKw -rKw -rKw -mpI -xKi -xKi -jpc -djY -tQd -djY -jpc +jKW +lXs +oaB +tSh +lwU +lXs +lXs +niL +tSh +lXs +lXs +voW +cWf +cfT +gef +gef +qNT +cfT +uei +fCh +heZ +jwH +dsx +jwH +heZ aZH urI ari -jny -fgX -eUz -hwq -fgX -wLn -kJy -hwq +bdQ +dDE +pTE +kBW +kiK +kiK +wun +kBW iyd -shn -jCx -fMC +cBJ +aKB +auP gsu gsu -jCx -jCx -sVI -aqc -xhW -nwB -pWE -eNc -nxk -dpB -lFm -lFm +aKB +aKB +qgm +ugO +cqg +gwD +hpV +aHZ +xXS +gbT +dDz +dDz dQq lvJ tNx kSS xsa xsa -tes +qTg wyj lvD gHu @@ -45849,7 +32680,7 @@ kdL jyG hvt tjJ -cYR +qTg peB dBY lLO @@ -45857,17 +32688,17 @@ lLO lLO lLO bmU -iOE -mLD -wxy -mki -szx -rHM -lCZ -gaV -jCx -jCx -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -45935,70 +32766,70 @@ lLO lLO vTH peB -fsO -mZz -fsO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -kPq -cJw -xcX -cJw -cJw -cJw -cJw -xcX -cJw -ngs -cJw -cJw -jpc -bcx -bcx -tdk +abf +oJC +abf +abf +oJX +oJX +oJX +oJX +oJX +oJX +xCP +oJX +oJX +oJX +oJX +ijT +oJX +lFl +oJX +oJX +oJX +oJX +lFl +oJX +ucz +oJX +oJX +heZ +hzX +hzX +xDi kEI cZW utn -llL -llL -llL -llL -llL -llL -aWR -xNO -aWR -aWR -aBR -aBR -aBR -aBR +lKP +lKP +lKP +lKP +lKP +lKP +niL +bLI +niL +niL +jWJ +jWJ +jWJ +jWJ kuH -aBR -aBR -jAA -jpc -bcx -bcx -bcx -jpc -vYy -xKi -jpc -tQd -tQd -tQd -tdk +jWJ +jWJ +sAV +heZ +hzX +hzX +hzX +heZ +oVy +scS +heZ +dsx +dsx +dsx +xDi aZH urI ari @@ -46006,35 +32837,35 @@ fWj ayS iUa uGn -mHg -mHg -mHg -vkN +eyg +dAw +iSe +dre ylO -jAe -jCx +ycS +aKB fQp wTD ttX mtU -jCx -jsr -dVQ -adQ -nwB -dwN -iyi -nxk -dpB -dpB -asB +aKB +ueO +rpI +fYj +gwD +eMU +bWW +xXS +gbT +gbT +nGd hxc fND ifl -rXh -rXh -rXh -tes +hoi +hoi +hoi +qTg xbJ wKw nOp @@ -46043,7 +32874,7 @@ jyG iMf kLM pez -cYR +qTg ozZ dBY lLO @@ -46051,17 +32882,17 @@ lLO lLO lLO bmU -gxe -sBb -aBg -nvr -uIL -knf -qQU -rvD -jCx -jCx -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -46129,70 +32960,70 @@ lLO lLO vTH peB -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -kPq -cJw -xcX -cJw -cJw -cJw -cJw -xcX -cJw -ngs -cJw -cJw -jpc -bcx -bcx -jpc +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +fkA +oJX +oJX +oJX +oJX +ijT +oJX +lFl +oJX +oJX +oJX +oJX +lFl +oJX +ucz +oJX +oJX +heZ +hzX +hzX +fsn hEo cZW gAl -llL +lKP xmP vfz xxI sMU -llL -izy -svY -izy -izy -aBR +lKP +lXs +oaB +lXs +lXs +jWJ aMO kMt ydq nlf sZJ -aBR -deG -jpc -bcx -bcx -bcx -jpc -vYy -xKi -jpc -tQd -tQd -tQd -tdk +jWJ +wMA +heZ +hzX +hzX +hzX +heZ +qmY +jou +heZ +dsx +dsx +dsx +xDi aZH urI ari @@ -46200,32 +33031,32 @@ fWj waV iUa nrw -myO -hhh -myO -mMT -iUa -iUa -jCx +wKM +lku +mvB +izF +iao +iao +aKB pFQ rnV rnV riQ sMW -erw -bCd -lJS -nwB -gYp -dSN -nxk -dpB -gVz -asB -rXh +eth +txe +xwZ +gwD +vmf +tRc +xXS +gbT +gbT +nGd +hoi fPY rel -rXh +hoi ggN gdW kRl @@ -46237,7 +33068,7 @@ fFa bom rLE xKT -cYR +qTg peB dBY lLO @@ -46245,17 +33076,17 @@ lLO lLO lLO bmU -lRq -rgE -cqm -jBc -iwo -piU -rnV -kyB -jCx -jCx -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -46323,70 +33154,70 @@ lLO lLO vTH peB -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -kPq -cJw -xcX -cJw -cJw -ngs -ngs -fpL -ngs -ngs -cJw -cJw -xcX +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +ijT +oJX +lFl +oJX +oJX +ucz +ucz +uRl +ucz +ucz +oJX +oJX +orj nGt nGt -wCD +lnc tXg cZW gAl -llL +lKP pIk wQM xcH rbW -llL -izy -svY -izy -izy -aBR -nxk -nxk +lKP +oaB +oaB +lXs +lXs +jWJ +kaB +kaB ryG sSs fKV -aBR -sgn -jpc -bcx -bcx -bcx -jpc +jWJ +uKM +heZ +hzX +hzX +hzX +heZ vYy -xKi -jpc -tQd -tQd -tQd -tdk +pOo +heZ +dsx +dsx +dsx +xDi aZH urI ari @@ -46394,36 +33225,36 @@ fWj ayS iUa nlb -iUa +oNw myO iUa nlb iUa nmA -jCx +aKB viZ eju uIq kyB -jCx -gyW -hUW -wTK -nwB -gZA -vwr -nxk -dpB -dpB -asB -sHh +aKB +wqv +pCS +pbO +gwD +hYb +iPA +xXS +gbT +gbT +nGd +gul eel eel -sHh +gul ggN vFR xWv -tBU +nto oMP fca hRG @@ -46431,7 +33262,7 @@ wmo tti gzy rcl -cYR +qTg ozZ dBY lLO @@ -46439,17 +33270,17 @@ lLO lLO bmU bmU -dGi -ifj -ckU -lGS -nio -lRq -jmA -lRq -jCx -jCx -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -46517,34 +33348,34 @@ lLO lLO vTH peB -fsO -fsO -fsO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -kPq -xcX -xcX -xcX -xcX -fpL -xcX -xcX -cJw -ngs -ngs -ngs -jLu +abf +abf +abf +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +ijT +lFl +lFl +kvj +kvj +uRl +lFl +lFl +oJX +ucz +ucz +ucz +sYb hEo hEo hEo @@ -46555,65 +33386,65 @@ ufA tYO wdB xfr -gCG -llL -izy -svY -izy -izy -aBR +bgk +lKP +oaB +lXs +lXs +lXs +jWJ wLS reA pTU oir fKV -aBR -nxk -jpc -jpc -jpc -jpc -jpc +jWJ +niL +heZ +heZ +heZ +heZ +heZ vYy -xKi -jpc -lVO -tQd -djY -jpc -tdk -tdk -gfB -jpc +pOo +heZ +hMF +dsx +jwH +heZ +xDi +xDi +pgW +heZ hQo hWa hQo -paw +ctP paw paw hQo hWa hQo -jCx -sSp -jCx -jCx -jCx -jCx -jpc -gfB -jpc -dpB -dpB -ejU -nah -dpB -dpB -gPm -sHh +aKB +qRq +aKB +aKB +aKB +aKB +heZ +pgW +kXJ +gbT +ncr +guH +phO +gbT +gbT +cMy +gul lEr ogV -sHh +gul whe vFR xWv @@ -46623,9 +33454,9 @@ kXU mqQ cRE pqg -cYR -cYR -cYR +qTg +qTg +qTg peB dBY lLO @@ -46635,15 +33466,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -46713,101 +33544,101 @@ vTH peB coX bkx -fsO -fsO -fsO -fsO -cJw -cJw -xcX -xcX -xcX -xcX -cJw -cJw -cJw -kPq -xcX -lvt -lvt -kEz -dOY -vim -xcX -cJw -cJw -cJw -cJw -xcX +abf +abf +abf +abf +oJX +oJX +lFl +lFl +lFl +lFl +oJX +oJX +oJX +ijT +lFl +rRy +rRy +sNi +vAd +mjR +lFl +oJX +oJX +oJX +oJX +orj hEo hEo hEo eYG cZW gAl -llL +lKP dMX cPo cPo iEZ -llL -izy -svY -hGe -hGe -hGe -hGe -hGe -hGe +lKP +oaB +lXs +kPF +kPF +kPF +hmh +hmh +hmh tdZ -mIP -tQX -tQX -tQX -tQX -tQX -tQX +jGu +gUS +gUS +gUS +gUS +gUS +gUS nxk vYy -xKi -jpc -djY -rKw -djY -djY -tQd -tQd -tQd -djY -pXp -djY -lVO -djY -djY -djY -lVO -djY -djY -pXp -rKw -rKw -rKw -mnE -rKw -rKw -rKw -pXp -dpB -acO -oaY -dpB -dpB -dpB -dyr -sHh +pOo +heZ +pnj +xPR +jwH +jwH +dsx +dsx +dsx +jwH +sac +jwH +hMF +nuB +jwH +jwH +mZo +jwH +jwH +sac +xPR +xPR +xPR +hBs +xPR +xPR +xPR +xnb +gbT +fWg +pdn +gbT +gbT +gbT +fWo +gul lEr ogV -sHh +gul mUP oSq wKY @@ -46817,7 +33648,7 @@ peJ mqQ lzL hYD -cYR +qTg gNQ lLO peB @@ -46829,15 +33660,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -46907,111 +33738,111 @@ lLO tcC tcC tcC -fsO -cJw -cJw -fsO -cJw -cJw -fsO -oiJ -pBy -ukr -pBy -pBy -pBy -bAW -fpL -dOY -dOY -dOY -dOY -vim -oyX -oyX -oyX -oyX -oyX -oyX -oyX -oyX -oyX -oyX +abf +oJX +oJX +abf +oJX +oJX +abf +hMx +fzo +qAk +fzo +fzo +fzo +qYb +uRl +vAd +vAd +vAd +vAd +mjR +rVb +rVb +rVb +rVb +rVb +rVb +rVb +rVb +rVb +rVb qLP hpH -eqn -eqn -eqn -eqn -eqn -eqn -izy -svY -hGe +mxc +mxc +mxc +mxc +mxc +mxc +oaB +lXs +kPF nHL nHL nHL qxh -uzd +hmh wpZ sJv -rSb +pbI gbt ntn ntn ntn -tQX +gUS vYy vYy -xKi -mpI -rKw -rKw -rKw -tQd -tQd -tQd -tQd -tQd -pXp -djY -djY -djY -djY -djY -djY -djY -djY -pXp -rKw -rKw -rKw -rKw -rKw -rKw -rKw -pXp -dpB -dpB -fDU -dpB -dpB -dpB -pxS +qZW +cfT +ijo +jum +nXo +dsx +dsx +dsx +dsx +dsx +sac +jwH +taY +gms +uqS +uqS +ktz +uqS +uqS +tJO +gef +gef +gef +ofo +xPR +fKH +fKH +fbE +ncr +ncr +diX +ncr +vCf +gbT +onU oMz jGR aOO -sHh +gul oMP -izB -mDm -kpN -lcC -tFR -vhv -arZ -tBU -cYR +aBA +rOn +kjj +eCl +rpT +gdf +fzY +xCR +qTg tcC tcC tcC @@ -47023,15 +33854,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -47101,47 +33932,47 @@ bmU lLO lLO lLO -fsO -cJw -cJw -fsO -cJw -cJw -fsO -xcX -xcX -xcX -cJw -cJw -cJw -cJw -xcX -xAs -xAs -xAs -xAs -uUj -oyX +abf +oJX +oJX +abf +oJX +oJX +abf +lFl +lFl +lFl +oJX +oJX +oJX +oJX +lFl +alH +alH +alH +alH +wPB +rVb rkK ehu -oyX +rVb dXW wor wSy xZj riy -oyX +rVb cZW gAl -eqn +mxc vse nvx jta -fIX -eqn -izy -svY -hGe +rJq +mxc +oaB +lXs +kPF tBe iyz iyz @@ -47154,50 +33985,50 @@ gKw pvV pvV qlB -tQX +gUS vYy vYy xKi -jpc -djY -rKw -djY -seK -tQd -tQd -tQd -djY -pXp -djY -bkg -djY -djY -gsd -bkg -djY -djY -pXp -rKw -rKw -rKw -fSJ -rKw -rKw -rKw -pXp -dpB -iKu -egb -dpB -dpB -dpB -pxS +heZ +jwH +xPR +pbZ +wep +dsx +dsx +dsx +jwH +sac +jwH +uSC +dzd +jwH +ePj +uSC +jwH +jwH +sac +xPR +xPR +xPR +qWt +xPR +fKH +xPR +xnb +gbT +jBS +dOS +gbT +ncr +eSr +onU oLz psH uhO -sHh +gul tBU -uLX +iEm iVQ knz wpR @@ -47205,7 +34036,7 @@ xOs axb ftD wCI -cYR +qTg lLO lLO lLO @@ -47217,15 +34048,15 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -47295,27 +34126,27 @@ bmU bmU bmU lLO -fsO -cJw -cJw -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -xcX -xcX -xcX -xcX -xcX -xcX -oyX +abf +oJX +oJX +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +lFl +lFl +lFl +lFl +lFl +lFl +rVb ybZ qkR aKH @@ -47332,66 +34163,66 @@ iIx pvU iuK eFc -eqn -izy -svY -hGe +mxc +oaB +lXs +kPF eRO nHL hAr vyz -uzd +hmh wEl qRu -rSb +pbI evA ntn ntn ieg -tQX +gUS vYy -vYy -xKi -jpc -jpc -jpc -jpc -jpc -jpc -jpc -jpc -jpc -jpc -rKw -rKw -rKw -hsd -jpc -jpc -jpc -jpc -vwm -esx -esx -vwm -jpc -jpc -wrH -jpc -jpc -dpB -dpB -dpB -dpB -dpB -aiY -aiY -aiY -aiY -aiY -aiY +nxk +wJj +heZ +heZ +heZ +heZ +heZ +heZ +heZ +heZ +heZ +heZ +jwH +jwH +dzd +uRi +heZ +heZ +heZ +heZ +xzF +bqR +bqR +xzF +heZ +heZ +slE +heZ +kXJ +gbT +gbT +gbT +gbT +ncr +nRV +nRV +nRV +nRV +nRV +nRV cmI -jjp +bla aiY dAM kOZ @@ -47399,16 +34230,7 @@ bsP hAj uxH uxH -cYR -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +qTg bmU bmU bmU @@ -47420,6 +34242,15 @@ bmU bmU bmU bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -47489,120 +34320,111 @@ bmU bmU bmU lLO -fsO -fsO -fsO -fsO -fsO -fsO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -xcX -obn -aEN -aEN -lEs -oyX +abf +abf +abf +abf +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +lFl +lvG +hlG +hlG +bQH +rVb bBy abO -oyX -cHD +rVb +uEQ wtT ofv cQx cGk -oyX +rVb cZW gAl -eqn +mxc ayi hwv cOV nJA -eqn -izy -svY -hGe -uzd -uzd -uzd -uzd -uzd +mxc +oaB +lXs +kPF +hmh +hmh +hmh +hmh +hmh hKm wSp -rSb -rSb -rSb -rSb -rSb -tQX -aBR -aBR +pbI +pbI +pbI +pbI +pbI +gUS +jWJ +jWJ xKi vYy -vYy -vYy +sYi xaj -lMW -lMW -cKt -vYy -vYy -jpc -rKw -rKw -rKw -jpc -mEM -mEM -mEM -mEM -cqE -bcx -bcx +xaj +xaj +xaj +xaj +xaj +xaj +heZ +nzJ +dzd +dzd +heZ +pQv +pQv +pQv +pQv +jVi +hzX +hzX nxk uVV gDQ -cmR +lJR nxk -cqE -lmK -bjs +jOg +aEg +nRV kWX cmI -wlh -aiY +sly +nRV eDG eVW eha kdH hYz kYU -cgr -aiY -cYR -cYR -cYR -cYR -cYR -cYR -cYR -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +jBA +nRV +qPG +qTg +qTg +qTg +qTg +qTg +qTg bmU bmU bmU @@ -47614,6 +34436,15 @@ bmU bmU bmU bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -47687,102 +34518,102 @@ lLO lLO lLO lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -xcX -aEN -aEN -aEN -fJK -oyX +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +lFl +hlG +hlG +hlG +iYu +rVb kOA arP -oyX +rVb acZ gZM gZM dsh gZM -oyX +rVb cZW gAl -eqn +mxc aEz wIk wIk xBY -eqn -izy -svY -nWV +mxc +oaB +lXs +uTg fBj fBj fBj oEe -jGv +oUS wEl qRu gBz -nxk +kaB wCM usz ktt vFe uCs -aBR +jWJ xKi -rrG vYy -vYy -usl -xaj -xaj -mtt -xKi -xKi -mpI -rKw -rKw -rKw -mpI -lrB -lrB -lrB -mEM -cqE -bcx -bcx +cNl +apA +apA +apA +apA +apA +apA +apA +ivd +jwH +jwH +jwH +ivd +jdS +jdS +jdS +pQv +jVi +hzX +hzX nxk sre tOq -cmR +kPH nxk -mEM -lrB -bjs +pQv +jdS +nRV eAb oVR -inH -aiY +pAJ +nRV aRD kqo pCD prS lDd fEr -lKJ -aiY -lLO -lLO +pPC +nRV +pQv +rdI lLO lLO lLO @@ -47881,43 +34712,43 @@ bmU bmU bmU lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -xcX -kak -byl -lEs -eRc -oyX -oyX -oyX -oyX -oyX -oyX -oyX -oyX -oyX -oyX +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +fWS +oJX +lFl +uPi +fii +bQH +knx +rVb +rVb +rVb +rVb +rVb +rVb +rVb +rVb +rVb +rVb tgH ghG -hiO -hiO -hiO -hiO -hiO -hiO -izy -svY -nWV +nUD +nUD +nUD +nUD +nUD +nUD +oaB +lXs +uTg sPX qte qte @@ -47926,57 +34757,57 @@ byq gnZ gcs qxv -nxk +kaB mKx rkk jrb vcD mlU -aBR -xKi -xKi -xKi -xKi -apA -apA -apA -apA +jWJ xKi vYy -jpc -rKw -rKw -rKw -jpc -mEM -mEM -lrB -mEM -cqE -bcx -bcx +cNl +apA +kKP +bCn +bCn +bCn +bCn +bCn +heZ +jwH +jwH +jwH +heZ +pQv +pQv +jdS +pQv +jVi +hzX +hzX nxk cmR cmR xMN nxk -mEM -lrB -bjs +pQv +jdS +nRV vmk gXq -enV -fUI -nCd -bFq -cXZ -xbx -gfp -yhL -dsY +wUY +mdg +vXp +fDu +jaL +dkD +mBp +eWD +cPr oSa -lLO -lLO +pQv +oGO lLO lLO bmU @@ -48075,48 +34906,48 @@ bmU bmU bmU lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -xcX -aFY -dsX -eRc -rNp -mei +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +lFl +tcq +nwg +knx +muA +oSK bvn gNG -mei +oSK clq -uLp +ngh vRx kLp wnn -mei +oSK cZW gAl -hiO +nUD qvi nsF -lSF +cqQ aax -hiO -izy -svY -nWV +nUD +oaB +lXs +uTg jJP fBj xGl hrh -jGv +oUS wEl mOW rQh @@ -48126,51 +34957,51 @@ gyH xpV vFe uCs -aBR +jWJ xKi -nxk -nxk -nxk -nxk -nxk -jpc -jpc -jpc -jpc -xJc -rKw -rKw -rKw -jpc -mEM -mEM -lrB -mEM -cqE -cqE -cqE +vYy +cNl +apA +sYi +lMW +hzX +hzX +heZ +heZ +oNv +jwH +jwH +jwH +heZ +sVE +pQv +jdS +pQv +jVi +jVi +jVi nxk ofJ -blA +lpN ofJ nxk -mEM -lrB -bjs -bjs -bjs -bjs -aiY -auU -tPq +pQv +jdS +nRV +nRV +nRV +nRV +nRV +faB +fJE fym fpr cXH oeT qws oSa -lLO -lLO +pQv +oGO lLO lLO bmU @@ -48269,26 +35100,26 @@ bmU bmU bmU lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -xcX -xcX -xcX -xcX -xcX -mei +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +uyJ +lFl +lFl +lFl +lFl +lFl +oSK qaN oWo -mei +oSK nqG vwo eFb @@ -48297,74 +35128,74 @@ kVA aAe rSC aGB -hiO +nUD vUj oSi dNL sPs -hiO -izy -svY -nWV -jGv -jGv -jGv -jGv -jGv +nUD +oaB +lXs +uTg +oUS +oUS +oUS +oUS +oUS wEl ewE -xhx -xhx -xhx -xhx -xhx -xhx -xhx -xhx +hDc +hDc +hDc +hDc +hDc +hDc +hDc +hDc xKi -nxk +vYy +cNl +apA +sYi lMW -lMW -lMW -lMW -bcx -bcx -rKw -pXp -rKw -rKw -rKw -rKw -jpc -mEM -mEM -lrB -mEM -mEM -mEM -mEM +hzX +hzX +xPR +sac +xPR +xPR +xPR +xPR +heZ +gaL +pQv +jdS +pQv +pQv +pQv +pQv nxk nxk nxk nxk nxk -mEM -lrB -mEM -mEM -mEM -mEM -aiY +pQv +jdS +pQv +pQv +pQv +pQv +nRV bLn -tPq +fJE fym fpr cXH tPq qws oSa -lLO -lLO +pQv +oGO lLO lLO bmU @@ -48463,23 +35294,23 @@ bmU bmU bmU lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -mei +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +sll +oJX +oJX +oJX +oJX +oSK pYy tjp iQD @@ -48488,7 +35319,7 @@ ewP uVw cRL vjR -mei +oSK xWA iXF tlH @@ -48496,69 +35327,69 @@ oys eTH hzV uXb -hiO -izy -svY -sqo +nUD +oaB +lXs +dsN gqX qXI fLu aig -iHX +ocr wEl qRu -xhx +hDc dLJ uig uig uig uig uig -xhx +hDc xKi -nxk +vYy +cNl +apA +sYi lMW -lMW -lMW -lMW -bcx -bcx -rKw -pXp -rKw -rKw -rKw -rKw -jpc -mEM -mEM -lrB -lrB -lrB -lrB -lrB -lrB -lrB -lrB -lrB -lrB -lrB -lrB -lrB -lrB -lrB -mEM -aiY +hzX +hzX +xPR +sac +xPR +xPR +xPR +xPR +heZ +pQv +pQv +jdS +jdS +jdS +jdS +jdS +jdS +jdS +jdS +jdS +jdS +jdS +jdS +jdS +jdS +jdS +pQv +nRV oOj -tPq +fJE fym -fpr +qGh cXH tPq -bpW -aiY -lLO -lLO +nIb +nRV +pQv +rdI lLO lLO bmU @@ -48657,43 +35488,43 @@ bmU bmU bmU lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -mei +abf +oJX +oJX +oJX +oJX +oJX +oJX +lFl +lFl +lFl +lFl +aKS +lFl +lFl +lFl +oJX +oSK viM coC -mei +oSK uXv dtx czu epA hJz -mei +oSK cZW gAl -hiO +nUD sVS vgc vgc ppG -hiO -izy -svY -sqo +nUD +oaB +lXs +dsN nUE hBb hBb @@ -48708,51 +35539,51 @@ jeu oQw sGj iDo -xhx -gjD +hDc +xKi +vYy +iAi +apA +usl +xaj +pHy nxk -xaj -xaj -xaj -xaj -jpc +nxk +nxk +nxk +nxk +wDN +wDN afM afM afM afM -afM -ePH -ePH -afM -afM -afM -afM -yke -yke +hSM +hSM gTv -yke -yke -yke -uFM -uFM +hSM +hSM +hSM +jwS +jwS qfU -uFM -uFM -uFM -uFM -lrB -mEM -aiY +jwS +jwS +jwS +jwS +jdS +pQv +nRV kGP -tPq +fJE fym fpr cXH tPq mbb oSa -lLO -lLO +pQv +oGO lLO lLO bmU @@ -48851,102 +35682,102 @@ bmU bmU bmU lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -jJN -cJw -cJw -cJw -cJw -cJw -mei -mei -mei -mei -mei -mei -mei -mei -mei -mei +abf +oJX +oJX +oJX +oJX +oJX +oJX +lFl +lFl +lFl +kvj +qHB +kvj +lFl +lFl +oJX +oSK +oSK +oSK +oSK +oSK +oSK +oSK +oSK +oSK +oSK qLP hpH -cPK -cPK -cPK -cPK -cPK -cPK -izy -svY -sqo +odi +odi +odi +odi +odi +odi +oaB +lXs +dsN eUu fLu wjS aRG -iHX +ocr toG eJR -xhx +hDc aVu uig uig oMB uig uig -xhx +hDc xKi -eVN -apA -apA -apA -apA xKi -sJr -lHE -lbD -mdE -tUS -eok -lCu -xfC -aJt -dZb -hFF -hlh +apA +apA +apA +apA +vYy +vYy +vYy +jAA +tSb +nxk +wDN +wDN +wDN +ocd +wDN +wDN +hSM hjv tzW vdr quX umN -uFM +jwS vdj bLT bjV waD fin -uFM -lrB -mEM -aiY +jwS +jdS +pQv +nRV dxK -qPq +kUB fym fpr cXH qPq itg oSa -lLO -lLO +pQv +oGO lLO lLO bmU @@ -49045,102 +35876,102 @@ bmU bmU bmU lLO -lLO -lLO -nZG -hWU -hWU -hWU -nZG -cJw -cJw -cJw -iNe -cJw -cJw -cJw -cJw -cJw -nJv +abf +oJX +leG +dHn +dHn +dHn +leG +xpK +xpK +rIz +ucz +gSx +ucz +rGc +lFl +oJX +jvs faD cpF -nJv -iWA +jvs +oQh cvX ykB bUx aSB -nJv +jvs cZW gAl -cPK +odi hPX toK aTd peW -cPK -izy -svY -sqo -iHX -iHX -iHX -iHX -iHX +odi +oaB +lXs +dsN +ocr +ocr +ocr +ocr +ocr fKr aRn -jWc -jWc -jWc +dhS +dhS +dhS uig oMB uig uig -xhx +hDc +xKi xKi -eVN apA apA apA apA xKi -afM -vYo -vGz -vGz -dJT -lXK -ctp -dJT -lXK -peq -nww -hlh +xKi +xKi +xKi +xKi +nbN +wDN +wDN +wDN +wDN +wDN +rhm +hSM tWN tzW lsT gQU tjG -uFM -keG +jwS +rww eAJ uNR bLT lZk -uFM -lrB -mEM -aiY +jwS +jdS +pQv +nRV aRD -fEr +rvu atn nhh rHa fEr swy oSa -lLO -lLO +pQv +oGO lLO lLO bmU @@ -49239,23 +36070,23 @@ bmU bmU bmU lLO -lLO -lLO -hWU -uUj -uUj -uUj -hWU -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -nJv +abf +oJX +dHn +wPB +wPB +wPB +dHn +xpK +xpK +rIz +ucz +gSx +ucz +rGc +lFl +oJX +jvs eXA qoC uEp @@ -49267,74 +36098,74 @@ sdf tQe rSC aGB -cPK +odi krw ttV mYB vTl -cPK -nsn -svY -hAb +odi +iQA +lXs +bqC pUp pUp pUp wUb -hJQ +vqH wEl qRu lMZ lMZ -jWc -nju +dhS +mES adC -nju -nju -nju -nju -nju -nxk +mES +mES +mES +mES +mES +jWJ wlo nxk afM afM -afM -wzD -vGz -vGz -dJT -lXK -ctp -dJT -lXK -npH -hpg -yke -dnE +hsS +hsS +iuY +hsS +hsS +hsS +qye +hsS +wDN +wDN +wDN +hSM +xLj fCJ nAk xDG uQj -uFM +jwS eqH bLT nxn xnn jAs -uFM -wbH -cqE -aiY +jwS +gRZ +jVi +nRV jjL -fde +lOo elt ubn dmf idX fUW -aiY -lLO -lLO +nRV +pQv +rdI lLO lLO bmU @@ -49433,32 +36264,32 @@ bmU bmU bmU lLO -lLO -lLO -hWU -uUj -uUj -uUj -fQA -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -nJv +abf +oJX +dHn +wPB +wPB +wPB +xpK +xpK +xpK +rIz +ucz +gSx +ucz +rGc +lFl +oJX +jvs aGN tmn -nJv +jvs dJq mDT akr sZY qMn -nJv +jvs xWA iXF akz @@ -49466,10 +36297,10 @@ mRf nnM adb cal -cPK -nsn -svY -hAb +odi +iQA +lXs +bqC nsR sBy sBy @@ -49479,56 +36310,56 @@ gnZ gcs lMZ lMZ -jWc -nju +dhS +mES aDO sFq sGi lkm fhX -nju -nju +mES +mES xKi vYy -afM -afM -afM -rKv -vGz -vGz -dJT -lXK -ctp -dJT -lXK -fFN -nww -yke +hsS +hsS +lIw +uxD +iyQ +dpu +tay +hsS +iWI +tvI +xjP +xjP +hsS +hSM jZX wLc nGL fwj vvO -uFM +jwS dOe cbe hNa umD lRX -uFM -lrB -mEM -aiY -aiY -aiY -aiY -aiY +jwS +jdS +pQv +nRV +nRV +nRV +nRV +nRV kIF -aiY -aiY -aiY -lLO -lLO +nRV +nRV +nRV +deI +rdI lLO lLO bmU @@ -49627,53 +36458,53 @@ bmU bmU bmU lLO -lLO -lLO -hWU -uUj -uUj -uUj -fQA -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -nJv +abf +oJX +dHn +wPB +wPB +wPB +xpK +xpK +xpK +rIz +ucz +gSx +ucz +rGc +lFl +oJX +jvs bKp mTw -nJv +jvs aNp ykB haO kwx htX -nJv +jvs cZW gAl -cPK +odi fRE iBF -toM +bvw tBJ -cPK -nsn -svY -hAb +odi +iQA +lXs +bqC uzi pUp wVc uYE -hAb -jWc +bqC +dhS dvB -jWc -jWc -nju +dhS +dhS +mES swc xfw fQN @@ -49681,48 +36512,48 @@ lXa uDy iRS xWZ -nju +mES xKi vYy -afM +hsS enF -hoY -hSL -hSL -hSL -tWp -ylL -ylL -ylL -jKM -xdo -dbY -yke -yke -yke -yke +vsV +vsV +vsV +vsV +qeW +hsS +hsS +hsS +fwZ +gDe +azc +hSM +hSM +hSM +hSM efp hlh -uFM -uFM -uFM +jwS +jwS +jwS nJl cjB nJl -uFM -lrB -mEM -aBR -vYy -hgF -aBR -mEM -lrB -mEM -mEM -vNK -lLO -lLO +jwS +jdS +pQv +qKW +cFD +kKe +qKW +pQv +jdS +pQv +pQv +pQv +pQv +rdI lLO lLO bmU @@ -49821,53 +36652,53 @@ bmU bmU bmU lLO -lLO -lLO -hWU -uUj -uUj -uUj -hWU -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -nJv -nJv -nJv -nJv -nJv -nJv -nJv -nJv -nJv -nJv +abf +oJX +dHn +wPB +wPB +wPB +dHn +xpK +xpK +rIz +ieA +gSx +ucz +rGc +lFl +oJX +jvs +jvs +jvs +jvs +jvs +jvs +jvs +jvs +jvs +jvs tgH ghG -rhT -rhT -rhT -rhT -rhT -rhT -nsn -svY -hAb -hAb -hAb -hAb -hAb -hAb -pSM +uDX +uDX +uDX +uDX +uDX +uDX +iQA +lXs +bqC +bqC +bqC +bqC +bqC +bqC +hvC wSz wdA uBF -nju +mES iKP oPo oPo @@ -49875,22 +36706,22 @@ oPo oPo oPo gir -nju +mES xKi vYy -afM +hsS noo lyW -dtR +tdU frw tdU pZE -wAu -nPU -byb +rJC +ccY +cWG oVV bPn -avz +hMj ogP iOT iOT @@ -49903,20 +36734,20 @@ iOT fdk wxQ vwI -hXT -lrB -mEM -aBR -vYy -vYy -aBR -mEM -lrB -mEM -mEM -vNK -lLO -lLO +ano +jdS +pQv +qKW +cFD +cFD +qKW +pQv +jdS +pQv +pQv +pQv +pQv +rdI lLO lLO bmU @@ -50015,53 +36846,53 @@ bmU bmU bmU lLO -lLO -lLO -nZG -hWU -hWU -hWU -nZG -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -xbS +abf +oJX +leG +dHn +dHn +dHn +leG +xpK +xpK +rIz +ucz +gSx +ucz +rGc +lFl +oJX +hKl mTA kNp -xbS -gHA +hKl +oQE uRw eqb chW eRS -xbS +hKl cZW gAl -rhT +uDX jmx pat hrP ekp -rhT -nsn -svY -sQW -oqK -qFq -oqK -kkr -svY -pSM +uDX +iQA +oaB +bTF +ktR +rVu +ktR +wNm +oaB +hvC pkl fLP spY -nju +mES hER vSs oPo @@ -50069,23 +36900,23 @@ oPo oPo pyf hqQ -nju +mES xKi vYy -afM -lgp +hsS +scJ dtR -oBu +ttB jKR lxj pZE -hGL -sHf -lDu +nCl +oWs +iwV oVV bPn -avz -hXT +sWg +ano fdk vtQ cTQ @@ -50098,19 +36929,19 @@ kVE dvz cTQ nYb -qsH -lRk -vtc -clL -vYy -aBR -mEM -lrB -mEM -mEM -vNK -lLO -lLO +rHh +bxu +isn +lNA +cFD +qKW +pQv +jdS +pQv +pQv +pQv +pQv +rdI lLO lLO bmU @@ -50209,26 +37040,26 @@ bmU bmU bmU lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -xbS +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +xpK +xpK +oJX +hKl vzP ycp -xbS +hKl fvZ oIq xKq @@ -50241,21 +37072,21 @@ hdr dRI xyl jwl -imO -rhT -hlu -svY -aWR -oqK -oqK -oqK -aWR -svY -pSM +rEI +uDX +dQg +lXs +niL +ktR +ktR +ktR +niL +oaB +hvC uzR -pSM +hvC hsk -nju +mES hTF vSs oPo @@ -50263,12 +37094,12 @@ oPo oPo pyf snQ -nju +mES xKi vYy -afM +hsS rxc -dtR +pGd dJT lXK dtR @@ -50291,20 +37122,20 @@ gMZ pvd nks fdk -hXT -mEo -mEM -aBR -hUm -faR -aBR -mEM -lrB -mEM -mEM -vNK -lLO -lLO +ano +icH +pQv +qKW +iOk +vUe +qKW +pQv +jdS +pQv +pQv +pQv +pQv +rdI lLO lLO bmU @@ -50403,23 +37234,23 @@ bmU bmU bmU lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -xbS +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +hKl iIt wYi dgx @@ -50428,28 +37259,28 @@ inC dec ssY iTU -xbS +hKl cZW gAl -rhT +uDX iTu mNw lKs goR -rhT -hlu -svY -hin -oCX -oCX -oCX -hin -svY -svY -svY -pSM -pSM -nju +uDX +dQg +lXs +emW +gEp +gEp +gEp +emW +oaB +oaB +oaB +hvC +hvC +mES rtx oPo oPo @@ -50457,10 +37288,10 @@ oPo oPo oPo msK -nju +mES xKi vYy -afM +hsS bbh xjA efS @@ -50477,28 +37308,28 @@ ifZ pWk veW fQJ -bLk -bLk +wnD +wnD gQs lZV -bLk -bLk -hXT -hXT -hXT -mEo -xYG -aBR -aBR -aBR -aBR -xYG -lrB -xYG -xYG -vNK -lLO -lLO +wnD +wnD +ano +ano +ano +icH +kYl +qKW +qKW +qKW +qKW +kYl +jdS +kYl +kYl +pQv +pQv +rdI lLO lLO bmU @@ -50597,53 +37428,53 @@ bmU bmU bmU lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -xbS +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +hKl kQy agy -xbS +hKl ucL aQa vNO aQa cOt -xbS +hKl cZW gAl -rhT +uDX ixM dSS dSS dSS -rhT -hlu -svY -hin -egk -egk -egk -hin -svY -izy -svY -izy -izy -nju +uDX +dQg +lXs +emW +ftR +ftR +ftR +emW +oaB +lXs +oaB +lXs +lXs +mES ecv oPo oPo @@ -50651,12 +37482,12 @@ iQL oPo oPo xJO -nju +mES xKi rxD -afM +hsS vqk -dtR +pGd dJT lXK dtR @@ -50671,28 +37502,28 @@ gBi qxm kmj owq -bLk +wnD dOR jHC bQC rws -aak -aak -aak -aak -mEo -mEM -mEM -mEM -mEM -cqE -mEM -lrB -mEM -mEM -vNK -lLO -lLO +qne +qne +qne +qne +icH +pQv +pQv +pQv +pQv +jVi +pQv +jdS +pQv +pQv +pQv +pQv +rdI lLO lLO bmU @@ -50791,53 +37622,53 @@ bmU bmU bmU lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -luU -luU -luU -xbS -xbS -xbS -xbS -xbS -xbS -xbS -xbS -xbS -xbS +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +igr +igr +igr +hKl +hKl +hKl +hKl +hKl +hKl +hKl +hKl +hKl +hKl cZW gAl -rhT -rhT -rhT -rhT -rhT -rhT -hlu -svY -hin -egk -egk -egk -hin -svY -izy -svY -izy -izy -nju +uDX +uDX +uDX +uDX +uDX +uDX +dQg +lXs +emW +ftR +ftR +ftR +emW +oaB +lXs +oaB +lXs +lXs +mES pPZ oPo oPo @@ -50845,15 +37676,15 @@ vZn oPo oPo kJX -nju +mES xKi cNl -afM +hsS mGL dtR -rxn +kFJ fVL -xTN +nEF pZE cGd djK @@ -50873,20 +37704,20 @@ rLu uQD abc twn -aak -kzk -weT -weT -weT -uiv -cqE -mEM -lrB -mEM -mEM -vNK -lLO -lLO +qne +enT +bPc +bPc +bPc +vjf +jVi +pQv +jdS +pQv +pQv +pQv +pQv +rdI lLO bmU bmU @@ -50985,26 +37816,26 @@ bmU bmU bmU lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -luU -qBF -qBF -qBF -ems -vyH -luU +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +igr +qbd +sCK +sCK +wnS +wmf +wCD hEo bYD eof @@ -51018,20 +37849,20 @@ qlJ qlJ qlJ qlJ -nBV -hWi -svY -hin -oAf -oAf -oAf -hin -tUc -izy -svY -izy -izy -nju +gRB +dpM +lXs +emW +hso +hso +hso +emW +kRJ +lXs +oaB +lXs +lXs +mES pzC oPo oPo @@ -51039,15 +37870,15 @@ hdb oPo oPo mRl -nju +mES xKi xKi -afM +hsS xXt lyW -dtR +sJG frw -djo +sJG pZE wAu nPU @@ -51064,23 +37895,23 @@ jWO jHC vEL cSq -aak +qne mNL tCg -aak -lrB -mEM -mEM -mEM -mEM -cqE -mEM -lrB -mEM -mEM -vNK -lLO -lLO +qne +icH +pQv +pQv +pQv +pQv +jVi +pQv +jdS +pQv +pQv +pQv +pQv +rdI lLO bmU bmU @@ -51179,26 +38010,26 @@ bmU bmU bmU lLO -lLO -lLO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -cJw -luU -qBF -qBF -qBF -qBF -xsE -luU +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +oJX +igr +wtd +sCK +sCK +sCK +mbz +wCD hEo kjl hxw @@ -51212,40 +38043,40 @@ hEo hEo hEo hEo -aWR -izy -svY -fwr -oAf -oAf -oAf -hin -eKu -izy -svY -izy -izy -nju +niL +oaB +oaB +dwD +hso +hso +hso +emW +itl +lXs +oaB +lXs +lXs +mES eHd eHd eHd eHd eHd eHd -nju -nju +mES +mES xKi vYy -afM +hsS bOP ifB xjA xjA xjA mId -aBB -aBB -aBB +vsV +vsV +vsV neO vnT bIO @@ -51258,23 +38089,23 @@ twi fQC vEL upV -aak +qne mGl -aak -aak -lrB -lrB -lrB -lrB -lrB -wbH -lrB -lrB -mEM -mEM -vNK -lLO -lLO +qne +qne +ciA +jdS +jdS +jdS +jdS +gRZ +jdS +jdS +pQv +pQv +pQv +pQv +rdI lLO bmU bmU @@ -51373,26 +38204,26 @@ bmU bmU bmU bmU -lLO -lLO -fsO -fsO -fsO -cJw -cJw -cJw -cJw -cJw -cJw -cJw -ngs -gFp -iBo -qBF -qBF -qBF -qhA -luU +abf +abf +abf +abf +abf +oJX +oJX +oJX +oJX +oJX +oJX +oJX +ucz +cPY +riK +sCK +sCK +sCK +pOc +wCD hEo hEo rNE @@ -51400,39 +38231,39 @@ tVC tVC tVC oSB -ubF +pch bja -ubF -ubF -ubF -ubF -ubF -ubF -ubF -ohx -kkI -kkI -kkI -qQk -izy -izy -svY -izy -nju -nju -nju -ayH -ayH -nju -nju -nju -nju -nju -fwr -hin -afM -afM -afM +pch +pch +pch +pch +pch +pch +pch +gGu +ozC +ozC +ozC +nHo +eYq +lXs +oaB +lXs +mES +mES +mES +kho +kho +mES +mES +mES +mES +mES +dwD +emW +hsS +hsS +hsS rKv vGz vGz @@ -51441,7 +38272,7 @@ gru dDa qRz kwb -fWe +mXv nww rVt nPU @@ -51452,23 +38283,23 @@ kkN jHC vEL usE -aak -lLO -vNK -lrB -lrB -mEM -mEM -mEM -mEM -cqE -mEM -mEM -vNK -vNK -vNK -lLO +qne lLO +rdI +jdS +jdS +pQv +pQv +pQv +pQv +jVi +pQv +pQv +rdI +rdI +rdI +rdI +rdI bmU bmU bmU @@ -51571,22 +38402,22 @@ lLO lLO lLO lLO -fsO -fsO -fsO -fsO -fsO -cJw -cJw -cJw -cJw -luU -iBo -iBo -iBo -iBo -gPW -omm +abf +abf +abf +abf +abf +oJX +oJX +oJX +oJX +igr +riK +riK +riK +riK +uaP +xXe vBA vBA mUN @@ -51594,7 +38425,7 @@ psN iDB qJr kDy -ubF +pch rdN bwN hLw @@ -51604,38 +38435,38 @@ eWU uuG uuG pad -pdK -oAf -oAf -hin -izy -svY -svY -izy -nju +vGK +hso +hso +emW +sAV +oaB +oaB +lXs +mES bqt xFr eHd eHd -hin -oAf -rnG -oAf -eIG -oAf -oAf -oAf -oAf -afM +qfM +hso +vLQ +hso +oEo +hso +hso +hso +hso +hsS cnD vGz vGz pcR lXK -xbY +gHd dJT jXr -vKJ +bmJ hpg hjR aSs @@ -51648,17 +38479,17 @@ qxy buO kss lLO -vNK -lrB -mEM -mEM -mEM -mEM -mEM -vNK -vNK -vNK -vNK +rdI +jdS +pQv +pQv +pQv +pQv +pQv +rdI +rdI +rdI +rdI lLO lLO lLO @@ -51769,18 +38600,18 @@ lLO lLO lLO lLO -fsO -fsO -fsO -fsO -fsO -jqJ -mPq -jqJ -jqJ -jqJ -jqJ -jqJ +abf +abf +abf +abf +abf +vtV +mYx +vtV +vtV +vtV +vtV +oly hEo hEo dUF @@ -51788,7 +38619,7 @@ tVC nVP tVC hEo -ubF +pch lRr xiN nnp @@ -51798,29 +38629,29 @@ eyR tkx ghR oMm -jQE -oAf -oAf -hin -izy -svY -izy -izy -nju +hXO +hso +hso +emW +lXs +oaB +lXs +lXs +mES cuX bmy jUE eHd -hin -gkH -gkH -gkH -gkH -gkH -oAf -oAf -oAf -afM +qfM +uBh +uBh +uBh +uBh +uBh +hso +hso +hso +hsS yhU vGz vGz @@ -51829,27 +38660,27 @@ lXK xbY dJT jXr -gEE +bmJ nww fqd hfG tdE uYQ -bLk +wnD fof jHC jHC buO kss lLO -vNK -lJj -vNK -vNK -vNK -vNK -vNK -vNK +rdI +cHK +rdI +rdI +rdI +rdI +rdI +rdI lLO lLO lLO @@ -51966,55 +38797,55 @@ lLO lLO lLO lLO -fsO -fsO -jqJ -iBo -jqJ +abf +abf +vtV +riK +vtV oSj oSj -jqJ -jqJ -jqJ -jqJ -jqJ -iXZ -oXx -ubF -ubF -ubF +vtV +oly +oly +oly +oly +cnj +eQJ +pch +pch +pch vPS glc glc glc glc vfb -ubF -ubF -ubF -rNF -imD -itW -hin -izy -svY -aWR -aWR -nju -nju -nju -nju +pch +pch +pch +pam +gpm +ibx +emW +lXs +oaB +niL +niL +mES +mES +mES +mES vWz -hin -jkM -jkM -jGO -jkM -jkM -jGO -gXn -oAf -afM +qfM +oMV +oMV +piS +oMV +oMV +piS +mMY +hso +hsS pxq vuU vuU @@ -52029,18 +38860,18 @@ oro kvT juy cmq -bLk +wnD rBT xjg fQC wzi -aak +qne lLO -vNK -lrB -vNK -vNK -vNK +rdI +jdS +rdI +rdI +rdI lLO lLO lLO @@ -52162,19 +38993,19 @@ lLO lLO lLO lLO -jqJ -iBo -jqJ +vtV +riK +vtV lLO lLO aBR byk byk byk -jqJ -dpB -dTQ -ubF +sYI +hso +hti +pch wif wif wif @@ -52185,54 +39016,54 @@ wif wif wif wif -ubF -aKe -klo -rcu -knv -xjW -sEi -aWR -izy -izy -izy -aWR -izy -svY -hin -gkH -gkH -scL -egk -egk -qQk -gXn -oAf -oNX -oNX -rrM +pch +gLE +cam +dsv +cGO +hhb +dXV +niL +lXs +lXs +lXs +niL +lXs +oaB +emW +uBh +uBh +lMo +ftR +ftR +nHo +mMY +hso +vXI +vXI +fFj dkJ -mzv -oNX -oNX -oNX +vkf +vXI +vXI +vXI fDi dkJ -oNX -oNX +vXI +vXI ubg sOP nbs -bLk -bLk -aak +wnD +wnD +qne kss -aak -aak +qne +qne lLO -vNK -lrB -vNK +rdI +jdS +rdI lLO lLO lLO @@ -52356,19 +39187,19 @@ lLO lLO lLO lLO -jqJ -iBo -jqJ +vtV +riK +vtV lLO lLO aBR byk byk byk -jqJ -dpB -dTQ -ubF +sYI +hso +hti +pch wif wif wif @@ -52379,29 +39210,29 @@ wif wif wif wif -ubF -gkH -aCa -xlP -hin -izy -qug -aWR -izy -izy -izy -aWR -izy -svY -hin -gkH -gkH -hin -egk -egk -hin -gXn -oAf +pch +uBh +bFy +pWL +emW +lXs +qEJ +niL +lXs +lXs +lXs +niL +lXs +oaB +emW +uBh +uBh +emW +ftR +ftR +emW +mMY +hso uAq xNZ eym @@ -52409,24 +39240,24 @@ eym uGi xNz dkJ -unh +puH eKy bat mnb -oNX +vXI xqQ sOP hUY qHN uhv -mUk +phl lLO lLO lLO lLO -qVC -lrB -qVC +oGO +jdS +oGO lLO lLO lLO @@ -52550,19 +39381,19 @@ lLO lLO lLO lLO -utM -iBo -utM +uIm +riK +uIm lLO lLO lLO lLO lLO lLO -utM -dpB -dTQ -ubF +xFO +hso +hti +pch wif wif wif @@ -52573,30 +39404,30 @@ wif wif wif wif -ubF -gkH -aCa -afU -hin -izy -qug -aWR -izy -izy -izy -aWR -izy -svY -hin -teU -teU -hin -egk -egk -hin -grG -oAf -oNX +pch +uBh +bFy +dwV +emW +lXs +qEJ +niL +lXs +lXs +lXs +niL +lXs +oaB +emW +syC +syC +emW +ftR +ftR +emW +ukl +hso +vXI eyW iIu iIu @@ -52607,20 +39438,20 @@ aHx olT cwJ uFA -oNX +vXI whN jqj rWS drX cvm -mUk +phl lLO lLO lLO lLO -qVC -lrB -qVC +oGO +jdS +oGO lLO lLO lLO @@ -52744,19 +39575,19 @@ lLO lLO lLO lLO -utM -iBo -utM +uIm +riK +uIm lLO lLO lLO lLO lLO lLO -utM -iKu -vzg -ubF +xFO +erM +hRb +pch wif wif wif @@ -52767,30 +39598,30 @@ wif wif wif wif -ubF -oAf -aCa -jQE -hin -izy -qug -aWR -izy -izy -izy -aWR -izy -svY -hin -hin -hin -hin -spy -spy -hin -gXn -oAf -krx +pch +hso +bFy +hXO +emW +lXs +qEJ +niL +lXs +lXs +lXs +niL +lXs +oaB +emW +emW +emW +emW +mSC +mSC +emW +mMY +hso +jYU tqf iIu qwH @@ -52801,7 +39632,7 @@ lbG tZo vvi bqB -oNX +vXI phn kQx mna @@ -52812,9 +39643,9 @@ lLO lLO vTH lLO -qVC -lrB -qVC +oGO +jdS +oGO lLO lLO lLO @@ -52938,19 +39769,19 @@ lLO lLO lLO lLO -utM -iBo -utM +uIm +riK +uIm lLO lLO lLO vTH lMW lMW -jqJ -dpB -bKe -ubF +sYI +hso +nbZ +pch wif wif wif @@ -52961,30 +39792,30 @@ wif wif wif wif -ubF -dPr -bAz -aAG -hin -izy -qug -aWR -aWR -owF -aWR -aWR -izy -svY -izy -izy -izy -izy -izy -izy -hin -gXn -oAf -jPl +pch +xrX +eHE +kAx +emW +lXs +qEJ +niL +niL +kcG +niL +niL +lXs +oaB +lXs +lXs +lXs +lXs +lXs +lXs +emW +mMY +hso +vtd gvf iIu tFf @@ -52995,7 +39826,7 @@ mDV tPB tPB xGy -oNX +vXI dvm fzJ rqp @@ -53006,9 +39837,9 @@ cKt lLO vTH bCq -vNK -lrB -vNK +rdI +jdS +rdI lLO lLO lLO @@ -53096,55 +39927,55 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU lLO lLO lLO lLO -jqJ -iBo -jqJ +vtV +riK +vtV lLO lLO lLO vTH lMW lMW -jqJ -acO -egb -ubF +sYI +xrX +bzK +pch wif wif wif @@ -53155,54 +39986,54 @@ wif wif wif wif -ubF -oAf -fln -jQE -hin -izy -qug -svY -ide -ide -ide -ide -ide -nXa -cWi -cWi -cWi -cWi -baH -izy -hin -gXn -oAf -oNX +pch +hso +vPi +hXO +emW +lXs +qEJ +oaB +xWT +xWT +xWT +xWT +xWT +mfl +cWf +cWf +cWf +cWf +gnV +lXs +emW +mMY +hso +vXI orW iIu iIu hRq vSh -oNX +vXI dkJ alR fSs dkJ -oNX +vXI uIR mna laC xob prA -mUk +phl cKt -vNK -vNK -vNK -vNK -lJj -vNK +rdI +rdI +rdI +rdI +cHK +rdI lLO lLO lLO @@ -53290,55 +40121,55 @@ bmU bmU bmU bmU -bmU -wOy -wOy -ocj -aZd -jkT -vDT -dwX -dXO -sRi -mTJ -rMr -frn -nmy -cCQ -nmy -lCk -rMr -rMr -mEG -hNq -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU lLO lLO lLO lLO -jqJ -mPq -jqJ -jqJ -jqJ -jqJ -jqJ -jqJ -jqJ -jqJ -dpB -dpB -ubF +vtV +mYx +vtV +vtV +vtV +vtV +vtV +vtV +vtV +sYI +hso +hso +pch wif wif wif @@ -53349,31 +40180,31 @@ wif wif wif wif -ubF -kkI -iHJ -dJU -hin -izy -iFd -izy -izy -svY -hPU -hPU -hPU -gJf -hPU -hPU -izy -izy -oMX -izy -hin -gXn -oAf -oNX -npQ +pch +ozC +iMj +aSR +emW +lXs +oaM +lXs +lXs +oaB +mmy +mmy +mmy +jzA +mmy +mmy +lXs +lXs +aBe +lXs +emW +mMY +hso +vXI +iAH iIu kXW hRq @@ -53383,20 +40214,20 @@ pUf eym eym gqE -oNX -kDY -nPb +vXI +kxm +gXK qpe -lbM -lbM -mUk -mMJ -rwl -ugS -mEM -mEM -lrB -vNK +vkV +vkV +phl +xFO +bzo +eBM +pQv +pQv +jdS +rdI lLO lLO lLO @@ -53484,55 +40315,55 @@ bmU bmU bmU bmU -bmU -wOy -cgf -dXO -dwX -dwX -dwX -dwX -dXO -gGp -lWp -rMr -frn -nmy -nmy -nmy -nmy -kYR -rMr -mEG -hNq -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU lLO lLO lLO lLO -jqJ -iBo -qBF -qBF -qBF -luU -qBF -qBF -qBF -qBF -dpB -dpB -ubF +vtV +riK +sCK +sCK +sCK +igr +sCK +sCK +sCK +emW +hso +hso +pch wif wif wif @@ -53543,54 +40374,54 @@ wif wif wif wif -ubF -oAf -fln -jQE -hin -qRm -vYs -izy -izy -svY -hPU +pch +hso +vPi +hXO +emW +pzf +mvn +lXs +lXs +oaB +mmy oJp hoO vgS agL -hPU -izy -izy -oMX -izy -hin -gXn -oAf -oNX +mmy +lXs +lXs +aBe +lXs +emW +mMY +hso +vXI ykH mYh mYh -dQZ +pYW kHF kHF kHF ddC pDj mJE -oNX -maB -oAf -oAf -oAf -oAf -oAf -oAf -hin -ugS -mEM -mEM -lrB -vNK +vXI +iaK +hso +hso +hso +hso +hso +hso +emW +eBM +pQv +pQv +jdS +rdI lLO lLO lLO @@ -53678,55 +40509,55 @@ bmU bmU bmU bmU -bmU -dXO -dXO -dXO -xEC -srX -xOX -xOX -oYm -dHc -eSo -eSo -wSD -eSo -dHc -abA -nmy -tfZ -rMr -gdc -hNq -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU lLO lLO lLO -jqJ -iBo -qBF -qBF -qBF -luU -qBF -qBF -qBF -luU -dpB -dpB -ubF +vtV +riK +sCK +sCK +qbd +igr +sCK +sCK +sCK +cyg +hso +hso +pch wif wif wif @@ -53737,30 +40568,30 @@ wif wif wif wif -ubF -oAf -fln -jQE -hin -qRm -kqf -izy -izy -svY -hPU +pch +hso +vPi +hXO +emW +pzf +cZb +lXs +lXs +oaB +mmy edA edA ldC nxm -hPU -izy -izy -oMX -izy -hin -gXn -oAf -oNX +mmy +lXs +lXs +aBe +eYq +emW +mMY +hso +vXI xFE mYh mYh @@ -53771,20 +40602,20 @@ nYl rzB erU ucH -oNX -gFL -oAf -oAf -oAf -oAf -oAf -oAf -hin -mEM -mEM -mEM -lrB -vNK +vXI +tMD +hso +hso +hso +hso +hso +hso +emW +pQv +pQv +pQv +jdS +rdI lLO lLO lLO @@ -53872,55 +40703,55 @@ bmU bmU bmU bmU -bmU -kfr -ivZ -dwX -are -pTH -dwX -cbl -ckO -ckO -ckO -ckO -ckO -ckO -ckO -vjO -nmy -rMr -rMr -gdc -hNq -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU lLO lLO lLO -jqJ -iBo -qBF -qBF -qBF -luU -qBF -qBF -qBF -luU -dpB -dpB -ubF +vtV +riK +sCK +sCK +wtd +igr +sCK +sCK +sCK +ruW +hso +hso +pch wif wif wif @@ -53931,30 +40762,30 @@ wif wif wif wif -ubF -oAf -aCa -jQE -hin -izy -izy -izy -izy -svY -hPU +pch +hso +bFy +hXO +emW +lXs +lXs +lXs +lXs +oaB +mmy edA edA ldC nxm -hPU -izy -izy -oMX -okT -hin -gXn -oAf -oNX +mmy +lXs +lXs +aBe +sAV +emW +mMY +hso +vXI qGO fat fat @@ -53965,20 +40796,20 @@ ilD fat fat jHD -oNX -oAf -oAf -oAf -oAf -oAf -oAf -oAf -fwr -lrB -lrB -lrB -lrB -vNK +vXI +hso +hso +hso +hso +hso +hso +hso +dwD +jdS +jdS +jdS +jdS +rdI lLO lLO lLO @@ -54066,113 +40897,113 @@ bmU bmU bmU bmU -bmU -rUF -wEH -dwX -are -are -are -are -ckO -xnJ -jYI -rAj -hfD -iyu -ckO -frn -nmy -rMr -rMr -gdc -nrL -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU lLO lLO lLO -jqJ -iBo -qBF -qBF -qBF -hin -hin -hin -hin -hin -pjy -cVb -ubF -ubF -ubF -ubF -ubF -ubF -ubF -ubF -ubF -ubF -ubF -ubF -oAf -aCa -jQE -vEe -hin -hin -hin -hin -bSj -hPU -ike +vtV +riK +sCK +sCK +sCK +emW +emW +emW +emW +emW +cXP +cXP +pch +pch +pch +pch +pch +pch +pch +pch +pch +pch +pch +pch +hso +bFy +hXO +tnL +emW +emW +emW +emW +kPV +mmy +kMU hCC qqg -hPU -hPU -hin -hin -kMs -hin -hin -uus -gkH -oNX -eoO +mmy +mmy +emW +emW +wSO +emW +emW +pRy +uBh +vXI +wvu uQP uQP -oNX -wWt -ihh -oNX +vXI +rqS +kNS +vXI uQP uQP -eoO -fPE -oAf -oAf -oAf -oAf -oAf -oAf -oAf -hin -mEM -mEM -mEM -mEM -vNK +wvu +dFP +hso +hso +hso +hso +hso +hso +hso +emW +sVE +pQv +pQv +pQv +rdI lLO lLO lLO @@ -54260,113 +41091,113 @@ bmU bmU bmU bmU -bmU -dXO -sfm -dwX -dwX -are -dwX -dwX -ckO -hyS -mxf -ckO -cwB -aKa -ckO -frn -nmy -heT -rMr -gdc -nrL -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU lLO lLO -jqJ -iBo -iBo -iBo -iBo -fwr -oAf -rnG -oAf -hhK -oAf -oAf -hhK -oAf -oAf -oAf -oAf -rnG -oAf -kkI -oAf -rnG -oAf -hhK -gkH -aCa -afU -hhK -oAf -rnG -oAf -kkI -oAf -hhK -gkH -hce -gkH -wTC -oAf -kkI -oAf -mQJ -rnG -hhK -gXn -oAf -oAf -oAf -oAf -oAf -oAf -oAf -oAf -rnG -oAf -oAf -kkI -oAf -oAf -oAf -oAf -oAf -oAf -oAf -oAf -hin -mEM -mEM -mEM -mEM -vNK +vtV +riK +riK +riK +riK +dwD +hso +vLQ +hso +qMQ +hso +hso +qMQ +hso +hso +hso +hso +vLQ +hso +ozC +hso +vLQ +hso +qMQ +uBh +bFy +dwV +qMQ +hso +vLQ +hso +ozC +hso +qMQ +uBh +tOi +uBh +uGj +hso +ozC +hso +uot +vLQ +qMQ +mMY +hso +hso +hso +hso +hso +hso +hso +hso +vLQ +hso +hso +ozC +hso +hso +hso +hso +hso +hso +hso +hso +emW +gaL +pQv +pQv +pQv +rdI lLO lLO bmU @@ -54454,113 +41285,113 @@ bmU bmU bmU bmU -bmU -dXO -fJU -cSb -dwX -dwX -dwX -fet -ckO -lqq -pLB -tel -pLB -edi -ckO -jFc -nmy -wFM -rMr -gdc -nrL -hNq -hNq -hNq -hNq -hNq -hNq -hNq -hNq -hNq +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU lLO lLO -jqJ -qBF -hin -hin -hin -hin -oAf -pAb -pwQ -sLI -sLI -sLI -sLI -sLI -sLI -sLI -sLI -koP -sLI -fki -sLI -koP -oRd -oRd -oRd -wrA -fdT -oRd -oRd -koP -sLI -fki -sLI -oRd -oRd -cGl -oRd -oRd -sLI -fki -sLI -mzl -koP -sLI -dbV -sLI -sLI -sLI -sLI -sLI -sLI -sLI -sLI -oAf -oAf -oAf -kkI -oAf -oAf -oAf -oAf -oAf -oAf -oAf -oAf -hin -hin -hin -hin -mEM -vNK +vtV +sCK +emW +emW +emW +emW +lZv +cya +iVG +hBV +hBV +hBV +hBV +hBV +hBV +hBV +hBV +koc +hBV +xbv +hBV +koc +nPp +nPp +nPp +sDo +mpQ +rSP +nPp +koc +hBV +xbv +hBV +nPp +nPp +ayZ +nPp +nPp +hBV +xbv +hBV +gHy +koc +hBV +bve +cLa +cLa +cLa +cLa +cLa +cLa +cLa +cLa +hso +hso +hso +ozC +hso +hso +hso +hso +hso +hso +hso +hso +emW +emW +emW +emW +pQv +rdI lLO lLO bmU @@ -54648,113 +41479,113 @@ bmU bmU bmU bmU -bmU -dXO -dXO -dXO -dXO -dXO -dXO -dXO -ckO -fcq -ckO -ckO -ckO -dHh -ckO -frn -nmy -dJH -rMr -gdc -nrL -bmU -bmU -bmU -bmU -bmU -bmU -nrL -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU lLO lLO -jqJ -jqJ -rwl -egk -egk -hin -oAf -oAf -kGR -oAf -oAf -oAf -oAf -oAf -oAf -oAf -gjT -kGR -oAf -kkI -oAf -kGR -oAf -oAf -gkH -gkH -rGL -jQQ -oAf -kGR -oAf -kkI -oAf -oAf -gkH -onJ -gkH -oAf -oAf -kkI -oAf -mQJ -kGR -jQQ -oAf -oAf -oAf -oAf -oAf -oAf -oAf -oAf -oAf -oAf -oAf -oAf -kkI -oAf -oAf -oAf -oAf -oAf -oAf -oAf -oAf -hin -egk -egk -rwl -vNK -vNK +vtV +vtV +bzo +ftR +ftR +emW +hso +hso +muM +hso +hso +hso +hso +hso +hso +hso +ycJ +muM +hso +ozC +hso +muM +hso +hso +uBh +uBh +woZ +afq +hso +spg +hso +ozC +hso +hso +uBh +ugJ +uBh +hso +hso +ozC +hso +uot +muM +afq +lZv +hso +hso +hso +hso +hso +hso +hso +hso +hso +hso +hso +ozC +hso +hso +hso +hso +hso +hso +hso +hso +emW +ftR +ftR +bzo +rdI +rdI lLO lLO bmU @@ -54842,36 +41673,36 @@ bmU bmU bmU bmU -bmU -dfB -wWn -kZM -uzu -loX -loX -wpI -ckO -oNQ -nEc -txc -ujZ -ihQ -ckO -frn -nmy -nmy -rMr -gdc -nrL -bmU -bmU -bmU -bmU -bmU -bmU -nrL -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -54880,73 +41711,73 @@ bmU lLO lLO lLO -rwl -egk -egk -hin -oAf -oAf -hin -hin -fwr -hin -hin -hin -hin -hin -hin -mkN -mkN -mkN +bzo +ftR +ftR +emW +hso +hso +emW +emW +dwD +emW +emW +emW +emW +emW +emW +ast +ast +ast cNQ cNQ -mkN -mkN +ast +ast itJ -mkN -mkN -nbl +ast +ast +nmI rDl -jdU +hBO rDl -hin -qyl -imr -imr -imr -imr -imr -ioo -hin +ort +nPJ +fgF +fgF +fgF +fgF +fgF +vZK +ort rDl -xAe +hZr rDl -nbl -fwr -hin -hin -hin -hin -hin -hin -hin -hin -hin -hin -hin -hin -qQk -oAf -oAf -oAf -oAf -oAf -oAf -oAf -hin -egk -egk -rwl +nmI +mIH +emW +emW +emW +emW +emW +emW +emW +emW +emW +emW +emW +emW +nHo +hso +hso +hso +hso +hso +hso +hso +emW +ftR +ftR +bzo lLO lLO lLO @@ -55036,36 +41867,36 @@ bmU bmU bmU bmU -bmU -dfB -gcF -loX -iHZ -cng -kbI -pfj -ckO -wpJ -sOx -ewq -uUR -wpJ -ckO -frn -gVY -nmy -rMr -gdc -nrL -bmU -bmU -bmU -aUq -bmU -bmU -nrL -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -55074,14 +41905,14 @@ bmU lLO lLO lLO -rwl -egk -egk -qQk -oAf -oAf -hin -vYy +bzo +ftR +ftR +nHo +hso +hso +emW +tSb xKi vYy vYy @@ -55089,7 +41920,7 @@ vYy vYy gfx vYy -mkN +ast otO dIr ayu @@ -55101,46 +41932,46 @@ alC mGJ bbX eol -nBb +oUt cIK -hin -jPh -rDt -rDt -rDt -rDt -rDt -sGI -hin +ort +dKt +uDl +uDl +uDl +uDl +uDl +jhy +ort biS vEY cIK -nbl -oJL -dFv -dFv -dFv -dpS -lcw -dFv -dFv -dFv -khD -dFv -dFv -dFv -dpS -oAf -oAf -oAf -oAf -oAf -oAf -oAf -hin -egk -egk -rwl +nmI +kuG +pjR +pjR +pjR +pNn +saW +pjR +pjR +pjR +jDS +pjR +pjR +pjR +pNn +hso +hso +hso +hso +hso +hso +hso +emW +ftR +ftR +bzo lLO lLO lLO @@ -55230,36 +42061,36 @@ bmU bmU bmU bmU -bmU -kaP -bDZ -loX -loX -loX -stJ -bAf -mWs -mWs -mWs -nBS -mWs -mWs -mWs -uXh -gVY -nmy -cvL -gdc -aXN -gdc -gdc -gdc -gdc -gdc -gdc -aXN -gdc -aXN +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -55268,14 +42099,14 @@ bmU lLO lLO lLO -rwl -oAf -oAf -mtT -oAf -oAf -hin -vYy +bzo +hso +hso +pKS +hso +hso +emW +jAA xKi vYy vYy @@ -55283,7 +42114,7 @@ vYy vYy gfx vYy -mkN +ast fcj qPR llE @@ -55295,7 +42126,7 @@ eKU iup wPI lYl -aue +jUI fIh uYU vmy @@ -55309,32 +42140,32 @@ rTZ ntf cjI fJC -nbl -oJL -dFv -dFv -dFv -dpS -qEm -dFv -dFv -dFv -khD -dFv -oJL -oJL -vhr -oAf -oAf -oAf -oAf -oAf -oAf -oAf -oAf -oAf -oAf -rwl +nmI +kuG +pjR +pjR +pjR +pNn +kxq +pjR +pjR +pjR +jDS +pjR +cGb +cGb +xvS +hso +hso +hso +hso +hso +hso +hso +hso +hso +hso +bzo lLO lLO lLO @@ -55424,36 +42255,36 @@ bmU bmU bmU bmU -bmU -dfB -iqh -loX -fwL -cng -pXf -rgT -mWs -gXd -ttK -nBS -ttK -rjT -mWs -cWk -gVY -mlx -rMr -sRi -rMr -mTJ -nmy -rMr -rMr -rMr -rMr -rMr -fnO -kfl +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -55462,13 +42293,13 @@ bmU bmU lLO lLO -rwl -oAf -oAf -pjy -oAf -oAf -hin +bzo +hso +hso +anX +hso +hso +emW vYy xKi xKi @@ -55477,7 +42308,7 @@ xKi xKi xKi vYy -mkN +ast gfV qPR pWr @@ -55489,7 +42320,7 @@ eKU iup wPI lYl -vlh +ruc kQI xnP gxn @@ -55503,32 +42334,32 @@ mLa aQe vhx fJC -nbl -oJL -dFv -dFv -dFv -dpS -qEm -dFv -oJL -oJL -oJL -oJL -oJL -dFv -cPx -oAf -oAf -iLo -pUg -oAf -oAf -oAf -oAf -oAf -oAf -rwl +nmI +kuG +pjR +pjR +pjR +pNn +kxq +pjR +cGb +cGb +cGb +cGb +cGb +pEp +ilP +hso +hso +oHd +uCf +hso +hso +hso +hso +hso +hso +bzo lLO lLO bmU @@ -55618,36 +42449,36 @@ bmU bmU bmU bmU -bmU -kaP -asj -loX -fwL -loX -stJ -cqF -mWs -mWs -mWs -nBS -mWs -mWs -mWs -eAR -rVw -rVw -rVw -rVw -rVw -rVw -dxj -rVw -rVw -rVw -rVw -pSq -ylY -bTR +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -55656,13 +42487,13 @@ bmU bmU lLO lLO -rwl -rwl -rwl -rwl -rwl -rwl -rwl +bzo +bzo +bzo +bzo +bzo +bzo +bzo aBR aBR aBR @@ -55671,7 +42502,7 @@ aBR vYy vYy vYy -mkN +ast gjj rHt nbv @@ -55683,7 +42514,7 @@ pNK iup wPI lYl -aue +jUI izi xnP fEt @@ -55697,32 +42528,32 @@ mLa soC cjI fJC -nbl -oJL -dFv -dFv -dFv -dpS -dpS -dFv -oJL -dFv -khD -dFv -dFv -dFv -cPx -rwl -rwl -rwl -rwl -rwl -rwl -rwl -rwl -rwl -rwl -rwl +nmI +kuG +pjR +pjR +pjR +pNn +pNn +pjR +cGb +pjR +jDS +pjR +pjR +mNT +ilP +bzo +bzo +bzo +bzo +bzo +bzo +bzo +bzo +bzo +bzo +bzo lLO lLO bmU @@ -55812,36 +42643,36 @@ bmU bmU bmU bmU -bmU -kaP -uuC -bxy -bxy -aVO -stJ -asj -mWs -fXt -ttK -nBS -ttK -bFK -mWs -hiO -hiO -hiO -hiO -hiO -cPK -cPK -cPK -cPK -cPK -rhT -rhT -rhT -rhT -rhT +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -55865,7 +42696,7 @@ aBR aBR aBR aBR -ofS +kJp eiv tAU gQF @@ -55877,7 +42708,7 @@ eKU tCa nfj lYl -aue +jUI fJC aeO vge @@ -55891,21 +42722,21 @@ tmr lYl cjI fJC -nbl -xmJ -nJa -nAs -lTB -svg -lTB -lTB -bTX -dFv -cPx -cPx -cPx -cPx -cPx +nmI +wyq +qJL +cee +fNz +hHn +fNz +fNz +sGJ +pjR +ilP +ilP +ilP +ilP +ilP lLO lLO lLO @@ -56006,36 +42837,36 @@ bmU bmU bmU bmU -bmU -kaP -hzu -dUt -dUt -uaO -stJ -wVd -mWs -mWs -mWs -iCC -mWs -mWs -mWs -gxC -vgc -kML -etZ -hiO -fRE -sgb -oML -tqw -cPK -nDo -dSW -bvV -enC -rhT +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -56059,19 +42890,19 @@ lLO lLO lLO lLO -ofS -ofS -quM -quM -quM -ofS -mkN -mkN +kJp +kJp +xHO +xHO +xHO +kJp +ast +ast qqq -nbl +nmI rFO lYl -aue +jUI qcS qdl xZX @@ -56085,17 +42916,17 @@ gkF nSy cjI fJC -nbl -qbc -dFv -lhI -dFv -cPx -cPx -cPx -cPx -cPx -cPx +nmI +gyD +pjR +orT +pjR +ilP +ilP +ilP +ilP +ilP +ilP lLO lLO lLO @@ -56200,36 +43031,36 @@ bmU bmU bmU bmU -bmU -kaP -hzu -dUt -dUt -uaO -stJ -wQz -mWs -eLn -bee -vPI -eKa -rNO -mWs -iJz -oqV -eeJ -tVg -hiO -gEh -kOD -noc -gJS -cPK -bKU -ojA -wot -kcJ -rhT +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -56258,14 +43089,14 @@ lLO lLO lLO lLO -sim +pNz uBX iZQ aeT rha nfj lYl -aue +jUI qcS fSj xZX @@ -56279,12 +43110,12 @@ nfl nSy cjI fJC -nbl -xzh -dFv -dFv -dFv -cPx +nmI +xMX +pjR +pjR +pjR +ilP lLO lLO lLO @@ -56394,36 +43225,36 @@ bmU bmU bmU bmU -bmU -kaP -dMe -fOl -mNG -nKb -qGG -loX -qWo -uTN -uTN -xEd -hBk -lBu -mWs -sVS -wcR -stU -pde -hiO -iBF -mUV -kca -oyC -cPK -dSS -bAQ -kIO -uPy -rhT +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -56448,18 +43279,18 @@ lLO lLO lLO lLO -qnM -eZi lLO lLO -brL +lLO +lLO +vsN uti noS qgB rxT wPI lYl -aue +jUI fJC qoE nuS @@ -56473,12 +43304,12 @@ wAO lYl cjI fJC -nbl -qbc -cPx -cPx -siD -cPx +nmI +gyD +ilP +ilP +dgT +ilP lLO lLO lLO @@ -56588,36 +43419,36 @@ bmU bmU bmU bmU -bmU -jSe -kaP -kaP -kaP -kaP -gzr -dfB -mWs -snx -snx -uTN -tuq -paS -mWs -uJz -ixd -ryW -fxB -hiO -ncp -lxe -kYK -qcM -cPK -vum -mWW -ljJ -xCM -rhT +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -56642,18 +43473,18 @@ lLO lLO lLO lLO -qjO -wYm lLO lLO -brL +lLO +lLO +vsN wPm ogK kzy rxT wPI lYl -aue +jUI fIh xnP fEt @@ -56667,12 +43498,12 @@ mLa ntf cjI fJC -nbl -qbc -cPx -dFv -dFv -cPx +nmI +gyD +ilP +pjR +pjR +ilP lLO lLO lLO @@ -56782,36 +43613,36 @@ bmU bmU bmU bmU -bmU -khG -qSS -wYa -hxV -imM -vpT -jAO -mWs -mWs -mWs -mWs -uOx -mWs -mWs -hiO -hiO -qzE -hiO -hiO -cPK -prk -cPK -cPK -cPK -rhT -aRW -rhT -rhT -rhT +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -56836,18 +43667,18 @@ lLO lLO lLO lLO -wOK -thK lLO lLO -sim +lLO +lLO +pNz wZd bkw lQn rxT wPI lYl -beb +dHC lPz xnP gxn @@ -56861,12 +43692,12 @@ mLa njr lMH fJC -nbl -qbc -cPx -dFv -dFv -cPx +nmI +gyD +ilP +pjR +pjR +ilP lLO lLO lLO @@ -56976,36 +43807,36 @@ bmU bmU bmU bmU -bmU -khG -ohg -wYa -jeC -mPE -bsG -pNi -rin -irm -cVH -cob -haq -kGk -jcw -aKV -czB -haq -aMf -jfx -jcw -haq -icp -irm -pNi -pNi -cMZ -vBA -hGa -gcl +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -57030,18 +43861,18 @@ lLO lLO lLO lLO -mYE -qPy lLO lLO -sim -sim -sim +lLO +lLO +pNz +pNz +pNz lQn iWj nfj lYl -aue +jUI izi quf uHB @@ -57055,12 +43886,12 @@ xwu soC cjI fJC -nbl -wGH -cPx -cPx -siD -cPx +nmI +lPP +dMw +ilP +dgT +ilP lLO lLO lLO @@ -57170,36 +44001,36 @@ bmU bmU bmU bmU -bmU -khG -jgd -wYa -qeY -imM -uHq -hEo -ljM -hEo -hEo -tgv -hEo -bGW -dyS -hEo -fAS -hEo -hEo -swo -dyS -hEo -fAS -hEo -rNT -qhv -fAS -hEo -hEo -lrc +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -57225,17 +44056,17 @@ lLO lLO lLO lLO -nxk -luq lLO lLO lLO -sim +lLO +lLO +pNz vPC -pwN +ght pXE lYl -aue +jUI jYg pIK rKn @@ -57251,7 +44082,7 @@ cjI fJC boB cFn -vhS +mjw vTH peB dBY @@ -57364,36 +44195,36 @@ bmU bmU bmU bmU -bmU -khG -fZp -wYa -sux -imM -bWI -imM -xbS -xbS -xbS -xbS -xbS -xbS -xbS -wTI -czF -wTI -wTI -wTI -xcC -xcC -hwh -xcC -oyX -oyX -eHs -oyX -oyX -oyX +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -57419,17 +44250,17 @@ lLO lLO lLO lLO -gLc -nkg lLO lLO lLO -sim +lLO +lLO +pNz uzr -pwN +ght iTX lYl -lKj +fuV xDX vJO kRv @@ -57445,7 +44276,7 @@ qHI qMA ogt gLZ -vhS +mjw vTH peB dBY @@ -57558,36 +44389,36 @@ bmU bmU bmU bmU -bmU -jSe -ivE -imM -imM -imM -dCz -dGE -gsn -bCk -qUS -dVW -kuM -ndj -xbS -vwx -nxE -bNG -wip -wTI -mXM -kos -kgX -mKk -oyX -pzt -oCm -uCa -tfj -oyX +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -57618,18 +44449,18 @@ lLO lLO lLO lLO -sim +pNz uzr -pwN -nfj -lYl -tHh +ght +qcr +eDV +jYE tHh raE dxv dxv dxv -uVz +dwH dxv dxv dxv @@ -57638,8 +44469,8 @@ tHh nWH nWH jIs -vhS -vhS +mjw +mjw vTH peB dBY @@ -57752,36 +44583,36 @@ bmU bmU bmU bmU -bmU -kFT -imM -imM -drW -imM -bWI -gda -xbS -kpC -eXx -pLO -lFd -qBU -xbS -iqJ -xrd -iEr -kcZ -wTI -caH -rRq -iDm -pKy -oyX -wEB -veu -oLF -htm -oyX +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -57792,7 +44623,7 @@ bmU bmU bmU lLO -lLO +qPO bmU bmU bmU @@ -57812,9 +44643,9 @@ lLO lLO lLO lLO -sim -sim -sim +pNz +pNz +pNz tXs lYl tHh @@ -57832,8 +44663,8 @@ tHh bdp bdp mVZ -vhS -vhS +mjw +mjw vTH peB dBY @@ -57854,7 +44685,7 @@ bmU bmU bmU bmU -lLO +qPO lLO bmU bmU @@ -57946,36 +44777,36 @@ bmU bmU bmU bmU -bmU -rCz -aMC -jrQ -lOY -cVQ -kWe -lsY -xbS -aQa -eXx -eXx -eXx -dGO -xbS -eAV -ipo -xyW -cpi -wTI -bnQ -rRq -iDm -iGy -oyX -bgT -jiu -vGq -cXW -oyX +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -58008,7 +44839,7 @@ lLO bmU lLO lLO -vhS +mjw nfj tVX wRi @@ -58026,7 +44857,7 @@ wIf wRi iqc dtS -vhS +mjw lLO vTH uEb @@ -58140,36 +44971,36 @@ bmU bmU bmU bmU -bmU -mei -mei -mei -mei -mei -eFT -bjo -xbS -nyD -pnt -xBN -aQa -qnY -xbS -hrD -rnX -ajo -tyQ -wTI -ydU -aCk -rRJ -hwU -oyX -xZj -euL -jBL -guL -oyX +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -58202,25 +45033,25 @@ lLO bmU lLO lLO -vhS -vhS -vhS -dSt -vhS -vhS -vhS -dSt -vhS -vhS -vhS -dSt -vhS -vhS -vhS -dSt -vhS -vhS -vhS +mjw +mjw +mjw +qPe +mjw +mjw +mjw +mjw +mjw +mjw +mjw +mjw +mjw +mjw +mjw +qPe +mjw +mjw +mjw lLO vTH uEb @@ -58334,36 +45165,36 @@ bmU bmU bmU bmU -bmU -mei -lrU -fBE -aek -mei -qHa -bjo -xbS -xbS -xbS -xbS -xbS -xbS -xbS -vfu -aAo -aba -vKx -wTI -fvb -wOc -nVs -pKy -oyX -gZM -sAp -cNp -dsh -oyX +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -58398,20 +45229,20 @@ kAb gry gry gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry -gry +isf +peB +peB +peB +peB +peB +peB +peB +peB +peB +peB +peB +peB +eDy gry gry gry @@ -58528,36 +45359,36 @@ bmU bmU bmU bmU -bmU -mei -fAI -fmf -xYZ -mei -ddk -mfW -llL -hmu -mBh -lIH -bLX -yjj -llL -wTI -wTI -hyy -wTI -wTI -xcC -tOP -xcC -xcC -oyX -oyX -oyX -jMH -oyX -oyX +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -58594,17 +45425,17 @@ peB peB peB peB -peB -peB -peB -peB -peB -peB -peB -peB -peB -peB -peB +jWJ +jWJ +jWJ +jWJ +jWJ +jWJ +jWJ +jWJ +jWJ +jWJ +jWJ peB peB peB @@ -58722,36 +45553,36 @@ bmU bmU bmU bmU -bmU -mei -oxO -qwh -nuR -mei -rXr -bjo -llL -iMw -oup -pIV -aEh -tDB -llL -fnA -gdY -gWm -rCK -wTI -eyJ -lwz -umS -bWk -oyX -gpa -kSQ -xzX -xAj -oyX +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -58787,18 +45618,18 @@ tcC tcC tcC tcC -xvB -lLO -iQz -tcC -tcC -tcC -tcC -tcC -tcC -tcC -tcC tcC +jWJ +eEc +eEc +jWJ +eEc +eEc +eEc +jWJ +jSb +jSb +jWJ tcC tcC tcC @@ -58916,36 +45747,36 @@ bmU bmU bmU bmU -bmU -mei -czu -vOO -uoJ -fXR -gZU -ern -llL -xmP -tNK -gaU -tNK -cPo -llL -pJC -seG -jon -abM -wTI -qqx -las -nGX -jTo -oyX -sst -jHm -uvk -jhH -oyX +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -58981,18 +45812,18 @@ bmU lLO lLO lLO -vTH -bCq -dBY -lLO -lLO -lLO -lLO -lLO -lLO -lLO -lLO lLO +jWJ +eEc +eEc +eEc +eEc +eEc +eEc +jWJ +ubb +ubb +jWJ lLO lLO lLO @@ -59110,36 +45941,36 @@ bmU bmU bmU bmU -bmU -mei -lAO -dwt -eQN -mei -bWI -bjo -llL -cVd -cPo -jdv -iwu -wEi -llL -wTI -wTI -wTI -wTI -wTI -xcC -xcC -xcC -xcC -oyX -oyX -oyX -oyX -oyX -oyX +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -59175,18 +46006,18 @@ bmU lLO lLO lLO -aBR -aBR -aBR -aBR -aBR -lLO -lLO -lLO -lLO -lLO -lLO lLO +jWJ +jWJ +jWJ +jWJ +eEc +eEc +eEc +jWJ +ubb +ubb +jWJ lLO lLO lLO @@ -59304,36 +46135,36 @@ bmU bmU bmU bmU -bmU -nJv -nJv -nJv -nJv -nJv -kEk -pxi -llL -llL -llL -cZS -llL -llL -llL -aVT -fzN -rMr -rMr -mTJ -rMr -rMr -rMr -rMr -bXc -rMr -rMr -rMr -oVs -rMr +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -59369,18 +46200,18 @@ bmU lLO lLO lLO -aBR -eEc -eEc -eEc -aBR -lLO -lLO -lLO -lLO -lLO -lLO lLO +jWJ +lMW +lMW +ubb +ubb +ubb +ubb +ubb +ubb +ubb +jWJ lLO lLO lLO @@ -59498,36 +46329,36 @@ bmU bmU bmU bmU -bmU -nJv -vGJ -vqz -ikQ -nJv -sAi -tqB -xIW -cvi -liS -xUp -mPE -mPE -azw -eSo -njA -rVw -rVw -pSq -rVw -lGz -rVw -rVw -eSo -dHc -eSo -eSo -eSo -eSo +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -59551,34 +46382,34 @@ bmU bmU bmU bmU +qPO +lLO +lLO +bmU +bmU +bmU +bmU +bmU +bmU +lLO +lLO +lLO +jWJ +jWJ +lMW +lMW +ubb +ubb +ubb +ubb +ubb +ubb +ubb +jWJ +jWJ lLO lLO lLO -bmU -bmU -bmU -bmU -bmU -bmU -eyk -eDU -eDU -gSu -lFq -tWo -nGk -gSu -eDU -vDY -eDU -eDU -eDU -eDU -eDU -eDU -eDU -eDU -fRZ bmU bmU bmU @@ -59587,7 +46418,7 @@ bmU bmU lLO lLO -lLO +qPO bmU bmU bmU @@ -59692,36 +46523,36 @@ bmU bmU bmU bmU -bmU -nJv -bUx -fgD -sdf -sfV -ggp -wDi -imM -imM -heL -dLZ -mJd -swj -pWe -dJH -mrm -gdc -gdc -gdc -gdc -gdc -gdc -gdc -gdc -gdc -gdc -gdc -gdc -gdc +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -59754,25 +46585,25 @@ bmU bmU bmU bmU -chI -lLO -lLO -aBR +bLa +eDU +fRZ +pby eEc -sXB -rHf -aBR -lLO -oAM -lLO -lLO -lLO -lLO -lLO -lLO -lLO -lLO -chI +wdu +vKi +jDH +vpq +cnB +onv +jWJ +gzH +lMW +lDx +pby +eyk +eDU +pYv bmU bmU bmU @@ -59886,36 +46717,36 @@ bmU bmU bmU bmU -bmU -nJv -bOe -upW -iaM -nJv -wgJ -sGA -eqn -eqn -eqn -rkQ -eqn -eqn -eqn -nmy -oVZ -gdc -bmU -bmU -bmU -bmU -bmU -nrL -bmU -xvA -bmU -bmU -bmU -nrL +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -59950,21 +46781,21 @@ bmU bmU bmU bmU -lLO -aBR -aBR -aBR -aBR -aBR -lLO oAM -lLO -lLO -lLO -lLO -lLO -lLO -lLO +jWJ +rVE +mer +nar +jWJ +rVE +gLe +rVE +jWJ +xuq +lMW +ojb +jWJ +oAM bmU bmU bmU @@ -60080,36 +46911,36 @@ bmU bmU bmU bmU -bmU -nJv -hSx -dnB -xaZ -nJv -imM -vsq -eqn -eaH -alI -eRt -dpO -aNU -eqn -rMr -frn -gdc -bmU -bmU -bmU -bmU -bmU -nrL -bmU -bmU -bmU -bmU -bmU -nrL +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -60144,21 +46975,21 @@ bmU bmU bmU bmU -lLO -lLO -lLO -lLO -lLO -lLO -lLO oAM -lLO -lLO -lLO -lLO -lLO -lLO -lLO +jWJ +jWJ +jWJ +jWJ +jWJ +jWJ +dNV +jWJ +jWJ +jWJ +jWJ +jWJ +jWJ +oAM bmU bmU bmU @@ -60274,36 +47105,36 @@ bmU bmU bmU bmU -bmU -nJv -qca -rdw -jjI -nJv -imM -qtl -eqn -wIk -wIk -xIM -pVz -sae -eqn -mTJ -frn -gdc -bmU -bmU -nrL -hNq -hNq -hNq -hNq -hNq -hNq -nrL -hNq -hNq +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -60338,21 +47169,21 @@ bmU bmU bmU bmU -lLO -lLO -lLO -lLO -lLO -lLO -lLO -oAM -lLO -lLO -lLO -lLO -lLO -lLO -lLO +rEi +eDU +eDU +eDU +eDU +eDU +eDU +scw +eDU +eDU +eDU +eDU +eDU +eDU +hkO bmU bmU bmU @@ -60468,36 +47299,36 @@ bmU bmU bmU bmU -bmU -wyR -wyR -wyR -wyR -wyR -otQ -wyR -wyR -wyR -cGc -kYB -hrn -vui -eqn -eDe -frn -mEG -bmU -bmU -nrL -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -60536,13 +47367,13 @@ lLO lLO lLO lLO -lLO +aBR lLO lLO oAM lLO lLO -lLO +aBR lLO lLO lLO @@ -60662,36 +47493,36 @@ bmU bmU bmU bmU -bmU -wyR -hYM -hYM -sRf -sRf -sCq -hYM -hYM -wyR -qIX -rvz -wIk -vse -eqn -rMr -frn -gdc -cOB -bmU -hNq -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -60730,13 +47561,13 @@ bmU bmU lLO lLO -lLO -lLO +aBR +aBR lLO oAM lLO -lLO -lLO +aBR +aBR lLO lLO bmU @@ -60856,36 +47687,36 @@ bmU bmU bmU bmU -bmU -wyR -xFU -xFU -eIk -eIk -eIk -xFU -xFU -wyR -eqn -eqn -eqn -eqn -eqn -rMr -frn -mEG -bmU -bmU -hNq -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -61050,51 +47881,51 @@ bmU bmU bmU bmU -bmU -wyR -wCV -eIk -eIk -eIk -eIk -eIk -nVd -wyR -rMr -etx -rVw -rVw -rVw -rVw -wvv -gdc -nrL -nrL -hNq -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -61244,51 +48075,51 @@ bmU bmU bmU bmU -bmU -ahb -fAB -haZ -eIk -eIk -eIk -eIk -reO -wyR -rMr -frn -mTJ -rMr -pyx -mTJ -qrI -gdc -bmU -bmU -hNq +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -vYy -eqt -dIO -apA -sYi -lMW -vYy -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -61438,51 +48269,51 @@ bmU bmU bmU bmU -bmU -ahb -soW -haZ -eIk -eIk -pst -pst -pst -wyR -rMr -frn -gdc -gdc -gdc -gdc -gdc -gdc -bmU -bmU -hNq +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -vYy -oVG -cKt -apA -sYi -lMW -vYy -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -61632,51 +48463,51 @@ bmU bmU bmU bmU -bmU -wyR -wRX -eIk -eIk -uwA -sGQ -nNl -sGQ -wyR -eUX -frn -gdc -bmU -bmU -bmU -nrL -bmU -bmU -bmU -nrL +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -vYy -bPM -aBR -owK -aBR -aBR -aBR -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -61826,51 +48657,51 @@ bmU bmU bmU bmU -bmU -wyR -lzH -mFz -ouR -wyR -wyR -wyR -wyR -wyR -rMr -frn -mEG -bmU -bmU -bmU -nrL -bmU -bmU -bmU -nrL +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -vYy -mZx -vEu -bVJ -vEu -cey -aBR -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -62020,51 +48851,51 @@ bmU bmU bmU bmU -bmU -ghh -lmZ -vgs -hGQ -xrx -dMT -njA -dxj -rVw -rVw -wvv -gdc -bmU -bmU -nrL -nrL -hNq -hNq -hNq -hNq +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -vYy -ffA -ubb -ubb -ubb -fsb -aBR -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -62214,51 +49045,51 @@ bmU bmU bmU bmU -bmU -sWx -eIk -rNw -lzN -wyR -eEd -frn -nmy -sJj -pyx -jwr -gdc -nrL -nrL -hNq +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -vYy -wPz -uYt -bJD -gFW -moj -aBR -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -62408,50 +49239,51 @@ bmU bmU bmU bmU -bmU -wyR -gQR -haZ -reO -wyR -fzN -frn -gdc -gdc -gdc -gdc -gdc -cOB -bmU -hNq +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -vYy -vLy -ubb -noz -ubb -kth -aBR +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -62477,8 +49309,7 @@ bmU bmU bmU bmU -bmU -lLO +qPO chI bmU bmU @@ -62602,51 +49433,51 @@ bmU bmU bmU bmU -bmU -wyR -tty -haZ -eIk -wyR -dJH -frn -gdc +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU -hNq -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -vYy -aBR -boT -pUa -hbl -aBR -aBR -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -62796,51 +49627,51 @@ bmU bmU bmU bmU -bmU -wyR -soW -haZ -eIk -wyR -aBJ -mrm -gdc +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU -nrL -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -vYy -aBR -aBR -aBR -aBR -aBR -vYy -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -62990,51 +49821,51 @@ bmU bmU bmU bmU -bmU -wyR -soW -haZ -eIk -wyR -kYR -frn -gdc -bmU -bmU -nrL -nrL -hNq -hNq -hNq -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU bmU bmU bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -63184,36 +50015,36 @@ bmU bmU bmU bmU -bmU -wyR -soW -ygJ -aWW -wyR -rMr -frn -gdc -bmU -bmU -hNq -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -63378,36 +50209,36 @@ bmU bmU bmU bmU -bmU -wyR -wyR -wyR -wyR -wyR -rMr -frn -gdc -bmU -bmU -hNq -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -63572,36 +50403,36 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -63766,36 +50597,36 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -64405,42 +51236,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -64599,42 +51430,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -64793,42 +51624,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -hNq -bmU -bmU -bmU -aBR -nna -nna -aBR -cJC -nna -aBR -nna -aBR -aBR -nna -nna -nna -aBR -bmU -bmU -bmU -nrL -bmU -hNq -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -64987,42 +51818,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -hNq -bmU -bmU -bmU -aBR -uLo -kED -oKk -fIS -edn -pIF -erH -whE -nxk -vHW -rDe -pVi -aBR -bmU -bmU -bmU -nrL -bmU -nrL -nrL -nrL -nrL -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -65181,42 +52012,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -hNq -nrL -nrL -hNq -bmU -bmU -bmU -aBR -hgN -nkg -nkg -bBP -nkg -nkg -nkg -iCE -nxk -ptC -rDe -olj -aBR -bmU -bmU -bmU -nrL -bmU -nrL -bmU -bmU -hNq -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -65375,42 +52206,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -aBR -aBR -aBR -aBR -aBR -aBR -aBR -hDF -nkg -nkg -kOk -kqT -ggW -glS -kqT -qmE -fyG -cXt -kpl -aBR -bZB -bZB -aBR -aBR -aBR -aBR -nna -nna -aBR -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -65569,42 +52400,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -aBR -ftN -npu -nxk -fmw -pxG -wVh -kud -nkg -lmf -xwA -bKS -nkg -kpU -nkg -eTL -ptw -oFr -oFr -pCI -oFr -oFr -krD -kCW -iTP -nxk -tjK -xys -aBR -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -65763,42 +52594,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -aBR -oxS -aGE -nxk -lLf -hGD -ixz -qGa -eGb -lVa -eGb -eGb -lVa -bYf -eGb -cBF -oFr -oFr -fBY -nxk -tMF -oFr -oFr -oFr -miR -nxk -kKW -shw -aBR -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -65957,42 +52788,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -aBR -gZz -qdt -nxk -srh -hGD -cwD -nIs -jAz -jAz -jAz -jAz -jyl -vIL -nkg -ngG -oFr -oFr -wMH -nxk -oFr -oFr -oFr -qTx -eWT -nxk -kKW -uNZ -aBR -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -66151,42 +52982,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -aBR -nLv -nwC -nxk -bTa -hGD -oFr -wgt -oFr -oFr -oFr -oFr -oFr -vIL -nkg -ngG -oFr -oFr -uhm -nxk -hWJ -xnH -oQO -saG -arX -nxk -kKW -iwG -aBR -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -66345,42 +53176,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -aBR -aBR -nIn -elS -aBR -fGI -jyl -oFr -wdO -lzU -sSX -nBw -oge -rAo -vIL -nkg -ngG -hSN -qHo -kfB -nxk -nxk -nxk -nxk -nxk -tgk -nxk -sIO -sAI -aBR -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -66539,42 +53370,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -qHd -iho -oPu -hyg -mjK -sZz -lkN -oFr -ltS -rDe -fKn -nCP -uwZ -vUu -vIL -vMU -ngG -cWY -mgH -cgc -nxk -qiB -tLq -fDQ -nxk -tov -mbQ -uEL -wFU -aBR -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -66733,42 +53564,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -blU -rkr -oRJ -pPB -jyc -jpi -kPB -jpi -tqK -nUb -tZF -fxa -jmZ -lZY -jxc -mEH -uyc -hxR -lNC -aJw -mZE -dcw -ycs -thU -iQq -lTI -dpB -dpB -kdG -yeg -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -66927,42 +53758,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -aBR -aBR -cxh -nxk -nxk -sfK -igI -oFr -oFr -tUV -oFr -quC -oFr -oFr -vIL -kdj -ngG -oFr -ptw -nyq -nxk -myf -iIf -tjk -nxk -eOV -dpB -dpB -xnc -yeg -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -67121,42 +53952,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -nrL -kiy -bGq -eeB -nxk -jBl -wfj -oFr -oFr -ovr -oFr -ptw -oFr -oFr -vIL -kdj -ngG -fUR -tWF -nxk -nxk -nxk -nxk -nxk -nxk -qAg -iIf -sZu -itY -aBR -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -67315,42 +54146,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -aBR -kVd -etB -nxk -uzN -avi -oFr -oFr -oFr -oFr -oFr -oFr -oFr -vIL -kdj -ngG -tya -tLL -nxk -dli -xCC -xCC -nxk -nxk -nxk -nxk -kKW -tLE -aBR -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -67509,42 +54340,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -lgh -aBR -sWG -jAA -nxk -ukf -fzz -oFr -ylm -ylm -ylm -ylm -ylm -uDk -oTn -wJk -xpf -ikL -vJS -aNP -wgL -nVv -oPj -kgn -grR -eUd -nxk -qAg -kcu -aBR -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -67703,42 +54534,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -kiy -bGq -tVV -nxk -nxk -oap -eBf -eBf -eBf -eBf -eBf -eBf -nxk -qIp -nDL -qKk -nxk -nxk -nxk -oBo -tKf -rkk -rkk -nxk -nxk -nxk -nxk -gzk -aBR -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -67897,42 +54728,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -68091,42 +54922,42 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -68286,38 +55117,38 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU @@ -68480,38 +55311,38 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU -bmU +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG +wQG bmU bmU bmU diff --git a/maps/euthenia/levels/deck2.dmm b/maps/euthenia/levels/deck2.dmm index 75bd5f8d238..41904381329 100644 --- a/maps/euthenia/levels/deck2.dmm +++ b/maps/euthenia/levels/deck2.dmm @@ -2,18 +2,23 @@ "aac" = ( /turf/simulated/wall, /area/hydroponics/garden) -"aad" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "aaz" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/fitness) +"aaX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/marker_beacon/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) "abe" = ( /obj/machinery/power/terminal{ dir = 1 @@ -30,13 +35,6 @@ /obj/machinery/door/airlock/glass/atmos, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos) -"abI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/space) "abL" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, /obj/effect/floor_decal/corner_techfloor_grid{ @@ -75,18 +73,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"adz" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access"; - req_access = list(16); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"adB" = ( -/turf/simulated/wall, -/area/rnd/research/researchdivision) "adF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -94,15 +80,25 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"aek" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 +"aem" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/sign/deck/second{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/area/main_map/hallway/deck2) +"aey" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward/starboard) +"aeM" = ( +/turf/simulated/open, +/area/main_map/hallway/deck2/stairs) "aeR" = ( /obj/structure/sink{ dir = 4; @@ -110,24 +106,16 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"afb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"afs" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"afW" = ( +/obj/machinery/atmospherics/component/trinary/filter{ + filtering = "n2o" }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/port) -"aff" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/gas_storage) "afZ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -140,15 +128,18 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"agd" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" +"agf" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) +"agl" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) "agy" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -226,80 +217,86 @@ /obj/structure/railing, /turf/simulated/open, /area/security/brig) -"aik" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"aiv" = ( -/obj/machinery/atmospherics/tvalve/digital/mirrored{ +"aiq" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"aiO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 8 }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) -"aiW" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 8; - name = "Waste Buffer Tank"; - start_pressure = 0 - }, -/turf/simulated/floor/plating, -/area/space) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"ajb" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/substation/cargo) "ajf" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"ajw" = ( -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) +"ajq" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) "ajJ" = ( /obj/item/bedsheet/medical, /obj/structure/bed/padded, /turf/simulated/floor/carpet/tealcarpet, /area/medical/patient_b) -"ajQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +"akq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"akm" = ( -/obj/machinery/atmospherics/tvalve/digital/mirrored{ - dir = 8 +/obj/structure/cable{ + icon_state = "0-8" }, +/obj/machinery/power/apc/direction_bump/north, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) -"akZ" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/machinery/camera/network/engineering{ +/area/main_map/maintenance/atmospheric_substation/command) +"aks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/hallway/deck2/starboard_fore) +"akU" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "fighterbaytransportexit"; + name = "Transport Tunnel"; + pixel_x = 27; + pixel_y = -5; + req_one_access = list(1,29,38,47) + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/transport_tunnel) +"alh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/hallway) "ali" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -310,6 +307,11 @@ /obj/machinery/power/apc/direction_bump/west, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/storage) +"aln" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "alw" = ( /obj/machinery/requests_console{ announcementConsole = 1; @@ -320,39 +322,6 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"alz" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_5) -"alP" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"alZ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"amm" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shuttle_sensor{ - dir = 5; - id_tag = "shuttlesens_exp_int"; - pixel_y = -24 - }, -/obj/structure/closet/walllocker/emergsuit_wall{ - dir = 8; - pixel_x = -32 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "amq" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -384,13 +353,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"amV" = ( -/turf/simulated/wall, -/area/engineering/hallway) -"amW" = ( -/obj/structure/catwalk, -/turf/simulated/floor/airless/ceiling, -/area/space) "anf" = ( /obj/structure/railing, /obj/structure/window/reinforced, @@ -411,13 +373,10 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aoe" = ( +"anz" = ( /obj/structure/catwalk, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/airless/ceiling, -/area/space) +/turf/simulated/open, +/area/main_map/maintenance/deck_two) "aoA" = ( /obj/machinery/atmospherics/component/unary/vent_pump/high_volume, /obj/machinery/atmospherics/pipe/simple/visible/green{ @@ -430,42 +389,24 @@ /obj/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, /area/engineering/engine_eva) -"aoJ" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/reinforced, -/area/space) -"aoM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, +"aoH" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/patient_wing) +"apO" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass/atmos, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) -"aoY" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 +/area/engineering/atmos) +"aqc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hanger 1 B" }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/deck_two/forward/starboard) -"apu" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"apF" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/b) "aqk" = ( /obj/effect/floor_decal/corner/yellow{ dir = 10 @@ -483,29 +424,16 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"aqn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"aqo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"aqm" = ( +/obj/machinery/r_n_d/server/robotics, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/button/remote/blast_door{ - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - pixel_x = -14; - pixel_y = -25; - req_access = list(67) +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=80"; + name = "Server Base" }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/area/server) "aqx" = ( /turf/simulated/open, /area/engineering/hallway) @@ -517,52 +445,48 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) +"aqJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/gas_storage) "arg" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/reinforced/airless, /area/space) -"arm" = ( -/obj/machinery/atmospherics/tvalve/digital, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) "arp" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/tiled/steel, /area/space) -"arF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"arH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/atmos{ + name = "Cargo Atmospherics Backup"; + req_access = list(24) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"arG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/maintenance/dormitory) -"arQ" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm6"; - name = "Room 6 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 +/area/main_map/maintenance/atmospheric_substation/cargo) +"arZ" = ( +/obj/machinery/conveyor{ + dir = 10 }, -/obj/structure/closet/crate/bin{ - anchored = 1 +/obj/map_helper/conveyor/belt{ + id_tag = "fuel_belt"; + name = "Fuel Belt" }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) +/turf/simulated/floor/reinforced, +/area/engineering/atmos/processing) "asi" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -579,22 +503,30 @@ }, /turf/simulated/open, /area/quartermaster/warehouse) -"asH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, +"asG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/b) +"atO" = ( +/obj/effect/floor_decal/techfloor/orange{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hallway) -"aux" = ( -/obj/structure/railing, -/obj/structure/railing{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/open, -/area/maintenance/deck_two/aft) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"auf" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos/gas_storage) "avr" = ( /obj/structure/cable{ icon_state = "2-4" @@ -607,18 +539,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"avy" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 1; - name = "Medical Waste Buffer"; - start_pressure = 0 +"avx" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"avF" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "avG" = ( /obj/structure/table/woodentable, /obj/item/towel/random, @@ -630,33 +559,9 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/wood, /area/crew_quarters/showers) -"avI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/xenoflora_storage) "avX" = ( /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/mechbay) -"awb" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) "awv" = ( /obj/structure/table/reinforced, /obj/fiftyspawner/rods, @@ -679,50 +584,89 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/mechbay) +"awU" = ( +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/underone) +"awY" = ( +/turf/simulated/wall/prepainted/engineering, +/area/engineering/storage) "axC" = ( /obj/structure/cable/green{ icon_state = "2-8" }, /turf/simulated/floor/plating, /area/maintenance/substation/security) -"axG" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) "axH" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, /area/security/brig) +"axI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"ayD" = ( +/obj/machinery/space_heater, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/hallway/primary/underone) "ayM" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/table/hardwoodtable, /obj/item/deck/cards, /turf/simulated/floor/carpet, /area/medical/patient_wing) -"ayU" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 +"ayZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"azM" = ( -/obj/structure/table/steel, -/obj/machinery/ai_status_display{ - pixel_x = 32 +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -25 +/obj/machinery/power/apc/direction_bump/east, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) +"azx" = ( +/obj/structure/railing{ + dir = 8 }, /turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"azB" = ( +/obj/machinery/door/airlock/engineering{ + name = "Flight Deck Substation"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, /area/space) -"azT" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos/storage) "aAa" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 @@ -733,6 +677,18 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) +"aAo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/starboard) +"aAN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "aAZ" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/atmospherics/pipe/simple/visible/green{ @@ -741,34 +697,27 @@ /obj/effect/floor_decal/borderfloor/corner, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"aBz" = ( -/obj/machinery/cryopod{ - dir = 2 +"aBQ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"aBM" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 +/obj/structure/sign/deck/second{ + pixel_y = 32 }, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"aCj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"aCf" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/server) +"aCp" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-10" }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "aCC" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -778,29 +727,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"aCE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"aCX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/port) -"aDj" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"aDB" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel, -/turf/simulated/wall/r_wall, -/area/space) "aDN" = ( /obj/structure/railing, /obj/structure/railing{ @@ -822,6 +748,17 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) +"aDY" = ( +/obj/structure/cable, +/obj/machinery/power/apc/direction_bump/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) "aEw" = ( /obj/machinery/firealarm{ layer = 3.3; @@ -841,15 +778,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"aEU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_1) "aFc" = ( /obj/effect/floor_decal/corner/yellow{ dir = 10 @@ -859,21 +787,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"aFA" = ( -/obj/machinery/door/airlock/command{ - id_tag = "RDdoor"; - name = "Research Director"; - req_access = list(30) +"aFW" = ( +/obj/structure/cable/green{ + icon_state = "16-0" }, -/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, -/area/rnd/rdoffice) -"aGy" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/central_two) +/area/main_map/maintenance/deck_two/forward/starboard) "aGz" = ( /obj/effect/floor_decal/techfloor{ dir = 6 @@ -881,14 +802,6 @@ /obj/structure/flora/pottedplant/dead, /turf/simulated/floor/tiled/techfloor, /area/server) -"aGI" = ( -/obj/machinery/door/airlock/maintenance/engi, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) "aGV" = ( /obj/structure/railing{ dir = 8 @@ -904,14 +817,27 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research/researchdivision) +"aHa" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/processing) "aHb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"aHw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) +"aIb" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/main_map/maintenance/atmospheric_substation/civilian) +"aIl" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/direction_bump/north, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/starboard_fore) "aIF" = ( /obj/machinery/mineral/equipment_vendor/engineering, /turf/simulated/floor/tiled/techmaint, @@ -928,24 +854,33 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"aIQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ +"aIX" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/door/airlock/glass/engineeringatmos{ - name = "Damage Control Storage" - }, /turf/simulated/floor/tiled/techmaint, -/area/space) -"aJb" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 +/area/main_map/maintenance/deck_two) +"aJn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/random/trash_pile, /turf/simulated/floor/plating, -/area/maintenance/dormitory) +/area/main_map/maintenance/atmospheric_substation/civilian) "aJt" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -983,28 +918,23 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/mechbay) -"aKp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"aKz" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/structure/sign/deck/second{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"aKK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +"aJU" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) +/area/main_map/hallway/deck2) +"aKv" = ( +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 23 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/security/observation) "aKS" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -1015,32 +945,16 @@ /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/gas_storage) -"aLo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 5 +"aLu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"aLJ" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/bed/double/padded, -/obj/random/bedsheet/double, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"aLR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/atmospheric_substation/ai) +"aLS" = ( +/obj/structure/closet/l3closet/janitor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "aMb" = ( /obj/structure/bed/chair/sofa/black/left, /obj/effect/floor_decal/spline/fancy/wood{ @@ -1048,17 +962,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/bar) -"aMk" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Maintenance Access"; - req_one_access = list(28) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen) "aMv" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -1079,6 +982,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/space) +"aMU" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "aMX" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1110,15 +1028,17 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"aNp" = ( -/obj/random/trash_pile, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/space) -"aNA" = ( -/obj/structure/closet/wardrobe/green, +"aNs" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, /turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/area/crew_quarters/bar) +"aNJ" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_two/aft/port) "aNT" = ( /obj/machinery/power/terminal{ dir = 1 @@ -1131,6 +1051,9 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) +"aNZ" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/main_map/maintenance/atmospheric_substation/ai) "aOc" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -1144,18 +1067,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/cargo) -"aOi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/port) "aOu" = ( /obj/structure/table/reinforced, /obj/fiftyspawner/glass, @@ -1175,6 +1086,24 @@ }, /turf/simulated/floor/plating, /area/space) +"aPu" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/space) +"aPF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + name = "Medical Atmospherics Backup"; + req_access = list(24) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "aPL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -1197,25 +1126,12 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"aPY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 +"aQy" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/space) -"aQa" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 7 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "aQF" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/meter, @@ -1228,18 +1144,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/fitness) -"aQN" = ( -/obj/structure/sign/department/ass{ - pixel_x = 29 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "aQU" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -1249,12 +1153,10 @@ }, /turf/simulated/floor/reinforced, /area/space) -"aRe" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) +"aRq" = ( +/obj/structure/wall_frame, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/starboard) "aRM" = ( /obj/machinery/door/airlock/command{ id_tag = "RDdoor"; @@ -1269,29 +1171,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techfloor, /area/rnd/rdoffice) -"aRR" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) "aRS" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"aSL" = ( -/obj/machinery/atmospherics/component/binary/algae_farm/filled{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "aTr" = ( /obj/structure/railing{ dir = 4 @@ -1320,6 +1203,11 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/shield_gen) +"aTH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "aTJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -1344,6 +1232,18 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/hydroponics) +"aTX" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "hanger1b"; + layer = 3.3; + name = "Hanger 1 B Shutters" + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/b) "aUc" = ( /turf/simulated/open, /area/hydroponics/garden) @@ -1354,22 +1254,6 @@ /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/techfloor/grid, /area/medical/patient_d) -"aUI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aUJ" = ( -/obj/item/radio/beacon, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"aUN" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) "aUO" = ( /obj/machinery/door/airlock/glass/engineering{ name = "Engineering Equipment" @@ -1386,56 +1270,37 @@ /obj/machinery/atmospherics/pipe/manifold/visible/purple, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"aVz" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/directions/roomnum{ - dir = 5; - pixel_x = -32; - pixel_y = -3 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aVU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"aVZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"aWI" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, +"aUW" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"aWK" = ( -/turf/simulated/wall, -/area/maintenance/deck_two/aft) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) +"aWs" = ( +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/obj/random/soap, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"aWG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/underone) "aXz" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/storage) -"aXH" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "aXK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -1445,44 +1310,39 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/security/brig) -"aXU" = ( -/obj/structure/sign/directions/evac{ - dir = 8 +"aYl" = ( +/obj/machinery/door/firedoor{ + dir = 1 }, -/turf/simulated/wall, -/area/vacant/vacant_office) -"aYi" = ( -/obj/structure/bed/chair/comfy/teal{ +/obj/effect/floor_decal/techfloor/orange{ dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aYA" = ( -/obj/item/radio/intercom{ - pixel_y = -24 +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) +"aYx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"aZm" = ( +/obj/machinery/door/airlock{ + name = "Restroom" }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aZc" = ( -/obj/structure/table/standard, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"aZo" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "aZs" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 @@ -1532,10 +1392,19 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"baa" = ( -/obj/structure/closet/firecloset, +"aZH" = ( /turf/simulated/floor/plating, -/area/maintenance/deck_two) +/area/main_map/maintenance/deck_two/forward/starboard) +"aZS" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"aZT" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward) "bak" = ( /obj/structure/cable{ icon_state = "1-8" @@ -1546,27 +1415,19 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/maintenance/tool_storage) -"baz" = ( -/obj/machinery/door/airlock/glass/security{ - name = "Observation"; - req_access = list(2) +"bao" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"baW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/space) -"baI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"baJ" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_4) -"baY" = ( -/obj/structure/fitness/weightlifter, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/starboard) "bbw" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 9 @@ -1589,6 +1450,21 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) +"bbG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "bbH" = ( /obj/machinery/door/airlock/hatch{ name = "Main Fuel Storage" @@ -1599,27 +1475,6 @@ "bbR" = ( /turf/simulated/wall, /area/maintenance/cargo) -"bcg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_two) -"bcj" = ( -/obj/machinery/camera/network/outside{ - dir = 5 - }, -/turf/space, -/area/space) -"bcn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) "bcv" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/access_button/airlock_interior{ @@ -1628,6 +1483,9 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) +"bcI" = ( +/turf/space, +/area/main_map/hallway/deck2/stairs) "bcK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -1656,49 +1514,58 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bdP" = ( +"bcZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) +"bda" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ dir = 4 }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) -"bdS" = ( -/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) +"bez" = ( +/obj/machinery/atmospherics/component/trinary/filter/mirrored{ + dir = 1; + filtering = "n2" + }, /turf/simulated/floor/tiled/techfloor, -/area/bridge/bunker) -"bek" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/area/engineering/atmos/gas_storage) "beG" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"bfg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) "bfJ" = ( /obj/machinery/door/firedoor, /obj/structure/catwalk, /obj/machinery/door/window/brigdoor/eastleft, /turf/simulated/floor/plating, /area/security/brig) +"bfO" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "bfR" = ( /obj/machinery/door/airlock/glass/engineering, /obj/machinery/door/firedoor/glass, @@ -1706,20 +1573,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/hallway) +"bga" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/sign/deck/second{ + pixel_y = 32 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/recreation_area_hallway) "bgc" = ( /obj/structure/sign/warning/hot_exhaust, /turf/simulated/wall/r_wall, /area/engineering/atmos/processing) -"bgh" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) "bgs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -1752,76 +1619,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/cargo) -"bhd" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/primary/central_two) -"bhu" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) -"bhG" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock{ - id_tag = "dorm4"; - name = "Dorm 4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"bhY" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/space) -"bih" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/space) -"bin" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "bir" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "ENGINEERING" }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"bit" = ( -/obj/structure/bed/padded, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/obj/random/bedsheet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) "biI" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -1830,18 +1633,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"biZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "shuttle_outbound" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "bjD" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -1855,31 +1646,10 @@ "bjJ" = ( /turf/simulated/floor/bluegrid, /area/rnd/robotics/mechbay) -"bjU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, +"bjK" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/reinforced, /area/space) -"bjY" = ( -/obj/machinery/atmospherics/tvalve/digital, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) -"bkb" = ( -/obj/machinery/door/airlock/maintenance/command{ - name = "Command Atmospheric Substation" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) "bko" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 5 @@ -1912,24 +1682,13 @@ /obj/item/duct_tape_roll, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"blg" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +"blj" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, /turf/simulated/floor/plating, -/area/maintenance/dormitory) -"blh" = ( -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area_hallway) -"blv" = ( -/obj/structure/closet/crate, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/turf/simulated/floor/plating, -/area/space) +/area/main_map/maintenance/deck_two) "bmj" = ( /obj/structure/railing, /turf/simulated/open, @@ -1942,6 +1701,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_b) +"bnA" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "bnD" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -1955,6 +1720,9 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/hallway) +"boa" = ( +/turf/simulated/wall/prepainted/cargo, +/area/quartermaster/warehouse) "bok" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, @@ -1976,53 +1744,71 @@ }, /turf/simulated/floor/reinforced, /area/space) -"boL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"boO" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) +"boM" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) "boQ" = ( /obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/monotile, /area/space) -"bqm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ +"boW" = ( +/obj/structure/railing{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/machinery/door/window/northleft{ - name = "Shower"; - req_access = list() +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/curtain/open/shower/engineering, /turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_10) +/area/main_map/hallway/deck2/stairs) +"boX" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_two/forward/starboard) +"bpe" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/stairs) +"bpg" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) +"bqw" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"bqz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"bqH" = ( +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) "bqR" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -2035,6 +1821,12 @@ }, /turf/simulated/floor/plating, /area/security/brig) +"bre" = ( +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) "bri" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -2060,71 +1852,67 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/research/researchdivision) -"brQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"bsh" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/space) -"bsw" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward) -"bsL" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +/area/main_map/maintenance/deck_two/starboard) +"bsN" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"bsV" = ( +/obj/structure/sign/deck/second, +/turf/simulated/wall/r_wall/prepainted/security, +/area/space) "btP" = ( /obj/structure/sign/deck/second, /turf/simulated/wall/r_wall, /area/space) +"btX" = ( +/obj/structure/mopbucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/cargo) "buh" = ( /obj/effect/floor_decal/corner/green/border{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bum" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 4; - name = "Command Waste Buffer"; - start_pressure = 0 +"buy" = ( +/obj/machinery/door/firedoor{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"buw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"bvc" = ( -/mob/living/simple_mob/animal/passive/penguin/emperor{ - desc = "There's a tag on this pengiun that says Skipper. You're not even sure where the chef found them."; - name = "Skipper" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"bvm" = ( -/turf/simulated/wall/r_wall, -/area/medical/patient_c) +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/Hangar_bay/deck2) +"bvd" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rift/station/fighter_bay/hangar) "bvp" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, @@ -2142,24 +1930,32 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"bvS" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/oxygen_pump{ - pixel_y = -30 - }, -/obj/machinery/oxygen_pump{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "bvX" = ( /obj/structure/sign/deck/second{ pixel_x = -32 }, /turf/simulated/open, /area/rnd/rdoffice) +"bvZ" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/main_map/maintenance/deck_two/forward) +"bwl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/atmospheric_substation/security) +"bwo" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "bwq" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2170,16 +1966,27 @@ /obj/structure/table/rack/shelf/steel, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) -"bwG" = ( -/obj/structure/window/reinforced{ +"bwD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"bwO" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/structure/closet/firecloset, -/obj/structure/window/reinforced{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "bxa" = ( /obj/machinery/door/airlock/maintenance/sec, /obj/machinery/door/blast/regular{ @@ -2191,48 +1998,64 @@ }, /turf/simulated/floor/tiled/techmaint, /area/security/brig) +"bxl" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/quartermaster/hallway) "bxr" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_smes) -"bxC" = ( -/obj/structure/lattice, +"bxt" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"bxu" = ( +/obj/structure/cable/green{ + icon_state = "32-8" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, /obj/structure/railing{ dir = 1 }, -/turf/space, -/area/space) -"bxN" = ( -/obj/structure/ladder, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/open, +/area/main_map/maintenance/deck_two) +"bxG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) +/area/main_map/Hangar_bay/deck2) "bxO" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"bxX" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" +"bye" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward) +"byt" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"byd" = ( -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/structure/bed/double/padded, -/obj/random/bedsheet/double, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +/area/main_map/maintenance/deck_two) "byu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -2251,6 +2074,26 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/gas_storage) +"byD" = ( +/obj/structure/sign/directions/security{ + dir = 2; + pixel_y = -4 + }, +/obj/structure/sign/directions/science{ + dir = 2; + pixel_y = 3 + }, +/turf/simulated/wall, +/area/main_map/hallway/deck2) +"byE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "byF" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -2260,15 +2103,6 @@ }, /turf/simulated/floor/reinforced, /area/space) -"bze" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/space) "bzk" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -2281,31 +2115,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/service) -"bAd" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 +"bzl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/landmark{ + name = "lightsout" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/wood, /area/crew_quarters/showers) -"bAH" = ( -/obj/structure/sign/deck2{ - pixel_y = 32 +"bBv" = ( +/obj/machinery/light_switch{ + pixel_y = -25 }, -/turf/simulated/open, -/area/maintenance/deck_two/aft) -"bAS" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_7) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "bBB" = ( /obj/machinery/door/airlock/maintenance/sec, /obj/machinery/door/blast/regular{ @@ -2323,18 +2147,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/space) -"bBM" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"bBS" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/space) "bCc" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, @@ -2348,13 +2160,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bCP" = ( -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/scale, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) "bDm" = ( /obj/structure/fitness/weightlifter, /obj/effect/floor_decal/corner/lightgrey/border{ @@ -2362,6 +2167,14 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) +"bDD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "bEn" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 9 @@ -2369,36 +2182,82 @@ /obj/landmark/spawnpoint/job/atmospheric_technician, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"bFD" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 +"bEC" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) +"bEU" = ( +/obj/structure/ladder, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"bFb" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "hanger1a"; + layer = 3.3; + name = "Hanger 1 A Shutters" }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"bHn" = ( -/obj/machinery/atmospherics/component/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "mix_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - on = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/processing) -"bIo" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/a) +"bFh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/port) +/area/main_map/maintenance/deck_two) +"bFx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar_backroom) +"bFA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rift/station/fighter_bay/maintenance) +"bFQ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_two/aft/starboard) +"bGg" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two) +"bGD" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled/techfloor, +/area/space) +"bHo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"bHV" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_access = list(16); + req_one_access = list() + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/atmospheric_substation/ai) +"bId" = ( +/turf/simulated/open, +/area/main_map/hallway/deck2/starboard_fore) "bIt" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -2409,16 +2268,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_d) -"bIw" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/deck_two/aft) -"bIO" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/security/brig) "bJc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -2428,6 +2277,24 @@ }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/cargo) +"bJG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) +"bJL" = ( +/obj/machinery/door/airlock/engineering{ + name = "Hangar Substation" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/substation/flight_deck) "bKa" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -2439,6 +2306,24 @@ /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/plating, /area/quartermaster/foyer) +"bKr" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/main_map/maintenance/deck_two/forward/starboard) +"bKM" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Hanger 1 B" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2/b) +"bKZ" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) "bLr" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -2449,9 +2334,21 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) -"bLN" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +"bMO" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hanger 1 A" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/a) +"bMR" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/substation/command) +"bNf" = ( +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2/starboard_fore) "bOC" = ( /obj/effect/floor_decal/techfloor{ dir = 8 @@ -2462,33 +2359,51 @@ /obj/machinery/power/apc/direction_bump/west, /turf/simulated/floor/tiled/techfloor, /area/server) -"bOQ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"bPl" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) -"bPZ" = ( +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) +"bPJ" = ( +/obj/structure/table/standard, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"bRv" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"bQO" = ( -/obj/machinery/computer/ship/engines{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "bRB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -2499,22 +2414,11 @@ "bRO" = ( /turf/simulated/open, /area/space) -"bRT" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"bSI" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) -"bSO" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) +"bSH" = ( +/obj/structure/lattice, +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_two) "bSU" = ( /obj/machinery/door/airlock/research{ name = "Toxins Storage"; @@ -2533,21 +2437,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/robotics/mechbay) -"bTh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "bTl" = ( /obj/machinery/camera/network/command{ dir = 1 @@ -2557,22 +2446,27 @@ "bTC" = ( /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"bTS" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 +"bUF" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/door/airlock/glass{ + name = "Hanger 1 A" }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"bVy" = ( -/obj/machinery/door/airlock/maintenance/rnd, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/techmaint, -/area/rnd/anomaly_lab) +/area/main_map/Hangar_bay/deck2/a) +"bUR" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/random/trash_pile, +/turf/space/basic, +/area/space) "bVM" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple, /obj/machinery/meter, @@ -2581,12 +2475,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"bWv" = ( -/obj/structure/cable{ - icon_state = "1-4" +"bWt" = ( +/obj/landmark{ + name = "lightsout" }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/port) +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) "bWx" = ( /obj/machinery/firealarm{ dir = 8; @@ -2600,22 +2494,31 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) -"bWG" = ( -/obj/structure/ladder, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/starboard) "bXx" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) +"bXy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2/stairs) +"bXU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) +"bYA" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_eva) "bYF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -2672,16 +2575,27 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/hallway) -"bZv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 +"bZI" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) +"cac" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) +"cae" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/effect/floor_decal/steeldecal/steel_decals10, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "cal" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -2695,16 +2609,45 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) +"cao" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "caB" = ( /obj/structure/grille, /obj/structure/lattice, /turf/space, /area/space) -"caE" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/tool_storage) +"caV" = ( +/obj/structure/mopbucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"cbd" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/space/basic, +/area/space) "cbF" = ( /obj/structure/cable{ icon_state = "32-2" @@ -2715,15 +2658,33 @@ /obj/structure/lattice, /turf/simulated/open, /area/space) -"ccj" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" +"cbL" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Crew Quarters" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/wood, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck2) +"cbU" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) +"ccc" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/camera/network/civilian, +/obj/structure/flora/pottedplant/smalltree, +/turf/space/basic, /area/space) "ccM" = ( /turf/simulated/floor/tiled/white, @@ -2735,6 +2696,11 @@ /obj/machinery/meter, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) +"cde" = ( +/obj/mecha/combat/fighter/pinnace/loaded, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/hangar) "cdl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2764,24 +2730,9 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) -"cdI" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/port) +"cdB" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/crew_quarters/fitness) "cdR" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -2791,6 +2742,12 @@ "cea" = ( /turf/simulated/open, /area/rnd/rdoffice) +"cef" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) "cel" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -2810,21 +2767,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"ceu" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "cex" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -2837,50 +2779,33 @@ /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) -"cfu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +"ceU" = ( +/obj/structure/bed/chair/sofa/purp/left{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"cfA" = ( -/turf/simulated/wall, -/area/maintenance/atmospheric_substation/service) +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) "cfF" = ( /turf/simulated/floor/tiled/techmaint, /area/maintenance/cargo) -"cfR" = ( +"cfP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "1-2" }, -/obj/machinery/power/apc/direction_bump/north, /turf/simulated/floor/tiled/techmaint, -/area/space) -"cgh" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"cgN" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/main_map/maintenance/deck_two) +"chl" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) -"chV" = ( -/turf/simulated/wall, -/area/maintenance/atmospheric_substation/research) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "cid" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -2891,10 +2816,28 @@ /obj/structure/stairs/spawner/north, /turf/simulated/floor/reinforced/airless, /area/space) -"ciJ" = ( -/obj/structure/sign/directions/cryo, -/turf/simulated/wall, -/area/hallway/primary/central_two) +"cis" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/patient_a) +"ciy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) +"ciH" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "ciL" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/power/crypto_miner{ @@ -2902,17 +2845,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"ciZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"cji" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) "cjl" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/effect/floor_decal/industrial/danger{ @@ -2920,6 +2852,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) +"cjs" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "cjy" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, /obj/effect/floor_decal/industrial/danger{ @@ -2927,13 +2863,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"cjU" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/open, -/area/maintenance/deck_two/aft) "ckt" = ( /obj/machinery/door/airlock{ name = "Hydroponics"; @@ -2947,15 +2876,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"cky" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) +"ckX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) "clm" = ( /obj/structure/cable{ icon_state = "0-8" @@ -2969,70 +2893,55 @@ }, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_smes) +"clr" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/space/basic, +/area/space) "clx" = ( /obj/machinery/light/no_nightshift{ dir = 8 }, /turf/simulated/floor/tiled, /area/hydroponics) -"clE" = ( -/obj/structure/bed/double/weaversilk_nest, -/obj/effect/debris/cleanable/cobweb2, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) -"cmf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +"clM" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "hangar_pad"; + name = "Hangar Bay Blast Door" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/obj/machinery/atmospheric_field_generator/perma, +/turf/simulated/floor/reinforced, +/area/space) "cms" = ( /obj/machinery/camera/network/engine{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"cmA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"cmS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/port) -"cni" = ( -/obj/structure/closet/chefcloset, -/obj/item/glass_jar, -/obj/item/retail_scanner/civilian, -/obj/item/soap/nanotrasen, -/obj/item/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/packageWrap, -/obj/item/packageWrap, -/obj/item/packageWrap, -/obj/machinery/light/no_nightshift{ +"cnF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"cnn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) "cnH" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/meter, @@ -3056,71 +2965,49 @@ /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"coJ" = ( -/obj/machinery/shower{ - dir = 1 +"coN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"coX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"coZ" = ( -/obj/structure/cryofeed, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +/area/maintenance/substation/flight_deck) "cpc" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"cpw" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/engineering) -"cpW" = ( -/obj/effect/floor_decal/techfloor/orange{ +"cpl" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/cargo) +"cpo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"cqf" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"cpY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"cqF" = ( -/obj/structure/curtain/open/shower/engineering, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_two/aft/starboard) "cqS" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Forward Point Defense Subgrid"; @@ -3137,50 +3024,29 @@ }, /turf/simulated/floor/reinforced, /area/space) -"cqV" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"crA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ +"cru" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"cry" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) +/area/main_map/maintenance/atmospheric_substation/cargo) "crM" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"crY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"csw" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/hallway/primary/central_two) -"csB" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"csS" = ( -/obj/structure/table/rack, -/obj/item/suit_cooling_unit, -/obj/item/suit_cooling_unit, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) "csV" = ( /obj/structure/bed/chair/sofa/black/right, /obj/effect/floor_decal/spline/fancy/wood{ @@ -3197,6 +3063,32 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) +"ctg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"ctG" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) +"ctR" = ( +/obj/structure/sign/deck2{ + pixel_y = 32 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) "cuj" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/structure/cable/yellow{ @@ -3207,15 +3099,13 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"cur" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) +"cuq" = ( +/obj/structure/table/rack, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) "cvn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -3229,13 +3119,19 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"cvZ" = ( -/obj/structure/table/rack, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) +"cvx" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) "cwd" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -3245,22 +3141,24 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"cwp" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 1; - name = "Science Waste Buffer"; - start_pressure = 0 +"cxb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"cwP" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"cxc" = ( +/obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2/stairs) "cxs" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -3273,6 +3171,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) +"cxK" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "cxY" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 @@ -3280,10 +3182,10 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled/white, /area/medical/patient_d) -"cyd" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/port) +"cxZ" = ( +/obj/structure/sign/deck2, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_eva) "cyO" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 6 @@ -3291,60 +3193,56 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"czk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) -"czv" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/conveyor{ - dir = 8; - id = "fuel_go_round" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/processing) -"czC" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ +"czE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/space) -"czH" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"czZ" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/flora/pottedplant/flower, -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/port) -"cAd" = ( -/turf/simulated/wall/r_wall, -/area/medical/patient_wing) -"cAv" = ( -/obj/structure/dispenser/oxygen, -/obj/machinery/light/no_nightshift{ +/area/main_map/maintenance/deck_two/starboard) +"czQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"cAj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"cAo" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"cBe" = ( -/obj/machinery/atmospherics/component/unary/engine{ - dir = 1 - }, -/turf/simulated/shuttle/plating/airless/carry, -/area/space) +/area/main_map/hallway/deck2) +"cBv" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/pool/changing_room) "cBQ" = ( /obj/machinery/atmospherics/component/binary/pump{ dir = 1; @@ -3362,18 +3260,34 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"cCS" = ( +"cCG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" + }, +/obj/machinery/light/no_nightshift{ + dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) +/area/engineering/hallway) "cCV" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/shield_gen) +"cDa" = ( +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck2) +"cDr" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft) "cDN" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 9 @@ -3388,55 +3302,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/aux, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) -"cEg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"cEH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/crew_quarters/sleep/Dorm_3) -"cFh" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/structure/closet/walllocker/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/closet/walllocker/emergsuit_wall{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"cFp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"cFw" = ( -/turf/simulated/wall, -/area/vacant/vacant_office) "cFL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -3449,15 +3314,23 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"cGv" = ( -/obj/structure/cable/green{ +"cGQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + name = "Service Atmospherics Backup"; + req_access = list(24) + }, +/obj/structure/cable{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 + dir = 8 }, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) +/area/main_map/maintenance/atmospheric_substation/service) "cGR" = ( /obj/structure/cable/yellow{ icon_state = "1-8" @@ -3494,73 +3367,74 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/substation/security) -"cHt" = ( -/obj/structure/railing{ - dir = 1 +"cHr" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"cHF" = ( +/obj/machinery/door/airlock/atmos{ + name = "Civilian Atmospherics Backup"; + req_access = list(24) }, -/turf/simulated/floor/reinforced, -/area/space) -"cHw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"cHL" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/door/airlock{ - id_tag = "dorm10"; - name = "Dorm 10" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) +"cIf" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/spider/stickyweb/dark, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "cIh" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/reinforced/airless, /area/space) -"cIH" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 1; - name = "Cargo Waste Buffer"; - start_pressure = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) -"cIJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"cJP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/turf/simulated/floor/wood, -/area/hallway/primary/central_two) -"cJR" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"cJY" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/direction_bump/east, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"cKi" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) "cKk" = ( /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"cKl" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" +"cKL" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) "cKP" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -3579,15 +3453,15 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"cLl" = ( -/obj/structure/cable/green{ +"cLo" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_9) +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "cLB" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Medical Maintenance Access"; @@ -3599,33 +3473,20 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/medbay2) -"cLV" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) "cMd" = ( /obj/machinery/atmospherics/component/binary/pump, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"cMO" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"cMP" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 +"cMn" = ( +/obj/machinery/door/airlock/maintenance/rnd{ + req_access = list(30,47,77) }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"cMS" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/xenobiology/xenoflora_storage) "cMZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -3635,38 +3496,24 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"cND" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"cNa" = ( +/obj/structure/mopbucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/direction_bump/west, -/turf/simulated/floor/plating, -/area/space) -"cNL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"cNF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ dir = 1 }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"cOh" = ( -/obj/machinery/camera/network/outside{ - dir = 9 - }, -/turf/space, -/area/space) +/area/main_map/maintenance/deck_two/aft) "cOp" = ( /turf/simulated/floor/wood, /area/crew_quarters/bar_backroom) -"cOw" = ( -/obj/machinery/computer/timeclock/premade/east, -/turf/simulated/floor/tiled, -/area/space) "cPC" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, @@ -3702,75 +3549,18 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cQA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/structure/handrail, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = 1; - frequency = 1380; - id_tag = "expshuttle_docker"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "medivac_docker_pump_out_external" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "cQJ" = ( /obj/structure/cable/green{ icon_state = "2-8" }, /turf/simulated/floor/wood, /area/medical/patient_wing) -"cQX" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, -/turf/simulated/floor/plating, -/area/space) -"cQY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 9 - }, -/turf/simulated/wall, -/area/space) -"cRD" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"cRQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/red{ - dir = 8 - }, -/turf/simulated/wall, -/area/space) -"cRT" = ( -/obj/structure/sink/kitchen{ - name = "sink"; - pixel_y = 28 - }, +"cRq" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos/processing) +"cRv" = ( /turf/simulated/floor/tiled, -/area/space) +/area/main_map/hallway/deck2/starboard_fore) "cRV" = ( /obj/structure/table/glass, /obj/item/paper_bin{ @@ -3790,68 +3580,43 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"cSo" = ( -/obj/machinery/atmospherics/tvalve/digital/mirrored{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"cSX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 8 - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"cTr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"cSw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"cTN" = ( -/obj/structure/bed/chair/sofa/black/left{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"cTQ" = ( -/obj/structure/catwalk, -/turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) +"cUs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "cUz" = ( /turf/simulated/floor/glass/reinforced, /area/engineering/hallway) -"cUK" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"cUO" = ( +/obj/structure/window/reinforced, +/obj/machinery/conveyor{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/map_helper/conveyor/belt{ + id_tag = "fuel_belt"; + name = "Fuel Belt" }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/port) -"cUP" = ( -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"cUQ" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/space) +/turf/simulated/floor/reinforced, +/area/engineering/atmos/processing) "cVc" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -3865,20 +3630,17 @@ /obj/structure/bookcase/manuals/xenoarchaeology, /turf/simulated/floor/reinforced, /area/medical/patient_wing) -"cVI" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +"cVE" = ( /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"cVU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 +/area/main_map/Hangar_bay/deck2) +"cWD" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing{ + dir = 1 }, -/turf/simulated/wall/r_wall, -/area/space) +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "cWH" = ( /obj/machinery/door/airlock/glass{ name = "Recreation Area" @@ -3895,15 +3657,33 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) -"cWR" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) -"cXe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ +"cXf" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/port) +"cXm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/cargo) "cXJ" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/spray/cleaner, @@ -3937,44 +3717,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"cXQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward) -"cXS" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/gas_storage) "cYe" = ( /obj/machinery/atmospherics/valve/digital, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"cYg" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "16-0" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_two/aft) -"cYm" = ( -/obj/structure/ladder/updown, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) "cYp" = ( /obj/machinery/door/airlock/engineering{ name = "Security Substation"; @@ -3986,35 +3732,28 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/substation/security) -"cYZ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/closet/fireaxecabinet{ - pixel_x = 32; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/bunker) +"cYP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/Hangar_bay/deck2) "cZg" = ( /obj/structure/closet/secure_closet/guncabinet/robotics, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/mechbay) -"cZE" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"cZF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/machinery/light{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "cZG" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -4025,11 +3764,12 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenobiology/xenoflora_storage) -"cZY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) +"dab" = ( +/obj/structure/bed/chair/sofa/black/left{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) "daw" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4039,21 +3779,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"dbn" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 1 +"dbf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"dbB" = ( +/area/rift/station/fighter_bay) +"dbv" = ( /turf/simulated/floor/plating, -/area/maintenance/deck_two/port) -"dct" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/Hangar_bay/deck2) "dcQ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/steeldecal/steel_decals6, @@ -4069,16 +3804,6 @@ /obj/effect/debris/cleanable/blood/oil, /turf/simulated/floor/tiled/dark, /area/rnd/robotics) -"ddh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) "ddp" = ( /obj/machinery/door/airlock/glass{ name = "Recovery Wing" @@ -4097,31 +3822,24 @@ /obj/machinery/atmospherics/pipe/vent/high_volume, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos) -"ddA" = ( -/obj/structure/catwalk, -/obj/machinery/shield_diffuser, -/obj/item/sign, -/turf/simulated/floor/airless/ceiling, -/area/space) -"dej" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"ddR" = ( +/obj/machinery/button/remote/blast_door{ + id = "hanger1a"; + name = "Hanger 1 A"; + pixel_y = -28; + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/door/airlock{ - name = "Bathroom" +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/a) +"ded" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) -"dek" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "den" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -4148,33 +3866,12 @@ }, /turf/simulated/open, /area/rnd/research/researchdivision) -"dfE" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"dfU" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) -"dga" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +"dfM" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/atmospheric_substation/ai) +"dgp" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/main_map/hallway/deck2) "dhm" = ( /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/steel_grid, @@ -4194,13 +3891,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"dhZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Restroom" +"dhN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/crew_quarters/toilet) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) "dik" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 @@ -4208,20 +3905,28 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/atmos/gas_storage) -"djh" = ( -/obj/structure/lattice, -/obj/structure/railing{ - dir = 8 +"diA" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft) +"diK" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 }, /obj/structure/railing, /obj/structure/railing{ - dir = 4 + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "32-8" +/obj/structure/railing{ + dir = 1 }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, /turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/maintenance/atmospheric_substation/medical) "djS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -4231,6 +3936,19 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) +"djZ" = ( +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) "dkc" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 @@ -4250,6 +3968,28 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) +"dkM" = ( +/obj/effect/floor_decal/techfloor/orange/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"dkZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "dle" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4260,15 +4000,41 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"dlz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"dln" = ( +/obj/structure/railing{ dir = 8 }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward/starboard) +"dlw" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) +"dlM" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) +"dlT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 + dir = 1 }, /turf/simulated/floor/plating, -/area/hallway/primary/central_two) +/area/main_map/maintenance/deck_two) "dlV" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -4276,6 +4042,20 @@ /obj/structure/handrail, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) +"dmh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) +"dmn" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) "dmu" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 @@ -4327,36 +4107,52 @@ /obj/machinery/power/thermoregulator, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) -"dnW" = ( +"dnF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"dnN" = ( +/obj/structure/ladder_assembly, +/obj/effect/debris/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) +"dnP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/blue, /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"dpZ" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 +/area/main_map/maintenance/atmospheric_substation/civilian) +"don" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/central_two) -"dqQ" = ( -/obj/machinery/atmospherics/component/trinary/filter{ - filtering = "co2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/gas_storage) +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_a) +"dpw" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) "drw" = ( /obj/machinery/vending/fitness, /turf/simulated/floor/tiled, /area/crew_quarters/recreation_area_hallway) +"drF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos) +"drT" = ( +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/a) "drX" = ( /obj/machinery/power/thermoregulator{ anchored = 1 @@ -4370,12 +4166,21 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/bar) -"dsB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"dsx" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) "dth" = ( /obj/machinery/atmospherics/pipe/zpipe/down/supply{ dir = 8 @@ -4401,14 +4206,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"dtB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/metal/mait, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) "dtC" = ( /obj/structure/railing{ dir = 8 @@ -4421,41 +4218,14 @@ }, /turf/simulated/open, /area/maintenance/engineering) -"dub" = ( -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/tank/emergency, -/obj/item/tank/emergency, -/obj/item/tank/emergency, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) -"dui" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"duJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/shower{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) "duK" = ( /obj/machinery/shieldgen, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/storage) +"duL" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_two) "duQ" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/corner/lightgrey/border{ @@ -4463,48 +4233,59 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) -"duY" = ( +"dvl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) +"dvv" = ( +/obj/structure/bed/chair/bay/comfy, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/bunker) +"dvw" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "fighterbaytransportexit"; + name = "Transport Tunnel Exit" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) +/area/rift/station/fighter_bay/hangar) "dvx" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"dvA" = ( +"dwf" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/catwalk, /obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 + dir = 1 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) +"dww" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"dwr" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"dwt" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward) -"dwF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"dwx" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/maintenance/deck_two/aft) "dwG" = ( /obj/machinery/computer/atmos_alert, /obj/effect/floor_decal/corner/yellow{ @@ -4517,24 +4298,28 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"dxg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"dwL" = ( +/obj{ + name = "---Merge conflict marker---" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 }, -/turf/simulated/floor/tiled/techmaint, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/space/basic, /area/space) -"dxj" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +"dxu" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"dxw" = ( +/obj/structure/catwalk, +/obj/structure/ladder/updown, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) "dxM" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -4544,16 +4329,31 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"dyo" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ +"dya" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) -"dyD" = ( -/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"dzb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/maintenance/deck_two/forward/starboard) "dzg" = ( /obj/machinery/door/airlock/engineering{ name = "Science Substation"; @@ -4565,16 +4365,6 @@ /obj/machinery/door/firedoor/glass, /turf/space, /area/maintenance/substation/research) -"dzk" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"dzz" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward) "dzA" = ( /obj/machinery/power/terminal{ dir = 1 @@ -4584,21 +4374,9 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"dzN" = ( -/obj/machinery/camera/network/research{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"dzT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_6) +"dzO" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) "dzY" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -4620,42 +4398,66 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"dAz" = ( -/obj/machinery/door/airlock/atmos{ - name = "Civilian Atmospherics Backup"; - req_access = list(24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ +"dAV" = ( +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"dAR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/maintenance/deck_two/port) "dAZ" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) -"dBC" = ( -/obj/structure/cable/green{ +"dBx" = ( +/obj/machinery/button/remote/blast_door{ + id = "hangar_maint"; + name = "Hangar Maintenance Shutter Control"; + pixel_y = 28; + req_one_access = list(1,29,38,47) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"dBy" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"dBD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ icon_state = "4-8" }, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) +/area/main_map/maintenance/deck_two) "dBM" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/firealarm{ @@ -4674,17 +4476,38 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos) +"dCu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) "dCI" = ( /obj/structure/grille, /obj/structure/girder/reinforced, /turf/simulated/floor/reinforced/carbon_dioxide, /area/engineering/atmos/processing) -"dCX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 +"dCT" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_gas) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "dDH" = ( /obj/structure/railing{ dir = 4 @@ -4697,29 +4520,16 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"dEj" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 +"dEg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 8 }, -/obj/effect/floor_decal/rust, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) -"dEk" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/space) +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "dEB" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -4731,34 +4541,15 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/techfloor, /area/server) -"dEP" = ( -/obj/structure/railing{ - dir = 1 +"dEW" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) -"dET" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_5) -"dFL" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) +/turf/simulated/floor/plating, +/area/engineering/engine_gas) "dGb" = ( /obj/effect/floor_decal/techfloor{ dir = 5 @@ -4785,6 +4576,18 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) +"dGt" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) "dHe" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -4795,12 +4598,12 @@ /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"dHS" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +"dHJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/bar) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) "dIk" = ( /obj/structure/railing{ dir = 1 @@ -4813,15 +4616,17 @@ /obj/machinery/atmospherics/pipe/zpipe/down/aux, /turf/simulated/open, /area/engineering/engine_eva) -"dIC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +"dIo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"dIv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "dIE" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /obj/structure/railing{ @@ -4850,46 +4655,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"dIT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"dIY" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"dJC" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) "dKd" = ( /obj/machinery/biogenerator, /turf/simulated/floor/tiled, /area/hydroponics) -"dKh" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/air_alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "dKj" = ( /obj/machinery/door/firedoor{ dir = 2 @@ -4899,9 +4668,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"dKD" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) +"dKA" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/reinforced, +/area/space) "dKO" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 @@ -4917,6 +4689,39 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) +"dKZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel, +/area/space) +"dLa" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Flight Deck Subgrid"; + name_tag = "Flight Deck Subgrid" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"dLj" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(18,47) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/Hangar_bay/deck2) "dLw" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -4926,10 +4731,22 @@ }, /turf/simulated/floor/tiled/techfloor, /area/server) -"dLJ" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) +"dLD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "dLL" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -4939,52 +4756,66 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"dLT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft) +"dMq" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) "dMZ" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/carpet, /area/medical/patient_wing) +"dNh" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "dNs" = ( /turf/simulated/floor/reinforced/oxygen, /area/engineering/atmos/gas_storage) -"dOg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"dOB" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_two/forward/port) +"dOF" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"dOH" = ( -/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/maintenance/deck_two) +/area/space) +"dOK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) +"dOX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/a) "dPl" = ( /obj/structure/cable/heavyduty{ icon_state = "2-8" }, /turf/simulated/floor/reinforced, /area/space) -"dPr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ +"dPp" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/railing{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/atmospheric_substation/security) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "dPv" = ( /obj/structure/cable/green, /obj/machinery/power/apc/direction_bump/south, @@ -4996,24 +4827,40 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/shield_gen) -"dPI" = ( -/turf/simulated/floor/carpet/sblucarpet, -/area/crew_quarters/sleep/Dorm_2) "dPK" = ( /turf/simulated/floor/glass/reinforced, /area/hydroponics) -"dQl" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 +"dPM" = ( +/obj/landmark{ + name = "morphspawn" }, -/turf/simulated/floor/carpet/tealcarpet, -/area/medical/patient_b) -"dSb" = ( -/obj/machinery/atmospherics/tvalve/digital/bypass, -/turf/simulated/floor/plating, -/area/space) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"dPW" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_two/aft/starboard) +"dRL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/main_map/maintenance/atmospheric_substation/medical) +"dSr" = ( +/turf/simulated/wall, +/area/main_map/hallway/deck2/stairs) "dSH" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -5029,12 +4876,12 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"dSY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +"dTi" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) "dTF" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/corner/paleblue/diagonal, @@ -5043,6 +4890,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) +"dTI" = ( +/obj/structure/sign/deck2{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "dTK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -5055,19 +4914,20 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) -"dTM" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 +"dUc" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "1-10" +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"dUH" = ( +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = -10 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"dUF" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/obj/structure/sign/directions/cryo, +/turf/simulated/wall, +/area/main_map/hallway/deck2) "dUJ" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -5080,15 +4940,24 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"dUX" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_two) -"dVf" = ( +"dUW" = ( +/obj/machinery/lathe/autolathe, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay/maintenance) +"dUY" = ( +/obj/machinery/power/apc/direction_bump/north, +/obj/structure/cable/green{ + icon_state = "0-4" + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) +/turf/simulated/floor/plating, +/area/space) +"dVh" = ( +/obj/structure/inflatable/door, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft) "dVB" = ( /obj/machinery/computer/station_alert, /obj/effect/floor_decal/corner/yellow{ @@ -5099,30 +4968,36 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"dVF" = ( -/turf/simulated/wall, -/area/maintenance/dormitory) -"dVG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 +"dWc" = ( +/turf/simulated/mineral/icerock/lythios43c, +/area/rift/surfacebase/underground/under1) +"dWd" = ( +/obj/machinery/door/airlock/research{ + name = "Research Lab"; + req_one_access = list(8) }, -/obj/machinery/camera/network/engineering, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"dWi" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"dWy" = ( -/obj/structure/railing, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"dWm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) +"dWR" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/patient_b) "dWX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -5180,26 +5055,15 @@ /obj/machinery/camera/network/cargo, /turf/simulated/floor/wood, /area/quartermaster/qm) -"dXH" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"dXX" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/reinforced, -/area/space) -"dYO" = ( -/obj/machinery/shieldgen, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) "dYW" = ( /turf/simulated/floor/reinforced/airless, /area/engineering/atmos/processing) -"dZa" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_two) +"dZc" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) "dZB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -5212,41 +5076,28 @@ }, /turf/simulated/floor/tiled/techfloor, /area/server) -"dZR" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/space) "dZW" = ( /obj/structure/railing, /turf/simulated/open, /area/quartermaster/hallway) +"eap" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/cargo) "eaA" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"eaD" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"eaQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) -"eaU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/wall/r_wall, -/area/space) "eaX" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -5257,6 +5108,17 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hydroponics) +"eaY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/sign/poster/nanotrasen{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) "ebx" = ( /obj/machinery/camera/network/cargo{ dir = 1 @@ -5264,6 +5126,15 @@ /obj/structure/lattice, /turf/simulated/open, /area/quartermaster/warehouse) +"ebD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "ebT" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -5291,22 +5162,6 @@ /obj/effect/floor_decal/industrial/danger/corner, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"ecM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"ecP" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 33 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) "ecQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -5314,32 +5169,24 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"edd" = ( -/turf/simulated/wall/r_wall, -/area/rnd/rdoffice) -"edg" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +"ecR" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/robotics) "edp" = ( /obj/structure/closet/secure_closet/atmos_personal, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) +"eds" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Hangar Bay Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/flight_deck) "edt" = ( /obj/structure/table/standard, /obj/item/hand_labeler, /turf/simulated/floor/tiled, /area/space) -"edJ" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) "edL" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -5352,16 +5199,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"edS" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) +"edX" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/rnd/lab) "eec" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -5372,17 +5213,12 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/gas_storage) -"eeF" = ( -/obj/structure/cable/green, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"eeS" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, +"eel" = ( /turf/simulated/floor/plating, -/area/maintenance/deck_two/port) +/area/main_map/maintenance/atmospheric_substation/ai) +"eeE" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/main_map/maintenance/atmospheric_substation/command) "eeX" = ( /obj/machinery/light/no_nightshift{ dir = 4 @@ -5424,6 +5260,10 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) +"efP" = ( +/obj/machinery/computer/rdconsole/robotics, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/maintenance/deck_two/aft/starboard) "efZ" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -5440,41 +5280,45 @@ /obj/machinery/power/apc/direction_bump/west, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) -"ego" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"egw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - pixel_x = -25 +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"egL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"egW" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_9) -"ehm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 8 - }, -/obj/machinery/camera/network/engineering{ +/obj/machinery/shower{ dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) +"egA" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) "ehn" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) +"ehq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) "ehw" = ( /obj/structure/railing, /obj/structure/railing{ @@ -5482,18 +5326,25 @@ }, /turf/simulated/open, /area/quartermaster/warehouse) -"ehB" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +"ehF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/starboard) +"ehL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"ehX" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 8 }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_9) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/processing) "eim" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, @@ -5504,6 +5355,11 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) +"eiy" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "eiB" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -5511,36 +5367,27 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"eiG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) "eiQ" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) -"eiW" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) -"ejb" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"eiY" = ( +/obj/machinery/fitness/punching_bag/clown, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) +"ejh" = ( +/obj/machinery/r_n_d/server/core, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/window/reinforced, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=80"; + name = "Server Base" }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/area/server) "ejn" = ( /obj/machinery/button/windowtint{ id = "bridge_interior"; @@ -5550,31 +5397,53 @@ /obj/item/storage/firstaid/regular, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"ejp" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/b) +"ejw" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/bed/chair/comfy/teal, +/turf/space/basic, +/area/space) +"ejP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) "ejQ" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"ekn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"ekC" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 }, -/obj/structure/sign/deck/second{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"ekK" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "ekM" = ( /obj/structure/railing, /obj/structure/railing{ @@ -5611,12 +5480,6 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"elb" = ( -/obj/structure/closet/secure_closet/freezer/meat{ - anchored = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) "elA" = ( /obj/structure/table/standard, /obj/item/storage/box/glasses, @@ -5631,37 +5494,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, /area/maintenance/tool_storage) -"elX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"emf" = ( -/turf/simulated/wall, -/area/engineering/storage) "emj" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) -"emC" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"emR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_6) "emX" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/structure/window/reinforced{ @@ -5669,33 +5505,6 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) -"enq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"enz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) -"enO" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "enP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -5711,28 +5520,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos) -"eoa" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/starboard) -"eop" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/door/airlock/glass_external, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"eov" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/engineeringatmos{ - name = "Damage Control Storage" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/space) "eoB" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 1; @@ -5749,40 +5536,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel_grid, /area/space) -"epo" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"epr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/showers) -"eps" = ( -/obj/structure/railing, -/obj/structure/railing{ +"eoL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 8 }, -/obj/structure/railing{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "32-8" - }, -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/deck_two/forward/port) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) "eqp" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red, /obj/machinery/camera/network/engine{ @@ -5794,29 +5556,15 @@ /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled/techfloor, /area/server) -"eqy" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"eqA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) "eqE" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) +"eqK" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/robotics/mechbay) "eqP" = ( /obj/machinery/atmospherics/component/unary/outlet_injector{ frequency = 1441; @@ -5827,9 +5575,15 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos/processing) -"eqZ" = ( -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +"eqX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "eri" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -5842,71 +5596,40 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"esg" = ( -/obj/structure/cable{ - icon_state = "4-8" +"erl" = ( +/obj/machinery/door/airlock/engineering{ + name = "Flight Deck Substation"; + req_one_access = list(11,24) }, +/turf/simulated/floor/plating, +/area/space) +"erI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) +"erY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"ese" = ( +/obj/effect/floor_decal/techfloor/orange{ dir = 9 }, /turf/simulated/floor/tiled, -/area/maintenance/tool_storage) -"esr" = ( -/obj/structure/sign/deck/second{ - pixel_y = -32 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/recreation_area_hallway) -"eud" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 5 - }, -/obj/effect/floor_decal/rust, +/area/main_map/hallway/deck2) +"esP" = ( /turf/simulated/floor/tiled/techfloor, -/area/space) -"euh" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"eun" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"euA" = ( -/obj/structure/bed/padded, -/obj/random/bedsheet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"evc" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/deck_two) -"evd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) +/area/main_map/maintenance/deck_two/aft/starboard) +"etU" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/main_map/maintenance/deck_two/aft/starboard) "evK" = ( /obj/structure/railing{ dir = 1 @@ -5933,60 +5656,71 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) -"exc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"exw" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/cryo) +"exn" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/turnstile{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) "exC" = ( /obj/machinery/suit_cycler/engineering, /obj/effect/floor_decal/techfloor/orange, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) +"exX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"eyf" = ( +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) "eys" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/plating, /area/space) -"eyR" = ( -/obj/structure/sign/deck2{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8 +"eyC" = ( +/obj/machinery/atmospherics/tvalve/digital{ + dir = 4 }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"eze" = ( -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) -"ezx" = ( -/obj/machinery/scale, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"ezE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/area/main_map/maintenance/atmospheric_substation/command) +"ezh" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/starboard_fore) +"ezu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) "ezG" = ( /obj/machinery/light/no_nightshift{ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) +"ezJ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/tiled/techfloor, +/area/space) "ezV" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ @@ -6000,6 +5734,20 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/showers) +"ezZ" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) "eAU" = ( /obj/machinery/mecha_part_fabricator/pros, /obj/structure/sign/deck/second{ @@ -6007,9 +5755,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"eBk" = ( -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) "eBG" = ( /obj/structure/table/reinforced, /obj/item/stack/material/glass/phoronrglass{ @@ -6017,29 +5762,24 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"eBX" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"eCb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 8 - }, -/obj/machinery/camera/network/engineering, +"eBS" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"eCf" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/wall/rshull, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"eCL" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/robotics/mechbay) "eCO" = ( /obj/machinery/light/no_nightshift{ dir = 4 @@ -6068,6 +5808,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) +"eDG" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay2) "eDU" = ( /obj/machinery/power/terminal{ dir = 1 @@ -6077,6 +5827,19 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/shield_gen) +"eDY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hallway) "eEb" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -6103,25 +5866,40 @@ /obj/item/mmi/digital/posibrain, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) +"eFg" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "eFZ" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 10 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"eGG" = ( -/obj/structure/railing{ - dir = 1 +"eGe" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/simulated/floor/tiled, -/area/space) -"eHb" = ( -/obj/machinery/door/firedoor{ +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft) +"eGt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/space) "eHO" = ( /obj/machinery/door/airlock/security{ name = "Observation"; @@ -6130,12 +5908,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"eHZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/wall/r_wall, -/area/space) "eId" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -6143,16 +5915,24 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/space) -"eIh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Engine Compartment"; - req_one_access = list(67) +"eIt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance/common, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"eIw" = ( +/obj/machinery/atmospherics/tvalve/digital/mirrored{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"eIB" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/main_map/maintenance/atmospheric_substation/research) "eIO" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/structure/window/reinforced{ @@ -6170,14 +5950,6 @@ /obj/structure/window/phoronreinforced, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos) -"eJA" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "eJJ" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ @@ -6185,12 +5957,6 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"eJT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) "eJU" = ( /obj/structure/table/reinforced, /obj/item/radio, @@ -6200,6 +5966,35 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"eKD" = ( +/obj/machinery/mech_recharger, +/obj/mecha/combat/fighter/pinnace/loaded{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/hangar) +"eLj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "eLG" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue{ dir = 9 @@ -6209,19 +6004,37 @@ "eLI" = ( /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) -"eMB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +"eLJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/hallway/primary/central_two) -"eMP" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/maintenance/deck_two/forward/starboard) +/area/main_map/maintenance/deck_two) +"eLM" = ( +/obj/structure/sign/directions/cryo{ + dir = 8 + }, +/turf/simulated/wall/r_wall/prepainted/command, +/area/space) +"eLY" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"eLZ" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) "eMR" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green, /obj/machinery/meter, @@ -6230,12 +6043,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"eNa" = ( -/obj/structure/sign/warning{ - name = "\improper DANGER: ENGINE EXHAUST" - }, -/turf/simulated/wall/r_wall, -/area/space) "eNo" = ( /obj/structure/sink/kitchen{ dir = 4; @@ -6243,6 +6050,25 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) +"eNw" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/starboard) +"eNz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/atmospheric_substation/security) "eNA" = ( /obj/machinery/atmospherics/component/binary/pump, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6255,40 +6081,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"eNF" = ( -/turf/simulated/wall, -/area/maintenance/deck_two/aft/port) -"eNH" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/space) -"eOm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) -"eOE" = ( -/obj/structure/bed/chair/shuttle, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/purple/border, -/obj/machinery/turretid{ - check_access = 0; - control_area = /area/shuttle/excursion/general; - gl_uid = "exploration"; - pixel_x = -30; - req_access = null; - req_one_access = list(19,43,62,67); - uid = "exploration" - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/techfloor, -/area/space) "ePh" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass/atmos, @@ -6299,20 +6091,22 @@ "ePr" = ( /turf/simulated/open, /area/quartermaster/hallway) -"ePu" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) "ePy" = ( /obj/machinery/lapvend, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) +"ePF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/starboard_fore) +"ePY" = ( +/turf/simulated/open, +/area/main_map/Hangar_bay/deck2) "eQm" = ( /obj/machinery/recharge_station, /obj/machinery/light/small{ @@ -6329,28 +6123,25 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"eQT" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 +"eRO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 9 }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"eSj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"eRk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"eRN" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/carpet/sblucarpet, -/area/crew_quarters/sleep/Dorm_3) +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) +"eSE" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/space) "eSZ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -6388,27 +6179,34 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"eVN" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"eWl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, +"eUr" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"eUN" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/substation/engineering) +"eVH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/turf/simulated/floor/carpet/sblucarpet, -/area/crew_quarters/sleep/Dorm_2) -"eWD" = ( -/obj/structure/fitness/punchingbag, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"eWx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) "eWH" = ( /obj/machinery/atmospherics/pipe/manifold/visible/aux{ dir = 4 @@ -6418,16 +6216,36 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"eWI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +"eWN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"eXp" = ( +/obj/item/coin/silver, +/obj/item/coin/silver, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/cartridge/quartermaster, +/obj/structure/table/hardwoodtable, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 }, -/turf/simulated/floor/plating, -/area/space) -"eXc" = ( -/obj/structure/closet/wardrobe/white, /turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) +/area/quartermaster/qm) "eXq" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -6437,49 +6255,31 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) +"eXH" = ( +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/tank/emergency, +/obj/item/tank/emergency, +/obj/item/tank/emergency, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) "eXV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/carpet/blue, /area/bridge/meeting_room) -"eYG" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"eYK" = ( -/turf/simulated/open, -/area/maintenance/dormitory) "eYO" = ( /turf/simulated/floor/plating, /area/rnd/robotics/mechbay) -"eYP" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/turf/simulated/floor/reinforced, -/area/space) -"eZk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) "eZu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -6489,6 +6289,36 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) +"eZF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"eZP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"eZW" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"eZY" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) "eZZ" = ( /obj/structure/bedsheetbin, /obj/structure/table/standard, @@ -6501,26 +6331,53 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/fitness) -"faX" = ( -/obj/structure/stairs/spawner/east, -/obj/structure/railing{ +"fbP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/port) +"fcb" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/port) +"fcc" = ( +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"fbU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"fcd" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-8" +/obj/structure/table/rack/shelf/steel, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 }, -/turf/simulated/floor/plating, -/area/space) +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/foyer) +"fcm" = ( +/obj/structure/closet/chefcloset, +/obj/item/glass_jar, +/obj/item/retail_scanner/civilian, +/obj/item/soap/nanotrasen, +/obj/item/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/packageWrap, +/obj/item/packageWrap, +/obj/item/packageWrap, +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) "fcp" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /turf/simulated/floor/tiled/freezer, @@ -6556,45 +6413,65 @@ }, /turf/simulated/floor/tiled, /area/space) -"fcK" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"fdF" = ( +"fdb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) +"fds" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"fdR" = ( +/obj/machinery/door/airlock{ + name = "Auxiliary Janitorial Closet"; + req_access = list(26) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"fdI" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_8) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck2/stairs) +"fek" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward) +"feJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2/stairs) "feR" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/hallway) -"ffp" = ( -/obj/structure/railing, -/turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) -"ffZ" = ( -/obj/structure/closet/crate, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +"ffE" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/recharger, +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) "fgg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -6604,6 +6481,13 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) +"fgi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) "fgj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -6615,42 +6499,20 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"fgk" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"fgl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"fgo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) "fha" = ( /obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"fhn" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ - dir = 1 +"fhh" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) +"fhN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 5 }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/aft) -"fhH" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/maintenance/atmospheric_substation/cargo) "fhP" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -6666,50 +6528,33 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"fiq" = ( -/obj/machinery/air_alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/vending/fitness, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"fiR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, +"fin" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/starboard) -"fjz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 - }, -/obj/machinery/camera/network/engineering, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) +/area/main_map/maintenance/deck_two/aft/starboard) "fjG" = ( /obj/structure/catwalk, /obj/machinery/camera/network/outside, /turf/simulated/floor/reinforced/airless, /area/space) -"fjZ" = ( +"fjJ" = ( +/obj/structure/sign/directions/cryo, +/turf/simulated/wall/r_wall/prepainted/command, +/area/main_map/hallway/deck2) +"fjK" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "fkE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -6725,6 +6570,9 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) +"fkN" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/patient_wing) "fkY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, @@ -6750,9 +6598,9 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"flD" = ( -/turf/simulated/floor/tiled, -/area/space) +"fln" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/substation/research) "flG" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -6763,6 +6611,18 @@ /obj/structure/lattice, /turf/simulated/open, /area/hydroponics/garden) +"flL" = ( +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "hanger1a"; + layer = 3.3; + name = "Hanger 1 A Shutters" + }, +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/a) "flT" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -6793,35 +6653,48 @@ }, /turf/simulated/floor/tiled, /area/space) -"fme" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"fmj" = ( +/obj/structure/bed/chair/sofa/purp/left{ dir = 8 }, -/obj/machinery/door/airlock/glass/engineeringatmos{ - name = "Atmospherics" +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"fmN" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 +/obj/effect/floor_decal/spline/plain{ + dir = 4 }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) -"fnt" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) +"fmB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hallway) +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) +"fmX" = ( +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_two/forward) +"fnG" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "fnJ" = ( /obj/machinery/door/airlock/maintenance/sec, /obj/structure/cable/green{ @@ -6842,24 +6715,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/security) -"fnL" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "foC" = ( /turf/simulated/open, /area/medical/medbay2) +"foE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/starboard) "foH" = ( /obj/structure/railing, /turf/simulated/open, @@ -6879,88 +6749,58 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"fpv" = ( -/obj/machinery/door/firedoor{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) -"fpP" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/deck_two/forward/port) -"fqn" = ( -/obj/structure/mopbucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/turf/simulated/floor/tiled, -/area/space) "fqv" = ( /obj/structure/railing{ dir = 1 }, /turf/space, /area/space) -"fqz" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +"fqS" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"frI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/plating, +/area/maintenance/substation/flight_deck) +"fqW" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) +"frk" = ( +/obj/structure/marker_beacon/red, +/turf/simulated/floor/reinforced/airless, /area/space) -"frL" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Elevator Shaft Access"; - req_one_access = null +"frE" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck2) +"frN" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/starboard) -"fsc" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/freezer) -"fsu" = ( -/obj/structure/railing{ - dir = 8 +/obj/structure/closet/crate/trashcart, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"fsp" = ( +/obj/machinery/button/ignition{ + id = "portnacelle_igniter"; + pixel_y = -28 }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) -"fsw" = ( -/obj/structure/ladder, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"fsK" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/direction_bump/north, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/port) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) "fsW" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Civilian Subgrid"; @@ -6995,10 +6835,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"ftQ" = ( -/obj/structure/sign/hangar/two, -/turf/simulated/wall/r_wall, -/area/space) "ftS" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 5 @@ -7006,15 +6842,17 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"fuO" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"fuz" = ( +/obj/structure/railing{ + dir = 4 }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) "fuY" = ( /obj/structure/catwalk, /obj/structure/extinguisher_cabinet{ @@ -7035,18 +6873,57 @@ /obj/item/suit_cooling_unit, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) +"fvh" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) "fvA" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"fwu" = ( +"fvO" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/port) +"fvR" = ( /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"fvY" = ( +/obj/structure/table/standard, +/obj/item/pen, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/item/hand_labeler, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"fwa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "fxF" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 8 @@ -7059,12 +6936,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"fxW" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) "fyf" = ( /obj/structure/cable{ icon_state = "4-8" @@ -7074,44 +6945,33 @@ }, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"fyo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_external" - }, -/obj/effect/shuttle_landmark{ - base_area = /area/tether/exploration; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "expshuttle_dock"; - landmark_tag = "tether_excursion_hangar"; - name = "Excursion Shuttle Dock" - }, -/obj/overmap/entity/visitable/ship/landable/excursion, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"fyu" = ( -/obj/structure/railing, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/hallway/primary/central_two) "fyw" = ( /turf/simulated/floor/tiled/techfloor, /area/server) -"fyE" = ( -/obj/machinery/door/airlock/maintenance/common, +"fyB" = ( +/obj/structure/cable{ + icon_state = "32-8" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) +/turf/simulated/open, +/area/main_map/maintenance/atmospheric_substation/ai) "fyF" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -7122,32 +6982,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"fyU" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"fyW" = ( -/obj/structure/railing, -/turf/simulated/open, -/area/maintenance/deck_two/forward/starboard) -"fzk" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) "fzu" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 @@ -7157,21 +6991,6 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) -"fzI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/no_nightshift{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "fzL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -7179,24 +6998,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"fAe" = ( -/turf/simulated/floor/tiled/steel_dirty, -/area/space) -"fAu" = ( -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) -"fBb" = ( -/obj/machinery/r_n_d/server/core, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/bluegrid{ - initial_gas_mix = "n2=500;TEMP=80"; - name = "Server Base" - }, -/area/server) "fBh" = ( /obj/machinery/atmospherics/component/unary/heat_exchanger{ dir = 8 @@ -7213,27 +7014,9 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"fBy" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/deck_two/forward/starboard) -"fBZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 1 - }, +"fCj" = ( /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/rift/station/fighter_bay/maintenance) "fCn" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7247,24 +7030,11 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/hallway) -"fCB" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"fCC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/space) -"fCQ" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/dormitory) +"fCO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "fDs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -7277,15 +7047,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"fDH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "fDQ" = ( /obj/machinery/power/terminal, /obj/structure/cable{ @@ -7294,105 +7055,78 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced, /area/space) -"fEv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +"fEm" = ( +/obj/landmark{ + name = "lightsout" }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"fEx" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"fFv" = ( -/obj/machinery/door/firedoor, +/area/engineering/hallway) +"fEH" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/port) +"fEL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"fGm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"fGH" = ( -/obj/machinery/atmospherics/component/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1443; - icon_state = "map_vent_in"; - id_tag = "air_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - on = 1 - }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos/gas_storage) -"fGR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/wall/rshull, -/area/space) -"fGT" = ( -/obj/structure/cable/green{ +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) +"fFn" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"fFt" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_external" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) +"fFC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) +"fFJ" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "hangar_lockdown"; + name = "Hangar Lockdown Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass/research{ + name = "Fighter Bay"; + req_one_access = list(19,29,38,43,47,63,67) + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"fHl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/space) -"fHr" = ( -/obj/structure/bed/chair/shuttle, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"fIx" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) +/area/main_map/maintenance/atmospheric_substation/security) "fIB" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/emergency, @@ -7404,44 +7138,30 @@ }, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"fIL" = ( -/turf/simulated/wall, -/area/rnd/robotics) -"fJs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "fJL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"fJN" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 +"fJR" = ( +/obj{ + name = "---Merge conflict marker---" }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/civilian{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"fJV" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +/obj/machinery/light/small{ + dir = 8 }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"fJW" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, +/turf/space/basic, /area/space) "fKn" = ( /obj/effect/floor_decal/industrial/warning{ @@ -7452,6 +7172,38 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenobiology/xenoflora_storage) +"fKs" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"fKt" = ( +/turf/simulated/wall/prepainted, +/area/rift/station/fighter_bay) +"fLc" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/space/basic, +/area/space) "fLl" = ( /obj/machinery/door/airlock/maintenance/engi, /obj/structure/cable/green{ @@ -7461,44 +7213,24 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/engineering/hallway) +"fLW" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) +"fMb" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/patient_c) +"fMc" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/starboard_fore) "fMj" = ( /obj/effect/floor_decal/corner/green/border{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"fNi" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"fNj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos{ - name = "Medical Atmospherics Backup"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"fNo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) "fNq" = ( /obj/machinery/camera/network/research{ dir = 1 @@ -7512,6 +7244,15 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) +"fNA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) "fNY" = ( /obj/structure/cable{ icon_state = "4-8" @@ -7543,12 +7284,23 @@ }, /turf/simulated/open, /area/security/brig) -"fOC" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 +"fOI" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Observation"; + req_access = list(2) }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) "fPm" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -7561,25 +7313,30 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenobiology/xenoflora_storage) -"fPo" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) +"fPn" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/port) "fPr" = ( /obj/machinery/atmospherics/component/binary/pump, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"fQc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" +"fPt" = ( +/obj/machinery/button/remote/blast_door{ + id = "hangar_pad"; + name = "Hangar Bay Blast Door Control"; + pixel_x = -24; + pixel_y = -28; + req_one_access = list(19,29,38,43,47,63,67); + dir = 1 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_two/aft/starboard) +"fPv" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos) "fQz" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -7601,47 +7358,48 @@ /obj/fiftyspawner/glass, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"fQW" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"fRg" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/freezer) +"fRk" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck2) +"fRq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"fSl" = ( +/obj{ + name = "---Merge conflict marker---" }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"fRS" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) -"fRX" = ( -/turf/simulated/wall, -/area/maintenance/atmospheric_substation/civilian) -"fTc" = ( /obj/machinery/air_alarm{ - pixel_y = 22 + dir = 4; + pixel_x = -22 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty, +/turf/space/basic, /area/space) -"fTs" = ( -/obj/structure/bed/chair/comfy/teal, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 7 +"fST" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"fTa" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/crew_quarters/bar) "fTt" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/borderfloor{ @@ -7652,12 +7410,27 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"fTL" = ( +"fTN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/maintenance/deck_two/aft/starboard) +"fTQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "fUo" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -7670,15 +7443,22 @@ /obj/item/retail_scanner/cargo, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) -"fUQ" = ( -/obj/structure/sign/deck2{ - pixel_x = 32 +"fUt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) +/area/main_map/maintenance/atmospheric_substation/cargo) +"fUA" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) "fVb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -7688,106 +7468,54 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"fVs" = ( -/obj/machinery/shieldgen, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) -"fVC" = ( -/turf/simulated/floor/carpet/sblucarpet, -/area/crew_quarters/sleep/Dorm_3) +"fVD" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) "fVM" = ( /obj/machinery/atmospherics/component/binary/pump{ dir = 8 }, /turf/simulated/floor/reinforced, /area/engineering/atmos/processing) -"fWl" = ( -/obj/structure/closet/wardrobe, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"fWq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/tiled/dark, -/area/space) -"fWz" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/starboard) "fWB" = ( /obj/machinery/portable_atmospherics/canister/phoron, /turf/simulated/floor/reinforced/phoron, /area/engineering/atmos/gas_storage) -"fWF" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access"; - req_access = list(16); - req_one_access = list() +"fXG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"fXe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"fYw" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) -"fYC" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Vacant lobby" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"fYY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/borderfloor/corner2{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/corner/mauve/bordercorner2{ dir = 10 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) -"fZl" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"fZx" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/window/eastleft, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"fYS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/xenoflora_storage) +"fZe" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/area/engineering/atmos) "fZK" = ( /obj/structure/closet/crate, /obj/item/circuitboard/smes, @@ -7813,57 +7541,67 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/substation/civilian) -"gbM" = ( -/obj/machinery/computer/ship/engines, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"gbN" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +"fZO" = ( +/obj/machinery/atmospherics/tvalve/digital{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) +"gaL" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) +"gbj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"gbV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) +"gca" = ( +/obj/spawner/window/reinforced/full/firelocks, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge_lockdown"; + name = "Bridge Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/bridge/meeting_room) +"gce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) +"gcE" = ( +/obj/structure/railing{ dir = 4 }, -/obj/structure/cable{ +/obj/structure/catwalk, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) +"gcG" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/high/east_bump, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/processing) +"gdv" = ( +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"gcv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"gdk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"gdF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/catwalk, /turf/simulated/floor/plating, -/area/maintenance/dormitory) +/area/main_map/maintenance/deck_two/aft/starboard) "gdJ" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -7873,12 +7611,15 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"geI" = ( -/obj/structure/cable{ - icon_state = "1-2" +"gew" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "geQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 6 @@ -7888,6 +7629,19 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) +"geV" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"gfI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "gfJ" = ( /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) @@ -7897,27 +7651,6 @@ /obj/fiftyspawner/wood, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"ggd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"ggg" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) "ggn" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -7966,42 +7699,24 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"ghy" = ( -/obj/machinery/light/no_nightshift{ - dir = 8 +"ghD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/space) +/area/main_map/maintenance/deck_two) "ghL" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/reinforced, /area/space) -"gic" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"giT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) "giW" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 1 @@ -8011,35 +7726,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"gjF" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 1 +"gjp" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hanger 1 B" }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"gjJ" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"gkf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"gkr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/port) +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/b) "gkt" = ( /obj/structure/catwalk, /obj/machinery/door/firedoor{ @@ -8057,17 +7750,39 @@ /obj/machinery/door/window/brigdoor/westright, /turf/simulated/floor/plating, /area/security/brig) -"gkw" = ( -/obj/effect/floor_decal/industrial/loading, -/obj/structure/railing{ +"gkA" = ( +/turf/simulated/wall, +/area/main_map/hallway/deck2/starboard_fore) +"gkH" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) -"glj" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) +"gli" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward/starboard) +"glt" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Hangar Bay"; + cur_coils = 3 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/flight_deck) +"gmv" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/patient_d) "gmB" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -8077,12 +7792,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"gmH" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/deck_two/aft) "gmW" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -8094,53 +7803,37 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) -"gmY" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) "gnl" = ( /obj/machinery/atmospherics/component/binary/pump{ dir = 4 }, /turf/simulated/floor/reinforced, /area/engineering/atmos/processing) -"gnq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) -"gnC" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"gnD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, +"gnF" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) -"gog" = ( -/obj/structure/sink{ - pixel_y = 22 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"gnV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 33 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) +"gos" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) +"goG" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/crew_quarters/bar_backroom) "goH" = ( /obj/machinery/atmospherics/component/unary/outlet_injector{ dir = 4; @@ -8174,17 +7867,23 @@ }, /turf/simulated/floor/reinforced, /area/space) +"gpj" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "gpN" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"gpR" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 +"gqh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "gqJ" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -8222,18 +7921,58 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) -"gtv" = ( -/obj/machinery/door/firedoor{ - dir = 2 +"gsw" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"gtL" = ( -/obj/machinery/atmospherics/portables_connector{ +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"gsz" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 8 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "fuel_belt"; + name = "Fuel Belt" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/processing) +"gsZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/blue, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) +/area/main_map/maintenance/atmospheric_substation/security) +"gtg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"gtP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/cargo) "gub" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/monotile, @@ -8244,11 +7983,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"guM" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +"gvd" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "gvi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -8281,48 +8021,41 @@ }, /turf/simulated/floor/tiled, /area/space) -"gvp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +"gvq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"gvC" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/gloves/boxing/yellow{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/clothing/gloves/boxing/blue, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/processing) +"gvU" = ( +/turf/simulated/wall, +/area/main_map/hallway/deck2) "gws" = ( /turf/simulated/open, /area/engineering/engine_eva) -"gwu" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 +"gwA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/marker_beacon/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"gwE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hanger 1 A" + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/a) "gwH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled/monotile, /area/space) -"gwS" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) "gxy" = ( /obj/structure/railing{ dir = 4 @@ -8332,21 +8065,17 @@ }, /turf/simulated/open, /area/space) +"gxA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "gxE" = ( /obj/machinery/atmospherics/component/binary/pump, /obj/effect/floor_decal/corner/lightorange/bordercee, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"gxO" = ( -/obj/structure/sign/deck/second, -/turf/simulated/wall, -/area/hallway/primary/central_two) -"gxY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) "gyk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -8369,42 +8098,69 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"gzb" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 +"gyX" = ( +/obj/structure/sign/deck/second, +/turf/simulated/wall, +/area/main_map/hallway/deck2/stairs) +"gzs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"gzo" = ( -/obj/structure/bed/chair/comfy/beige{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"gzB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 8 }, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area_hallway) -"gzH" = ( -/obj/structure/table/steel, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) +"gzC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/landmark{ + name = "lightsout" }, /turf/simulated/floor/tiled, -/area/space) +/area/crew_quarters/pool/changing_room) "gzJ" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"gAm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +"gAE" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) +/obj/machinery/atmospherics/component/binary/passive_gate/on{ + pressure_resistance = 750; + target_pressure = 750; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"gAR" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/space/basic, +/area/space) "gBO" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -8416,24 +8172,30 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"gCh" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"gCq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) +/area/main_map/maintenance/deck_two) "gCv" = ( /obj/machinery/atmospherics/component/unary/engine/biggest{ dir = 4 }, /turf/space, /area/space) -"gCF" = ( -/obj/structure/railing{ +"gCz" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) +/turf/simulated/floor/reinforced, +/area/space) "gCH" = ( /obj/machinery/floodlight, /turf/simulated/floor/tiled/steel_ridged, @@ -8444,77 +8206,53 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"gDu" = ( -/obj/machinery/door/airlock/maintenance/command{ - name = "Command Atmospheric Substation" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"gDB" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) +"gDO" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/main_map/hallway/deck2) +"gDQ" = ( +/obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"gDD" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"gDP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"gEf" = ( -/obj/machinery/holopad, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"gEE" = ( +/area/main_map/maintenance/deck_two/forward) +"gEs" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"gET" = ( -/obj/structure/lattice, -/obj/structure/railing, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"gEI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, /turf/simulated/open, -/area/maintenance/deck_two) -"gFd" = ( -/obj/structure/cable/green{ +/area/main_map/maintenance/deck_two/forward/starboard) +"gFh" = ( +/obj/structure/cable{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"gGr" = ( +/obj/landmark{ + name = "morphspawn" }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) -"gFF" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, +/area/maintenance/cargo) +"gGO" = ( +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) +/area/main_map/maintenance/deck_two/forward) "gGP" = ( /obj/structure/closet{ name = "robotics parts" @@ -8573,74 +8311,23 @@ /obj/machinery/camera/network/research, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"gHx" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"gII" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"gHO" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"gIb" = ( -/obj/effect/floor_decal/corner_steel_grid{ +/obj/item/clothing/glasses/welding, +/obj/item/storage/belt/utility, +/obj/machinery/light/no_nightshift{ dir = 1 }, -/turf/simulated/floor/reinforced, -/area/space) -"gIn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) -"gIy" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm10"; - name = "Room 10 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"gIR" = ( -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/dispenser/phoron, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"gJr" = ( -/turf/simulated/wall, -/area/maintenance/atmospheric_substation/cargo) -"gKt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "gLc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -8650,6 +8337,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) +"gLm" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/starboard) "gLs" = ( /obj/machinery/camera/network/engineering, /obj/effect/floor_decal/techfloor/orange{ @@ -8663,24 +8354,27 @@ /obj/machinery/vending/tool, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"gLy" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ +"gLT" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) -"gLR" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) +/turf/simulated/floor/wood, +/area/crew_quarters/bar_backroom) "gMD" = ( /obj/effect/floor_decal/industrial/danger/corner{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_gas) +"gMH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) "gNi" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/danger{ @@ -8701,16 +8395,46 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_b) +"gND" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/hallway/deck2) "gOn" = ( /obj/machinery/mecha_part_fabricator, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"gOt" = ( -/obj/machinery/atmospherics/component/trinary/filter{ - filtering = "n2o" +"gOz" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/gas_storage) +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward/port) +"gOA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) +"gOJ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "gOV" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -8718,10 +8442,33 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/atmos/gas_storage) -"gQi" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +"gPE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"gPQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"gQr" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) "gQA" = ( /obj/machinery/door/airlock/maintenance/engi{ name = "Atmospherics"; @@ -8730,9 +8477,19 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/engineering/atmos) -"gRx" = ( +"gQE" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, /turf/simulated/open, -/area/maintenance/deck_two/aft) +/area/main_map/maintenance/deck_two/forward/port) +"gQY" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/hallway/deck2/starboard_fore) "gRG" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 8 @@ -8741,14 +8498,46 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/medbay2) +"gRV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "gRY" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) +"gSn" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/hallway/deck2/port_fore) +"gSp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "gTn" = ( /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, /area/space) +"gTr" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "gTt" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -8756,28 +8545,6 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"gTM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"gTN" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"gTP" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) -"gUA" = ( -/obj/machinery/atmospherics/tvalve/digital/mirrored, -/turf/simulated/floor/plating, -/area/space) "gUL" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -8788,46 +8555,50 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"gVd" = ( -/obj/structure/cable{ - icon_state = "1-2" +"gUQ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/starboard) +"gUS" = ( +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) +"gVo" = ( +/obj/structure/sign/deck2{ + pixel_y = 32 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"gVn" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 +/area/main_map/maintenance/deck_two/aft/starboard) +"gVq" = ( +/obj{ + name = "---Merge conflict marker---" }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_4) -"gVQ" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/techmaint, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/iv_drip, +/turf/space/basic, /area/space) -"gWf" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"gVs" = ( +/obj/structure/cable{ + icon_state = "1-4" }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"gWB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) +"gWH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 5 }, -/obj/machinery/door/airlock{ - id_tag = "dorm5"; - name = "Dorm 5" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "gWM" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -8835,6 +8606,24 @@ /obj/structure/bed/chair/bay/comfy, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"gWV" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hallway) +"gWX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) "gWY" = ( /obj/structure/toilet{ dir = 1 @@ -8847,13 +8636,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"gXI" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "gXV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -8863,35 +8645,41 @@ }, /turf/simulated/floor/wood, /area/medical/patient_wing) -"gXY" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +"gYx" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_two/aft) "gYZ" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/server) +"gZp" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "gZu" = ( /obj/structure/catwalk, /turf/simulated/floor/reinforced/airless, /area/space) -"gZA" = ( -/obj/machinery/button/ignition{ - id = "portnacelle_igniter"; - pixel_y = -28 +"gZV" = ( +/obj/structure/sign/deck2{ + pixel_y = 32 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "hak" = ( /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) +"hal" = ( +/obj/structure/table/steel, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "ham" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -8904,60 +8692,59 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"haz" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_3) +"hav" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) +"haJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) "haR" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 9 }, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) -"hbq" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward) +"hbs" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/hallway/deck2/port_fore) +"hca" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/storage) +"hch" = ( +/obj/machinery/button/remote/blast_door{ + id = "hanger1b"; + name = "Hanger 1 B"; + pixel_y = -28; + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/b) "hcm" = ( /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"hcK" = ( -/obj/effect/floor_decal/industrial/danger{ +"hcs" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/main_map/maintenance/atmospheric_substation/service) +"hcY" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/central_two) -"hcN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) -"hcO" = ( -/obj/machinery/door/airlock/engineering{ - name = "Hangar Substation" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"hcU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"hdc" = ( -/obj/machinery/power/thermoregulator, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/space) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "hdn" = ( /obj/machinery/door/airlock/glass/research{ name = "Robotics Lab"; @@ -8971,21 +8758,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor, /area/rnd/robotics) -"hen" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/component/binary/pump/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/component/binary/pump/fuel{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "heV" = ( /obj/structure/cable{ icon_state = "1-2" @@ -8999,30 +8771,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"heX" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/cmo) -"hfu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/space) +"hfr" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/port_fore) "hfz" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -9039,13 +8791,10 @@ /obj/item/retail_scanner/science, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"hfM" = ( -/obj/machinery/air_alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +"hfN" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "hfT" = ( /obj/machinery/power/generator{ anchored = 1; @@ -9056,61 +8805,68 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"hgT" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"hgX" = ( -/obj/structure/table/rack/shelf/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) +"hfU" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_two/aft/starboard) "hha" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/atmos/gas_storage) -"hho" = ( -/turf/simulated/wall, -/area/quartermaster/warehouse) -"hhz" = ( -/turf/simulated/wall, -/area/maintenance/substation/service) -"hhB" = ( +"hhl" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) +"hhx" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) +"hhF" = ( /obj/machinery/atmospherics/tvalve/digital/mirrored{ dir = 8 }, +/obj/structure/sign/deck2{ + pixel_y = 32 + }, /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"hiA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) -"hiK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 8 - }, -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"hiL" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 +/area/main_map/maintenance/atmospheric_substation/service) +"hhK" = ( +/obj/landmark{ + name = "lightsout" }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/area/quartermaster/hallway) +"hie" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"hiO" = ( +/obj/structure/sign/directions/cryo, +/turf/simulated/wall, +/area/main_map/hallway/deck2) +"hiR" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) "hjc" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -9126,38 +8882,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"hjW" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"hka" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"hkn" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "hkt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -9173,6 +8897,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/shield_gen) +"hkE" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/starboard_fore) "hlp" = ( /obj/structure/railing, /obj/structure/railing{ @@ -9187,27 +8915,34 @@ /obj/structure/ladder, /turf/simulated/floor/plating, /area/space) -"hlN" = ( -/obj/structure/cable{ +"hlM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ icon_state = "1-8" }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) -"hlW" = ( -/turf/simulated/wall, -/area/maintenance/deck_two/forward/port) -"hma" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "hmh" = ( /obj/spawner/window/reinforced/full/firelocks, /obj/structure/curtain/open/shower/medical, /turf/simulated/floor/plating, /area/medical/patient_d) +"hmk" = ( +/obj/machinery/door/window/survival_pod{ + dir = 2; + req_one_access = list(19) + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/reinforced, +/area/space) "hmA" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -9255,19 +8990,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) -"hnK" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"hnM" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward) "hof" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -9281,112 +9003,74 @@ /obj/structure/grille, /turf/simulated/floor/reinforced/airless, /area/space) -"hpE" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/techfloor/grid, +"hpx" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, /area/space) -"hqp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/power/apc/direction_bump/west, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"hqy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"hqC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"hrl" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) "hrw" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_gas) +"hrE" = ( +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "hrF" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/quartermaster/hallway) -"hrK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 9 - }, +"hrN" = ( /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"hrP" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) "hts" = ( /turf/space, /area/space) -"htH" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/space) -"htI" = ( -/obj/machinery/computer/cryopod/robot{ - pixel_x = -31; - pixel_y = 30 +"htL" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"huV" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"hvi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"htM" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled/techfloor, +/area/bridge/bunker) +"huz" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/brig) +"huZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ dir = 8 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/space) +/obj/structure/sign/deck2{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"hvm" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) "hvq" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple{ dir = 1 @@ -9397,6 +9081,14 @@ /obj/machinery/meter, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) +"hvz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) "hvD" = ( /obj/machinery/door/firedoor{ dir = 8 @@ -9407,26 +9099,52 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"hwj" = ( -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/deck_two/forward/starboard) -"hwo" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/rust, -/obj/machinery/camera/network/engineering{ +"hwb" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/plating, -/area/space) +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/xenoflora_storage) "hwB" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/rdoffice) +"hwE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"hwK" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) +"hwM" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward/starboard) +"hwP" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/substation/tcomms) +"hwX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck2) "hxh" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/effect/floor_decal/industrial/danger{ @@ -9434,16 +9152,70 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) +"hxn" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/space) "hxr" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"hyK" = ( -/obj/structure/closet/emcloset, +"hxA" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"hyj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/starboard_fore) +"hyn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/simulated/floor/plating, -/area/maintenance/dormitory) +/area/main_map/maintenance/atmospheric_substation/medical) +"hzg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "hzI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -9453,17 +9225,27 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) +"hzP" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/space/basic, +/area/space) "hAa" = ( /obj/structure/fireplace, /turf/simulated/floor/reinforced, /area/medical/patient_wing) -"hAz" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +"hAB" = ( +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "hAM" = ( /obj/machinery/computer/med_data{ dir = 1 @@ -9476,15 +9258,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"hAN" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/central_two) "hBb" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4; @@ -9495,38 +9268,50 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/gas_storage) -"hBc" = ( -/obj/random/drinkbottle, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/monotile, -/area/space) -"hBj" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) "hBq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"hBN" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/structure/sign/deck2{ - pixel_y = 32 +"hBz" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/shield_gen) +"hBW" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) +"hBZ" = ( +/obj/structure/closet/chefcloset, +/obj/item/glass_jar, +/obj/item/retail_scanner/civilian, +/obj/item/soap/nanotrasen, +/obj/item/destTagger{ + pixel_x = 4; + pixel_y = 3 }, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) +/obj/item/packageWrap, +/obj/item/packageWrap, +/obj/item/packageWrap, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"hCF" = ( +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/stairs) +"hCY" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/space) "hCZ" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -9538,31 +9323,23 @@ /obj/machinery/shield_capacitor, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/storage) -"hDs" = ( +"hDF" = ( +/obj/structure/catwalk, +/obj/structure/ladder/up, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) +"hEd" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"hDK" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"hEn" = ( -/obj/structure/sign/deck/second{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) "hEr" = ( /obj/structure/cable{ icon_state = "1-8" @@ -9570,37 +9347,25 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"hEs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) "hEu" = ( /obj/machinery/camera/network/outside{ dir = 5 }, /turf/simulated/floor/reinforced/airless, /area/space) -"hEB" = ( -/obj/machinery/light/small{ - dir = 1 +"hFk" = ( +/obj{ + name = "---Merge conflict marker---" }, -/obj/item/stool/padded, -/turf/simulated/floor/tiled/techfloor/grid, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/space/basic, /area/space) -"hEW" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) "hFE" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9608,16 +9373,18 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"hGb" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 +"hGh" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/closet/crate/bin{ - anchored = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "hGp" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -9628,20 +9395,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"hGv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) -"hGz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/dark, -/area/space) "hGO" = ( /obj/structure/table/reinforced, /obj/item/storage/box/nifsofts_engineering, @@ -9682,18 +9435,63 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) +"hHl" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "hHp" = ( /obj/machinery/light/no_nightshift{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) +"hIa" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/port) "hIi" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/cargo) +"hIq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_two/aft/starboard) +"hIZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "hJT" = ( /obj/structure/sink{ dir = 4; @@ -9712,20 +9510,6 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"hKk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) "hKm" = ( /obj/structure/cable{ icon_state = "2-8" @@ -9735,40 +9519,39 @@ }, /turf/simulated/floor/reinforced, /area/space) -"hKw" = ( -/obj/structure/bed/chair/comfy/teal, -/obj/machinery/newscaster{ - pixel_y = 32 +"hKI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"hLm" = ( -/turf/simulated/wall/r_wall, -/area/rnd/anomaly_lab) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) +"hKO" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"hKW" = ( +/turf/simulated/floor/plating, +/area/storage/tech) "hLM" = ( /obj/machinery/camera/network/research{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"hMr" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_9) -"hMz" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "fuel_go_round" +"hMg" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/processing) -"hMA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "hNo" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9784,30 +9567,67 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) +"hNy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) "hNA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) -"hNT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"hNB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/corner/paleblue/border{ +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/camera/network/engineering, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/hallway/deck2) +"hNQ" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) +/obj/structure/cable/green{ + icon_state = "32-8" + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward/port) +"hOw" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/starboard) "hOD" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/patient_d) +"hOQ" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/main_map/hallway/deck2) "hPh" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -9818,38 +9638,11 @@ "hPD" = ( /turf/simulated/floor/plating, /area/engineering/atmos) -"hQn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, +"hQg" = ( +/obj/structure/railing, +/obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) -"hQy" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward) -"hQE" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"hQW" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/space) -"hRb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_11) +/area/main_map/hallway/deck2) "hRp" = ( /obj/structure/railing, /obj/structure/railing{ @@ -9857,9 +9650,20 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"hRL" = ( -/turf/simulated/wall, -/area/quartermaster/foyer) +"hRJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "hangar_maint"; + name = "Hangar Maintenance Shutter" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay) "hSH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -9867,57 +9671,32 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) -"hSI" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/space) "hTc" = ( /obj/structure/railing, /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/hydroponics) -"hTI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"hTA" = ( +/obj/effect/debris/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/starboard) +"hTE" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) +"hUP" = ( +/obj{ + name = "---Merge conflict marker---" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"hUk" = ( -/obj/effect/floor_decal/techfloor/orange{ +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/handrail{ dir = 1 }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) -"hUw" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"hUz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"hUZ" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) -"hVj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, +/turf/space/basic, /area/space) "hVr" = ( /obj/effect/floor_decal/corner_techfloor_grid{ @@ -9926,16 +9705,29 @@ /obj/machinery/atmospherics/pipe/manifold4w/visible/red, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) +"hVs" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck2) "hVv" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 4 }, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) -"hVX" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, +"hVJ" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward) +/area/main_map/maintenance/deck_two/aft) +"hWi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "hWs" = ( /obj/machinery/camera/network/civilian, /turf/simulated/floor/tiled/monotile, @@ -9946,24 +9738,17 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"hWS" = ( +"hWL" = ( /obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) -"hYa" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/deck_two) +/area/main_map/maintenance/deck_two/aft/starboard) "hYb" = ( /obj/structure/stairs/spawner/west, /turf/simulated/floor/reinforced/airless, @@ -9980,16 +9765,31 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"hYN" = ( +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/camera/network/engineering, +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) "hYW" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"hZi" = ( -/obj/structure/cable/green, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) "hZo" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -9997,14 +9797,10 @@ /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"hZs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) +"hZB" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "hZL" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/structure/cable/yellow{ @@ -10025,10 +9821,34 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) +"iai" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) +"iaq" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) "iaC" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) +"iaK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/underone) "iaY" = ( /obj/structure/cable{ icon_state = "0-8" @@ -10038,11 +9858,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/cargo) -"ibf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) "ibm" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -10066,13 +9881,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"ibE" = ( -/obj/structure/cable/green, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) "ibO" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10080,22 +9888,19 @@ }, /turf/simulated/floor/carpet/blue, /area/bridge/meeting_room) -"icc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) "ici" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"icN" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +"icy" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2/a) "ids" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -10103,19 +9908,6 @@ /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"idG" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) "idO" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -10128,15 +9920,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"ieR" = ( -/obj/machinery/door/airlock/engineering{ - name = "Hangar Substation" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "ieY" = ( /obj/landmark/spawnpoint/job/cargo_technician, /turf/simulated/floor/tiled, @@ -10148,26 +9931,25 @@ /obj/structure/railing, /turf/simulated/open, /area/crew_quarters/recreation_area_hallway) +"ifi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/storage) "ifJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_eva) -"ifS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) -"iga" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/obj/machinery/shield_diffuser, -/turf/simulated/wall/r_wall, -/area/space) "igE" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -10180,25 +9962,26 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/shield_gen) -"igJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) "igT" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/shield_gen) -"ihw" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/deck_two) +"ihk" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/server) +"ihO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/maintenance) "ihT" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -10210,42 +9993,72 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) +"ihZ" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/space/basic, +/area/space) +"iid" = ( +/obj/machinery/door/airlock{ + name = "Toilet" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "iit" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 10 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) -"iiv" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"iiT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 5 +"iiE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"iiX" = ( -/obj/structure/toilet{ - pixel_y = 10 +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"ijk" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/rdoffice) +"ijz" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) -"ijB" = ( -/obj/machinery/light_switch{ - pixel_x = -9; - pixel_y = 30 +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 1; + name = "Fighter Hangar"; + req_one_access = list(1,19,29,38,43,47,63,67) }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "hangar_lockdown"; + name = "Hangar Lockdown Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "ijK" = ( /obj/structure/catwalk, /turf/simulated/open, @@ -10279,6 +10092,22 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos) +"iks" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen Cold Room"; + req_access = list(28) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) "ikv" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -10290,6 +10119,23 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/service) +"ikx" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward) +"ikN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) +"ikO" = ( +/obj/structure/railing, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) "ilk" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -10297,16 +10143,6 @@ /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"ill" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) "ilo" = ( /obj/structure/cable/heavyduty, /obj/machinery/power/pointdefense{ @@ -10314,14 +10150,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"ilu" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) "ilv" = ( /obj/structure/railing{ dir = 8 @@ -10339,12 +10167,6 @@ /obj/machinery/portable_atmospherics/canister/phoron, /turf/simulated/floor/plating, /area/engineering/atmos) -"iml" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "imr" = ( /obj/structure/closet/secure_closet/personal, /obj/item/reagent_containers/food/drinks/cans/waterbottle, @@ -10354,39 +10176,14 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) -"iny" = ( -/turf/simulated/wall, -/area/crew_quarters/showers) "inF" = ( /obj/machinery/seed_extractor, /turf/simulated/floor/tiled, /area/hydroponics) -"inQ" = ( -/obj/structure/bed/chair/comfy/teal, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"inU" = ( -/obj/structure/sign/deck2{ - pixel_x = 32 - }, +"iow" = ( +/obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) -"ioh" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/carpet/tealcarpet, -/area/medical/patient_d) -"ion" = ( -/obj/structure/railing, -/turf/simulated/open, -/area/maintenance/deck_two/aft) +/area/main_map/hallway/deck2) "ioO" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue{ dir = 10 @@ -10394,30 +10191,12 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/engineering/atmos/gas_storage) -"ioP" = ( -/turf/simulated/wall, -/area/medical/patient_c) -"ipJ" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret/stationary{ - gl_uid = "exploration"; - installation = /obj/item/gun/energy/phasegun; - name = "exploration turret"; - req_one_access = list(19,43,62,67); - uid = "exploration" +"iqj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"iqa" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) "iqp" = ( /obj/machinery/power/terminal{ dir = 8 @@ -10429,38 +10208,40 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"iqv" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_two/aft) -"iqT" = ( -/obj/structure/stairs/spawner/east, -/obj/structure/railing{ - dir = 1 +"iqF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "o2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/engineering/atmos/gas_storage) +"iqJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"iqZ" = ( +/obj/structure/cable/green{ + icon_state = "32-8" }, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) -"irm" = ( -/obj/structure/ladder, /obj/structure/railing{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"irO" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"irU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/port) +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward/starboard) "isl" = ( /obj/structure/railing, /obj/structure/railing{ @@ -10468,21 +10249,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenobiology/xenoflora_storage) -"iso" = ( -/obj/machinery/atmospherics/component/binary/passive_gate{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"isB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) "isE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -10492,40 +10258,32 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"isH" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"isN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) "isT" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) +"ite" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) "itl" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/plating, /area/engineering/engine_eva) +"itp" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) "itv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -10535,14 +10293,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"iut" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"iuv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) "iuP" = ( /obj/machinery/atmospherics/valve/digital, /obj/machinery/atmospherics/pipe/simple/hidden/black{ @@ -10550,6 +10306,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) +"iuS" = ( +/obj/structure/sign/hangar/two, +/turf/simulated/wall/r_wall, +/area/main_map/Hangar_bay/deck2) "ivA" = ( /obj/effect/floor_decal/corner/paleblue/border{ dir = 1 @@ -10558,15 +10318,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"ivG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"ivJ" = ( -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/tiled/dark, -/area/space) "iwS" = ( /obj/machinery/door/airlock/glass/mining{ name = "Mining Prep Room" @@ -10574,12 +10325,6 @@ /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"iwU" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/space) "ixi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -10595,6 +10340,22 @@ "ixz" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) +"ixX" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/direction_bump/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) "iyc" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -10608,27 +10369,9 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"iyo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"izf" = ( -/obj/structure/sign/deck/second, -/turf/simulated/wall, -/area/space) -"izt" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +"iyn" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/lab) "izw" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -10638,15 +10381,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"izF" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"iAt" = ( -/obj/machinery/atmospherics/tvalve/digital/mirrored{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) "iAz" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/effect/floor_decal/industrial/danger{ @@ -10654,43 +10388,25 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"iBr" = ( +"iAD" = ( +/obj/effect/floor_decal/industrial/warning, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) +/area/rift/station/fighter_bay/transport_tunnel) "iBK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"iBM" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"iBR" = ( -/obj/structure/cable/green{ - icon_state = "0-8" +"iCs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 }, /turf/simulated/floor/plating, -/area/vacant/vacant_office) -"iBW" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft) -"iCo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) +/area/main_map/maintenance/atmospheric_substation/research) "iCx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10700,19 +10416,44 @@ /mob/living/simple_mob/animal/sif/fluffy, /turf/simulated/floor/wood, /area/quartermaster/qm) -"iCP" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"iDy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"iDh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"iDj" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/main_map/maintenance/deck_two/port) +"iDm" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) +"iDq" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"iDV" = ( +/obj/machinery/door/airlock/maintenance/command{ + name = "Command Atmospheric Substation" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/crew_quarters/recreation_area) +/area/main_map/maintenance/atmospheric_substation/command) "iFi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /obj/structure/sign/deck2{ @@ -10720,21 +10461,32 @@ }, /turf/simulated/floor/plating, /area/space) -"iFT" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "sec_fore_pump" +"iFm" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) +"iFr" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/patient_d) +"iGM" = ( +/obj/machinery/button/remote/blast_door{ + id = "fighterbaytransportexit"; + name = "Transport Tunnel"; + pixel_x = -27; + pixel_y = 26; + req_one_access = list(1,29,38,47) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"iGf" = ( -/obj/structure/stairs/spawner/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/area/rift/station/fighter_bay/hangar) "iGY" = ( /obj/structure/table/reinforced, /obj/machinery/photocopier/faxmachine{ @@ -10742,12 +10494,12 @@ }, /turf/simulated/floor/wood, /area/space) -"iHh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +"iHb" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "iHp" = ( /obj/machinery/atmospherics/component/binary/circulator{ anchored = 1 @@ -10757,24 +10509,19 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"iIg" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Oxygen Generation"; - req_access = list(24); - req_one_access = null - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/space) +"iHT" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) "iIk" = ( /turf/simulated/wall, /area/rnd/robotics/mechbay) -"iIs" = ( -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/maintenance/deck_two/forward/starboard) -"iIu" = ( -/turf/simulated/wall, -/area/crew_quarters/pool/changing_room) +"iIC" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/starboard) "iIR" = ( /obj/structure/sign/warning/radioactive, /turf/simulated/wall/r_wall, @@ -10783,21 +10530,21 @@ /obj/machinery/holopad, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) -"iJx" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "fuel_go_round" - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/processing) -"iJJ" = ( -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/random/soap, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) +"iKb" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/storage/box/flare, +/obj/item/storage/box/flare, +/obj/item/clothing/mask/gas/clear, +/obj/item/clothing/mask/gas/clear, +/obj/item/clothing/mask/gas/clear, +/obj/item/clothing/mask/gas/clear, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay) +"iKu" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay) "iKv" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced/full, @@ -10814,21 +10561,16 @@ /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"iKF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/starboard) "iKN" = ( /obj/effect/floor_decal/industrial/danger{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/hallway) +"iKZ" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/hangar) "iLm" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10848,10 +10590,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"iLA" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_5) "iLO" = ( /obj/structure/window/phoronreinforced{ dir = 1 @@ -10865,95 +10603,56 @@ /obj/structure/window/phoronreinforced, /turf/simulated/wall/r_wall, /area/engineering/atmos) -"iMf" = ( -/obj/structure/sign/warning/nosmoking_1, -/turf/simulated/wall/r_wall, -/area/engineering/atmos/gas_storage) -"iMN" = ( -/turf/simulated/floor/tiled, -/area/hydroponics) -"iNi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 +"iMk" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 }, /obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"iMN" = ( +/turf/simulated/floor/tiled, +/area/hydroponics) +"iNF" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2/stairs) "iNH" = ( /turf/simulated/floor/tiled/monotile, /area/crew_quarters/bar) -"iNP" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"iOc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"iOh" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/glass_external, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"iOm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) "iOu" = ( /obj/structure/toilet{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/patient_a) -"iOA" = ( -/obj/machinery/newscaster{ - pixel_x = 30 +"iOy" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 }, -/obj/machinery/recharge_station, /turf/simulated/floor/plating, -/area/vacant/vacant_office) -"iOH" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ +/area/main_map/maintenance/deck_two/forward) +"iOD" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck2) +"iOK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/railing{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/atmospheric_substation/civilian) +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) "iOZ" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -10963,9 +10662,6 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) -"iPi" = ( -/turf/simulated/wall, -/area/maintenance/deck_two/aft/starboard) "iPo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light_switch{ @@ -10984,58 +10680,43 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, /area/engineering/shield_gen) -"iPy" = ( +"iPI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) "iPW" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/shield_gen) -"iQv" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"iQG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 +"iQg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"iQr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 5 }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) +/area/main_map/maintenance/atmospheric_substation/security) "iQH" = ( /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) -"iQK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) "iQX" = ( /obj/machinery/door/airlock/glass/engineering, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/hallway) -"iRC" = ( -/obj/structure/sign/deck2{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"iRH" = ( -/obj/machinery/atmospherics/component/trinary/filter/mirrored{ - dir = 1; - filtering = "o2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/gas_storage) "iRV" = ( /obj/machinery/firealarm{ dir = 1; @@ -11049,27 +10730,6 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"iRY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"iSb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) "iSr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -11082,6 +10742,31 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) +"iSs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) +"iSv" = ( +/obj/machinery/door/airlock{ + name = "Auxiliary Janitorial Closet"; + req_access = list(26) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/cargo) "iSz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -11098,19 +10783,25 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"iSU" = ( -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 7 +"iTf" = ( +/obj/machinery/door/firedoor{ + dir = 2 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) "iTq" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) +"iTH" = ( +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck2/port_fore) "iTM" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -11123,38 +10814,21 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) -"iTX" = ( -/obj/machinery/door/airlock/maintenance/engi, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/space) -"iUj" = ( -/obj/structure/cable/green{ - icon_state = "0-4" +"iUn" = ( +/obj/machinery/firealarm{ + pixel_y = 24 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"iUN" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/space) -"iVg" = ( -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"iUx" = ( +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/b) "iVk" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"iVq" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) "iVx" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -11163,22 +10837,19 @@ /obj/machinery/computer/roguezones, /turf/simulated/floor/wood, /area/quartermaster/qm) -"iVI" = ( -/obj/structure/sign/deck2{ - pixel_y = 32 +"iVy" = ( +/turf/simulated/wall/r_wall, +/area/main_map/Hangar_bay/deck2/b) +"iVU" = ( +/obj/structure/cable/green{ + icon_state = "32-1" }, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) -"iWa" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"iXt" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) "iXE" = ( /obj/machinery/computer/general_air_control/large_tank_control{ frequency = 2346; @@ -11191,6 +10862,28 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) +"iXF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "hangar_lockdown"; + name = "Hangar Lockdown Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "iXN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -11200,26 +10893,39 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"iXV" = ( +"iYp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"iZy" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/main_map/hallway/deck2) +"iZH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"iYl" = ( -/obj/structure/cable, -/obj/machinery/power/apc/direction_bump/east, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 10 }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) +/area/main_map/maintenance/atmospheric_substation/research) "iZL" = ( /obj/structure/railing{ dir = 4 @@ -11235,19 +10941,6 @@ /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"jaU" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) "jbn" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ @@ -11269,28 +10962,37 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"jbQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/obj/structure/closet/firecloset, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) "jbW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 9 }, /turf/simulated/floor/plating, /area/space) -"jcH" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 +"jce" = ( +/obj/structure/railing{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/port) +"jcG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) +"jcJ" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/main_map/maintenance/atmospheric_substation/research) "jcQ" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11301,51 +11003,18 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/hallway) -"jcY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/button/remote/blast_door{ - dir = 0; - id = "shuttle_hatch"; - name = "Shuttle Rear Hatch"; - pixel_x = 20; - pixel_y = 25 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"jcZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"jdk" = ( +/obj/structure/bed/chair/sofa/purp/right{ dir = 4 }, -/obj/machinery/door/airlock/atmos{ - name = "Science Atmospherics Backup"; - req_access = list(24) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"jdh" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/crew_quarters/sleep/Dorm_2) +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) "jdt" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"jdv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) "jdU" = ( /obj/machinery/door/airlock/maintenance/cargo, /obj/machinery/door/firedoor/border_only, @@ -11357,22 +11026,15 @@ }, /turf/simulated/wall/r_wall, /area/space) -"jem" = ( -/turf/simulated/floor/tiled/neutral, -/area/space) -"jeo" = ( -/obj/structure/cable/green{ +"jez" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/sign/directions/roomnum{ - dir = 6; - pixel_x = -31; - pixel_y = -3 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "jeD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -11386,25 +11048,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"jeR" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 +"jfs" = ( +/obj/structure/cable{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/space) -"jfJ" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +/area/main_map/maintenance/deck_two/aft) "jfM" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -11417,6 +11068,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_d) +"jfV" = ( +/obj/machinery/door/airlock/maintenance/engi{ + name = "Elevator Shaft Access"; + req_one_access = null + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/starboard) "jgk" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -11440,32 +11098,21 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"jgr" = ( -/obj/structure/railing, -/turf/simulated/open, -/area/maintenance/deck_two/aft/port) -"jhb" = ( -/obj/structure/curtain/open/shower/engineering, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"jgS" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/bunker) "jhk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"jhp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/obj/machinery/camera/network/engineering, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/space) "jhD" = ( /obj/structure/stairs/spawner/south, /obj/structure/railing{ @@ -11473,10 +11120,10 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/recreation_area_hallway) -"jid" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) +"jhI" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) "jis" = ( /obj/structure/cable/cyan{ icon_state = "0-8" @@ -11490,27 +11137,66 @@ }, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_smes) -"jjf" = ( -/obj/structure/cable{ - icon_state = "2-4" +"jja" = ( +/obj/machinery/atmospherics/tvalve/digital/mirrored{ + dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) +"jjh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) +"jjl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/blue, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) +"jjn" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward) +"jjq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) "jjA" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/atmos/processing) -"jjG" = ( +"jkA" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/observation) +"jld" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/main_map/maintenance/deck_two/aft) +"jlk" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "16-0" }, +/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/maintenance/deck_two/aft/starboard) +"jmn" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) +"jmt" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward) "jmu" = ( /obj/machinery/disposal, /turf/simulated/floor/wood, @@ -11520,39 +11206,22 @@ /obj/structure/bed/padded, /turf/simulated/floor/carpet/tealcarpet, /area/medical/patient_c) -"jmV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) "jne" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"jnh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 +"jno" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/machinery/door/window/northleft{ - name = "Shower"; - req_access = list() +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/curtain/open/shower/engineering, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_11) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) "jnv" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -11562,29 +11231,43 @@ }, /turf/simulated/floor/reinforced, /area/space) -"jnZ" = ( +"jnB" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) +"jnH" = ( /obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"jnJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"jos" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/area/crew_quarters/bar) +"jov" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/glass_external/public{ + name = "Mining Outpost Airlock" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"joG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/embedded_controller/radio/airlock/phoron{ + id_tag = "public_underground1_airlock"; + pixel_y = 26 + }, +/turf/simulated/floor, +/area/hallway/primary/underone) "joM" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -11600,23 +11283,18 @@ "jpm" = ( /turf/simulated/open, /area/crew_quarters/kitchen) -"jqf" = ( -/obj/machinery/mineral/equipment_vendor/survey, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/techfloor, +"jpB" = ( +/turf/simulated/wall/r_wall/prepainted/security, /area/space) -"jqv" = ( -/obj/structure/cable{ - icon_state = "1-2" +"jqL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/metal/mait, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/starboard_fore) "jqO" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Telecomms"; @@ -11642,37 +11320,45 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) -"jsd" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_11) -"jsm" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 +"jrG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/structure/disposaloutlet, -/obj/structure/window/reinforced{ +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"jsj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) +"jsE" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"jsC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"jtc" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -5 +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/wall/r_wall, -/area/quartermaster/qm) +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/maintenance/deck_two/aft/starboard) "jtl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -11683,55 +11369,11 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"jto" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/open, -/area/maintenance/deck_two/forward/starboard) -"jtp" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) -"jtq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) "jtK" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/standard, /turf/simulated/floor/tiled, /area/space) -"jtY" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "juH" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 9 @@ -11744,31 +11386,26 @@ /obj/machinery/shield_gen, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/storage) -"jvf" = ( -/obj/machinery/atmospherics/component/unary/vent_pump{ - icon_state = "map_vent_out"; - on = 1 +"jvI" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 }, -/turf/simulated/floor/bluegrid{ - initial_gas_mix = "n2=500;TEMP=80"; - name = "Server Base" - }, -/area/server) -"jvi" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) +"jwo" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) +"jwS" = ( +/obj/structure/sign/deck/second{ + pixel_y = -32 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"jwB" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/recreation_area_hallway) "jxb" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -11779,16 +11416,15 @@ /obj/machinery/meter, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"jxz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"jxf" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "hangar_pad"; + name = "Hangar Bay Blast Door" }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool/changing_room) +/obj/structure/fans/tiny, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) "jyc" = ( /obj/effect/floor_decal/corner/paleblue/border{ dir = 4 @@ -11798,32 +11434,39 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"jyj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) "jyk" = ( /obj/machinery/shieldgen, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/storage) +"jyZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) "jzo" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Cargo Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/cargo) +"jzL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2/stairs) "jzV" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Medical Maintenance Access"; @@ -11832,14 +11475,17 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/patient_wing) -"jzZ" = ( -/obj/structure/stairs/spawner/west, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, +"jAi" = ( /turf/simulated/floor/plating, -/area/maintenance/deck_two) +/area/main_map/maintenance/deck_two/aft) +"jAm" = ( +/obj/structure/table/rack/shelf/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) "jAz" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 1 @@ -11855,17 +11501,33 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, /area/maintenance/cargo) -"jBk" = ( -/obj/structure/railing{ - dir = 1 +"jBY" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Flight Deck Substation"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/techmaint, +/area/space) "jCh" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/hallway) +"jCx" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/sign/deck2{ + pixel_x = -32 + }, +/turf/simulated/open, +/area/main_map/hallway/deck2) "jCF" = ( /obj/machinery/atmospherics/pipe/manifold/visible/blue{ dir = 8 @@ -11880,52 +11542,23 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/bridge/bunker) -"jDp" = ( -/turf/simulated/wall, -/area/maintenance/substation/civilian) "jDF" = ( /obj/machinery/camera/network/outside{ dir = 10 }, /turf/simulated/floor/reinforced/airless, /area/space) -"jDI" = ( +"jDN" = ( +/obj/machinery/door/firedoor/glass, /obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"jDJ" = ( -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/pickaxe, -/obj/item/pickaxe{ - pixel_y = -5 +/obj/machinery/door/airlock/atmos{ + name = "Science Atmospherics Backup"; + req_access = list(24) }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"jDQ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"jDS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) "jDV" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -11963,27 +11596,15 @@ /obj/machinery/atmospherics/component/binary/pump/on, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"jEz" = ( -/obj/machinery/camera/network/research{ +"jES" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"jEY" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) "jFh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11992,51 +11613,26 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"jFm" = ( -/obj/machinery/camera/network/engineering, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger{ - pixel_y = 5 +"jGc" = ( +/obj/structure/sink/kitchen{ + name = "sink"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, /turf/simulated/floor/tiled/techmaint, -/area/space) -"jFx" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) -"jFY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/area/maintenance/cargo) "jGq" = ( /obj/machinery/door/airlock/maintenance/rnd{ req_access = list(29,47) }, /turf/simulated/floor/tiled/techmaint, /area/rnd/robotics/mechbay) -"jGu" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"jGH" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, +"jGV" = ( +/obj/structure/closet/firecloset, /turf/simulated/floor/plating, -/area/maintenance/deck_two/port) +/area/main_map/maintenance/deck_two/forward/port) "jHh" = ( /obj/structure/table/standard, /obj/structure/bedsheetbin, @@ -12045,50 +11641,27 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) -"jHj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/wall/rshull, -/area/space) -"jHq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"jHp" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"jHU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"jHy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/ai_status_display{ - pixel_y = -32 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"jHJ" = ( -/obj/machinery/holopad, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"jHK" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"jHV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 4 - }, -/obj/machinery/light/no_nightshift{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/processing) +/area/rift/station/fighter_bay) +"jIs" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "jIE" = ( /obj/machinery/meter, /obj/effect/floor_decal/borderfloor{ @@ -12097,15 +11670,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"jJb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "jJc" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -12120,12 +11684,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"jJp" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(18,47) +"jJi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 }, -/turf/simulated/floor/tiled/steel_ridged, -/area/space) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "jJr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -12141,26 +11705,43 @@ "jJz" = ( /turf/simulated/floor/tiled/techfloor, /area/space) -"jJI" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 +"jJA" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"jKa" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"jJQ" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/starboard) +"jKj" = ( +/obj{ + name = "---Merge conflict marker---" }, -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/flora/pottedplant/flower, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/space/basic, +/area/space) +"jKM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/engineering/engine_gas) "jKN" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/bed/chair/comfy/brown{ @@ -12168,36 +11749,30 @@ }, /turf/simulated/floor/carpet, /area/medical/patient_wing) -"jKO" = ( -/obj/effect/floor_decal/borderfloorwhite{ +"jKS" = ( +/obj/structure/sign/deck2{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/tank/air{ dir = 8 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/space) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) "jLd" = ( /obj/machinery/lathe/autolathe, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"jLf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) -"jLs" = ( -/obj/structure/inflatable, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft) "jLH" = ( /obj/structure/cable, /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) +"jLZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) "jMj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12226,11 +11801,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/shield_gen) -"jMN" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/spider/stickyweb/dark, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) "jNh" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -12241,6 +11811,13 @@ /obj/machinery/suit_cycler/engineering, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) +"jNV" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/structure/sign/deck/second{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "jNW" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -12250,6 +11827,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"jOi" = ( +/obj/structure/bed/double/weaversilk_nest, +/obj/effect/debris/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) +"jOy" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/patient_b) "jOF" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -12275,41 +11860,47 @@ }, /turf/simulated/floor/plating, /area/space) -"jOU" = ( -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_two) -"jPa" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) -"jPb" = ( -/obj/structure/sign/directions/cryo{ - dir = 8 - }, -/turf/simulated/wall, -/area/space) -"jPd" = ( -/obj/machinery/door/firedoor, +"jPu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance, -/obj/structure/catwalk, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) +"jPv" = ( +/obj/machinery/atmospherics/tvalve/digital, /turf/simulated/floor/plating, -/area/maintenance/dormitory) -"jPP" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ +/area/main_map/maintenance/atmospheric_substation/command) +"jPH" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"jPS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"jPX" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "jPY" = ( /obj/structure/catwalk, /turf/simulated/open, @@ -12359,30 +11950,32 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"jQV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"jQZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" +"jQS" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 1; + name = "Medical Waste Buffer"; + start_pressure = 0 }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"jRY" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 +/area/main_map/maintenance/atmospheric_substation/medical) +"jRq" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology/xenoflora_storage) +"jRZ" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/maintenance/deck_two) +"jSg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "jSp" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -12392,22 +11985,29 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/shield_gen) -"jSN" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 +"jSx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"jSV" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) +"jSS" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_two/forward/port) +"jSU" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) +"jTc" = ( +/obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, /turf/simulated/floor/plating, -/area/maintenance/dormitory) +/area/main_map/maintenance/deck_two/forward/starboard) "jTg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -12417,6 +12017,21 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) +"jTh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/sign/deck/second{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) "jTm" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ @@ -12424,10 +12039,12 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"jTv" = ( -/obj/structure/sign/department/eva, -/turf/simulated/wall, -/area/crew_quarters/recreation_area) +"jTq" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "jUp" = ( /obj/structure/table/rack{ dir = 8; @@ -12446,17 +12063,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"jUq" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/space) -"jUz" = ( -/obj/machinery/power/thermoregulator, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/space) "jUK" = ( /obj/structure/table/glass, /obj/machinery/computer/skills{ @@ -12466,17 +12072,14 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"jVs" = ( -/obj/machinery/button/remote/blast_door{ - id = "portnacelle_blastdoor"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +"jUZ" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) +"jVl" = ( +/obj/structure/railing, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/stairs) "jVG" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black, /turf/simulated/floor/plating, @@ -12487,6 +12090,18 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) +"jWH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "jXj" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /obj/structure/cable/heavyduty{ @@ -12511,28 +12126,30 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"jXC" = ( -/obj/structure/reagent_dispensers/watertank, +"jXy" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "n2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/engineering/atmos/gas_storage) +"jXA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plating, -/area/maintenance/dormitory) -"jXF" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/atmospheric_substation/medical) +/area/main_map/maintenance/atmospheric_substation/ai) "jXG" = ( /obj/structure/table/glass, /obj/machinery/photocopier/faxmachine{ @@ -12540,14 +12157,6 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) -"jXP" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/adv{ - pixel_y = 10 - }, -/obj/item/robotanalyzer, -/turf/simulated/floor/tiled/neutral, -/area/space) "jXR" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -12569,19 +12178,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"jYr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass/engineeringatmos{ - name = "Damage Control Storage" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +"jYD" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/starboard) "jYW" = ( /obj/structure/railing, /obj/structure/stairs/spawner/west, @@ -12595,6 +12195,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) +"jZp" = ( +/obj/structure/wall_frame, +/turf/simulated/floor/plating, +/area/maintenance/cargo) "kao" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -12602,21 +12206,18 @@ /obj/machinery/portable_atmospherics/canister/empty, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"kaw" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) -"kaJ" = ( +"kaA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) -"kaQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/space) +/area/main_map/maintenance/deck_two) "kbd" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Science Subgrid"; @@ -12639,6 +12240,10 @@ /obj/structure/filingcabinet/filingcabinet, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) +"kbi" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "kbz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -12653,74 +12258,99 @@ /obj/map_helper/airlock/door/ext_door, /turf/simulated/floor/plating, /area/engineering/engine_eva) -"kcH" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ +"kbZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) +"kce" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) +"kcD" = ( +/obj/structure/railing, +/obj/structure/railing{ dir = 1 }, -/turf/simulated/floor, -/area/space) -"kcK" = ( -/obj/machinery/computer/shuttle_control/explore/excursion, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"kcW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"kcG" = ( +/obj/structure/cable/green{ icon_state = "2-8" }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward) +"kcY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) +"kde" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) +/area/main_map/maintenance/deck_two/forward) "kds" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"kdv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"kdF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/table/woodentable, -/obj/item/paper_bin, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area_hallway) -"ken" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"keD" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"ked" = ( /obj/machinery/atmospherics/pipe/simple/hidden/blue{ dir = 9 }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"keR" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"keU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/area/main_map/maintenance/atmospheric_substation/research) +"ken" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"kev" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 10 }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_office) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) "kfE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 9 @@ -12743,9 +12373,24 @@ /obj/structure/table/rack/shelf/steel, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) -"kgm" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_2) +"kgi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"kgt" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/barrestroom) +"kgu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/b) "kgy" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/structure/cable/yellow{ @@ -12753,35 +12398,53 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"kgN" = ( -/obj/machinery/door/firedoor, +"khG" = ( +/obj/structure/sign/department/ass{ + pixel_x = 29 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Crew Quarters" +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"kiL" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"khH" = ( -/obj/structure/noticeboard, -/turf/simulated/wall, -/area/quartermaster/foyer) -"kil" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"kiZ" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"kiz" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) -"kiH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"kjn" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck2) +"kjG" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/cargo) "kjH" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/structure/window/reinforced{ @@ -12806,25 +12469,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"kjT" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"kko" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 9 - }, -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) "kld" = ( /obj/machinery/door/airlock/glass_external, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -12848,32 +12492,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"kls" = ( -/obj/machinery/atmospherics/tvalve/digital{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"klt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"klN" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_4) -"kmh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) "kmO" = ( /obj/machinery/door/airlock/maintenance/engi, /obj/machinery/atmospherics/pipe/simple/hidden/black, @@ -12883,17 +12501,6 @@ "kna" = ( /turf/simulated/open, /area/rnd/research/researchdivision) -"knd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "deck1_airlock2"; - pixel_x = 24 - }, -/obj/machinery/door/airlock/glass_external, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "kno" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -12914,46 +12521,31 @@ /obj/item/retail_scanner/command, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"koC" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area_hallway) -"kpl" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"kpt" = ( -/obj/structure/closet/chefcloset, -/obj/item/glass_jar, -/obj/item/retail_scanner/civilian, -/obj/item/soap/nanotrasen, -/obj/item/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/packageWrap, -/obj/item/packageWrap, -/obj/item/packageWrap, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"kqg" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/ladder/up, +"koA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/space) +/area/main_map/maintenance/atmospheric_substation/civilian) +"koJ" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"kpk" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/sign/deck2{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/maintenance/substation/flight_deck) "kqm" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 1 @@ -12969,12 +12561,9 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"kqt" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) +"kqv" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/fitness) "kqG" = ( /turf/simulated/shuttle/wall/voidcraft/blue, /area/space) @@ -12991,6 +12580,17 @@ /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/wood, /area/crew_quarters/showers) +"krf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/power/apc/direction_bump/west, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) "krg" = ( /obj/structure/railing{ dir = 1 @@ -13000,23 +12600,19 @@ }, /turf/simulated/open, /area/crew_quarters/recreation_area_hallway) -"krn" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ +"krw" = ( +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning/cee, -/obj/effect/floor_decal/spline/fancy{ +/obj/effect/floor_decal/corner/lime/border{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"kso" = ( -/obj/structure/railing{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/open, -/area/maintenance/deck_two/aft) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/hydroponics) "ksv" = ( /obj/structure/cable{ icon_state = "4-8" @@ -13029,6 +12625,18 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) +"ksw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) "ksy" = ( /obj/machinery/air_sensor{ frequency = 1441; @@ -13036,48 +12644,38 @@ }, /turf/simulated/floor/reinforced/phoron, /area/engineering/atmos/gas_storage) -"ksO" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"ksF" = ( +/obj/machinery/conveyor_switch, +/obj/map_helper/conveyor/lever{ + id_tag = "fuel_belt"; + name = "Fuel Belt" }, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"ktl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"kto" = ( +/turf/simulated/floor/reinforced, +/area/engineering/atmos/processing) +"kti" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"ktj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) +"ktk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) "kts" = ( /obj/machinery/atmospherics/component/binary/pump{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"ktE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/starboard) "ktS" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -13093,6 +12691,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) +"kud" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "kug" = ( /obj/structure/railing{ dir = 1 @@ -13103,22 +12707,44 @@ }, /turf/simulated/open, /area/maintenance/cargo) -"kuR" = ( -/turf/simulated/wall/r_wall, -/area/rnd/research/researchdivision) -"kuS" = ( -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"kvN" = ( -/obj/effect/floor_decal/techfloor/orange{ +"kuk" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=80"; + name = "Server Base" + }, +/area/server) +"kup" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/port) +"kuQ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck2) +"kvJ" = ( +/obj/machinery/atmospherics/tvalve/digital/bypass, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) +"kvR" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_two/forward/starboard) "kvU" = ( /obj/machinery/atmospherics/component/binary/pump/on{ dir = 1; @@ -13130,10 +12756,19 @@ /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"kvW" = ( -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_two) +"kwq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) "kwu" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -13144,20 +12779,27 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"kwx" = ( -/obj/structure/table/woodentable, -/obj/item/instrument/accordion, -/obj/machinery/computer/security/telescreen{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) "kwz" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) +"kwJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/maintenance/deck_two/aft/starboard) "kwQ" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -13170,34 +12812,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"kwT" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/stack/material/algae, -/obj/item/stack/material/algae, -/turf/simulated/floor/tiled/techfloor, -/area/space) "kxi" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"kxC" = ( -/obj/machinery/door/airlock/maintenance/command{ - name = "Command Substation" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge_lockdown"; - name = "Bridge Lockdown"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/bridge/bunker) "kxT" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -13248,21 +12866,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"kyQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"kyR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) +"kyD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "kyU" = ( /obj/structure/closet{ name = "materials" @@ -13281,20 +12890,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"kzk" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm7"; - name = "Room 7 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) "kzs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -13307,14 +12902,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) -"kzB" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "fuel_go_round" - }, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/processing) "kAl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -13323,24 +12910,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"kAw" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "fuel_go_round" - }, -/obj/structure/window/reinforced, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/processing) -"kAz" = ( -/obj/structure/railing{ +"kBt" = ( +/obj/machinery/atmospherics/tvalve/digital/mirrored{ dir = 8 }, -/obj/structure/railing{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/open, -/area/maintenance/deck_two/forward/starboard) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) "kBz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/industrial/danger{ @@ -13348,30 +12926,16 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) -"kBM" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/bar) -"kBZ" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "kCU" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) +"kDj" = ( +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled/steel_grid, +/area/rift/station/fighter_bay/maintenance) "kDu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13386,77 +12950,49 @@ }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/cargo) -"kDW" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/item/storage/belt, +"kDH" = ( /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/rift/station/fighter_bay/transport_tunnel) +"kDX" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=80"; + name = "Server Base" + }, +/area/server) "kEj" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, /turf/simulated/floor/reinforced, /area/engineering/atmos/processing) -"kFc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 9 +"kFe" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "16-0" }, -/obj/machinery/camera/network/engineering{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"kFx" = ( -/obj/machinery/atmospherics/tvalve/digital/mirrored{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) +/area/main_map/maintenance/deck_two/aft/starboard) "kFX" = ( /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"kGt" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"kGG" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/sign/deck/second{ - pixel_y = 32 - }, -/turf/simulated/open, -/area/space) -"kGV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) "kHh" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/shield_capacitor/advanced{ @@ -13481,48 +13017,52 @@ }, /turf/simulated/open, /area/maintenance/engineering) -"kHV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"kIt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) -"kIk" = ( -/obj/structure/cable/green{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) +"kIA" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Flight Deck Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/space) +"kIF" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/storage) +"kIR" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/port) -"kIN" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"kIZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/maintenance/deck_two/aft) +"kIW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) +"kJt" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_smes) "kJw" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 4 @@ -13531,10 +13071,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"kJx" = ( -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) +"kJy" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) "kJz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -13561,6 +13103,22 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/cargo) +"kKv" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) +"kKS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"kKY" = ( +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) "kLd" = ( /obj/machinery/button/remote/blast_door{ id = "portnacelle_blastdoor"; @@ -13588,9 +13146,27 @@ /obj/landmark/spawnpoint/job/cargo_technician, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) -"kMm" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_two/aft/port) +"kMs" = ( +/obj/machinery/disposal, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/storage) +"kMV" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/space/basic, +/area/space) "kNV" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -13603,12 +13179,19 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"kOm" = ( -/obj/machinery/newscaster{ - pixel_y = 32 +"kOt" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) "kOw" = ( /turf/simulated/open, /area/quartermaster/warehouse) @@ -13625,9 +13208,6 @@ /obj/machinery/door/window/brigdoor/southright, /turf/simulated/floor/plating, /area/security/brig) -"kOG" = ( -/turf/simulated/open, -/area/maintenance/deck_two/forward) "kOL" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 10 @@ -13638,89 +13218,21 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) -"kPj" = ( -/turf/simulated/wall, -/area/maintenance/deck_two/forward/starboard) -"kPH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/anomaly_lab) "kQm" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, /area/crew_quarters/bar) -"kQD" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 +"kRs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"kQI" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"kQJ" = ( -/obj/machinery/atmospherics/component/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "co2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - on = 1 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos/gas_storage) -"kQM" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/trashcart, -/obj/item/instrument/bikehorn, -/turf/simulated/floor/tiled, -/area/maintenance/dormitory) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2/stairs) "kRx" = ( /obj/machinery/computer/transhuman/resleeving{ dir = 1 @@ -13751,31 +13263,15 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"kSm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 +"kSv" = ( +/obj/structure/railing{ + dir = 8 }, +/obj/structure/railing, +/obj/structure/lattice, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/space) -"kSu" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/conveyor{ - dir = 5; - id = "fuel_go_round" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/processing) +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) "kSy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -13790,19 +13286,16 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/maintenance/substation/service) -"kSI" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"kSL" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 }, /obj/structure/cable/green{ - icon_state = "0-8" + icon_state = "1-2" }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Hangar Bay Subgrid"; - name_tag = "Hangar Bay Subgrid" - }, -/turf/simulated/floor/plating, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/transport_tunnel) "kSV" = ( /obj/machinery/vending/tool, /turf/simulated/floor/tiled, @@ -13813,27 +13306,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"kTk" = ( -/obj/structure/stairs/spawner/west, -/turf/space, -/area/space) -"kTu" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"kTA" = ( -/turf/simulated/wall, -/area/medical/patient_wing) -"kTP" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"kUf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera/network/command, -/turf/simulated/floor/plating, -/area/space) "kUj" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Security Subgrid"; @@ -13859,19 +13331,24 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/security) -"kUs" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing{ - dir = 8 +"kUE" = ( +/obj{ + name = "---Merge conflict marker---" }, -/obj/structure/railing{ +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/space/basic, +/area/space) +"kUW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/plating, -/area/maintenance/deck_two) -"kUQ" = ( -/turf/simulated/wall, -/area/crew_quarters/toilet) +/area/main_map/maintenance/atmospheric_substation/ai) "kVy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -13880,33 +13357,31 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"kVA" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_10) -"kVW" = ( -/obj/machinery/shower{ - dir = 8 +"kWl" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"kXb" = ( -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"kXw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ +/turf/simulated/floor/reinforced, +/area/engineering/atmos/processing) +"kWr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/obj/machinery/camera/network/engineering{ dir = 8 }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"kXI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 +/area/main_map/maintenance/atmospheric_substation/command) +"kXb" = ( +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"kXs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "kXX" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -13916,13 +13391,13 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"kYs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 +"kYq" = ( +/obj/machinery/mech_recharger, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/hangar) "kYt" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13941,18 +13416,16 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/space) -"kYu" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 +"kYz" = ( +/obj{ + name = "---Merge conflict marker---" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/turf/space/basic, +/area/space) "kYR" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 10 @@ -13962,12 +13435,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"kZp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) "kZx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -13978,22 +13445,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"kZK" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"lad" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_two/forward) "laL" = ( /obj/machinery/pointdefense_control{ id_tag = "forward_pd"; @@ -14001,12 +13452,6 @@ }, /turf/simulated/floor/plating, /area/space) -"lbc" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) "lbA" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/effect/floor_decal/industrial/danger, @@ -14016,10 +13461,9 @@ /obj/machinery/camera/network/cargo, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/hallway) -"lbZ" = ( -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) +"lbI" = ( +/turf/simulated/floor/glass/reinforced, +/area/main_map/hallway/deck2) "lcP" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 8 @@ -14035,10 +13479,13 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) -"ldR" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) +"lcQ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/machinery/vending/cola, +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) "ldT" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate, @@ -14048,27 +13495,15 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/storage) -"ldZ" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"lef" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm8"; - name = "Room 8 Lock"; - pixel_x = 24; - pixel_y = -4; - specialfunctions = 4 +"ldU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 }, -/obj/structure/closet/crate/bin{ - anchored = 1 +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=80"; + name = "Server Base" }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) +/area/server) "leg" = ( /obj/machinery/door/airlock/maintenance/cargo, /obj/structure/cable/green{ @@ -14086,39 +13521,35 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/recreation_area_hallway) +"les" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "leE" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 10 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) +"leN" = ( +/obj/structure/sink/kitchen{ + name = "sink"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "leX" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Civilian Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian) -"lft" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_two/aft/starboard) -"lfD" = ( -/obj/machinery/atmospherics/component/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "n2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - on = 1 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos/gas_storage) +"lfj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) "lfF" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -14129,9 +13560,6 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/quartermaster/qm) -"lgb" = ( -/turf/simulated/wall, -/area/maintenance/deck_two/forward) "lgt" = ( /obj/machinery/atmospherics/component/quaternary/mixer{ tag_east = 2; @@ -14143,18 +13571,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"lgC" = ( -/turf/simulated/wall/r_wall, -/area/medical/patient_a) -"lha" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"lgM" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 4; + name = "Command Waste Buffer"; + start_pressure = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) "lht" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14183,24 +13607,25 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"lhJ" = ( -/obj/structure/table/woodentable, -/obj/structure/flora/pottedplant/decorative, -/obj/machinery/button/remote/airlock{ - id = "dorm2"; - name = "Room 2 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 +"lia" = ( +/obj/machinery/conveyor{ + dir = 6 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"lhP" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/obj/map_helper/conveyor/belt{ + id_tag = "fuel_belt"; + name = "Fuel Belt" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/processing) +"lif" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hallway) "liy" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/plating, @@ -14211,16 +13636,29 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"ljo" = ( -/obj/structure/cable{ - icon_state = "2-8" +"liX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) +/area/main_map/maintenance/atmospheric_substation/security) +"ljd" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) +"ljt" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Observation"; + req_access = list(2) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) "ljK" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -14236,6 +13674,15 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/medical/patient_wing) +"lkm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/cargo) "lkt" = ( /obj/structure/stairs/spawner/east, /obj/structure/railing{ @@ -14270,12 +13717,6 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/atmos/gas_storage) -"lkY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) "llj" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 4 @@ -14284,81 +13725,30 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"lll" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_7) -"llt" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +"lmf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"llH" = ( -/obj/machinery/r_n_d/server/robotics, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/bluegrid{ - initial_gas_mix = "n2=500;TEMP=80"; - name = "Server Base" - }, -/area/server) -"lmp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/landmark/spawnpoint/job/roboticist, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"lmj" = ( +/obj/structure/railing{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"lmB" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) "lmG" = ( /obj/structure/lattice, /turf/simulated/open, /area/maintenance/cargo) -"lmH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/closet/firecloset, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) -"lmU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) "lnu" = ( /obj/structure/railing{ dir = 8 @@ -14369,6 +13759,9 @@ /obj/structure/lattice, /turf/simulated/open, /area/quartermaster/warehouse) +"lnO" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) "lnQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -14382,75 +13775,40 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"loo" = ( -/obj/item/storage/excavation, -/obj/item/pickaxe, -/obj/item/tool/wrench, -/obj/item/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"lou" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/bed/chair/comfy/beige{ +"lnZ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ dir = 8 }, -/obj/landmark/spawnpoint/job/quartermaster, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward) +"lpG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/sblucarpet, -/area/quartermaster/qm) -"loJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/obj/structure/sign/deck2{ + pixel_x = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"lpt" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 8 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) +"lqj" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"lpu" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft) -"lqt" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 8 +/area/crew_quarters/kitchen) +"lqW" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"lqG" = ( -/turf/simulated/wall/r_wall, -/area/medical/patient_b) -"lrH" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/woodentable, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/item/instrument/trombone, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"lsq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) +/area/main_map/maintenance/deck_two/aft/starboard) +"lrZ" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "lsz" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -14466,52 +13824,44 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/security) -"lsC" = ( +"lta" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"lsF" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloorblack{ dir = 4 }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"lte" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"lsZ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"ltf" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "2-8" }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) +/area/main_map/maintenance/deck_two/aft/starboard) "ltv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -14524,6 +13874,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) +"lud" = ( +/obj/structure/sign/warning/nosmoking_1, +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos/gas_storage) +"lue" = ( +/turf/simulated/floor/tiled/monotile, +/area/security/observation) "luM" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled, @@ -14538,12 +13895,9 @@ "lve" = ( /turf/simulated/floor/reinforced, /area/engineering/atmos/processing) -"lvn" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) +"lvf" = ( +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) "lvs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -14553,23 +13907,16 @@ }, /turf/simulated/floor/carpet/tealcarpet, /area/medical/patient_d) -"lvT" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 +"lwa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 }, -/turf/simulated/floor/carpet/tealcarpet, -/area/medical/patient_c) -"lwv" = ( -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/camera/network/engineering, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) "lwH" = ( /obj/structure/railing, /obj/structure/railing{ @@ -14577,20 +13924,17 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"lxB" = ( -/obj/machinery/button/ignition{ - id = "portnacelle_igniter"; - pixel_y = -28 +"lxh" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, -/obj/effect/floor_decal/corner/lightorange/bordercee{ - dir = 4 - }, -/obj/machinery/atmospherics/component/binary/pump{ - dir = 4; - name = "Fuel Line to Thrusters" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_c) +"lxL" = ( +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward) "lxV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -14599,6 +13943,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) +"lxY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) "lxZ" = ( /obj/machinery/shield_gen/external/advanced, /obj/structure/cable/green{ @@ -14615,49 +13966,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/shield_gen) -"lyf" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"lyT" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - req_access = list(29,47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/robotics) -"lzs" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"lzu" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_1) -"lzK" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) "lAf" = ( /obj/structure/table/reinforced, /obj/item/stack/cable_coil{ @@ -14686,11 +13994,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"lAX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/vacant/vacant_office) "lBf" = ( /obj/structure/cable{ icon_state = "1-4" @@ -14700,17 +14003,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/cargo) -"lBk" = ( -/obj/structure/cable{ - icon_state = "0-2" +"lBh" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 }, -/obj/machinery/power/apc/direction_bump/north, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) -"lBl" = ( -/obj/structure/lattice, -/turf/space, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) +"lBE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) "lBS" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /turf/simulated/floor/reinforced/airless, @@ -14725,6 +14032,12 @@ /obj/machinery/door/airlock/hatch, /turf/simulated/floor/plating, /area/engineering/engine_gas) +"lCr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/port_fore) "lCR" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 @@ -14739,45 +14052,23 @@ /obj/effect/floor_decal/corner/lightorange/bordercee, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"lEd" = ( -/obj/structure/railing, -/turf/simulated/floor/tiled, +"lDf" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, /area/space) -"lEf" = ( -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "lEx" = ( /obj/machinery/gibber, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"lEB" = ( -/obj/structure/fuel_port{ - dir = 4; - pixel_x = 29 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"lEF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) "lEK" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /turf/simulated/floor/reinforced, /area/engineering/atmos/processing) -"lEZ" = ( -/obj/structure/sign/directions/cryo{ - dir = 8 - }, -/turf/simulated/wall/r_wall, -/area/space) +"lEO" = ( +/turf/simulated/wall/prepainted/medical, +/area/main_map/maintenance/deck_two/starboard) "lFf" = ( /obj/structure/sign/deck2{ pixel_x = -32 @@ -14815,26 +14106,31 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel, /area/space) -"lGF" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/deck_two/aft) "lGK" = ( /obj/effect/floor_decal/industrial/danger, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"lHa" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/port) +"lGL" = ( +/obj/structure/sign/deck2{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) +"lGM" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/reagent_containers/food/drinks/metaglass, +/obj/item/reagent_containers/food/drinks/metaglass, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) "lHr" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -14847,6 +14143,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) +"lHw" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_b) "lHx" = ( /obj/structure/cable/heavyduty{ icon_state = "0-8" @@ -14865,6 +14169,18 @@ }, /turf/simulated/floor/reinforced, /area/space) +"lHC" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) "lHE" = ( /obj/machinery/door/airlock/maintenance/engi, /obj/structure/cable{ @@ -14873,6 +14189,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/substation/medical) +"lHF" = ( +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/tiled/techfloor, +/area/space) "lHN" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -14894,15 +14214,18 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"lIe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"lHZ" = ( +/obj/machinery/atmospherics/tvalve/digital{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) +"lIK" = ( /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"lJn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/maintenance/deck_two) "lJL" = ( /obj/structure/table/rack{ dir = 8; @@ -14916,15 +14239,6 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) -"lKk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) "lKt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -14940,15 +14254,22 @@ /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/plating, /area/maintenance/substation/service) -"lKF" = ( -/obj/structure/cable{ - icon_state = "1-2" +"lKT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/atmos_air{ + pixel_y = -28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/maintenance) +"lKU" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 }, /turf/simulated/floor/plating, -/area/space) +/area/main_map/maintenance/atmospheric_substation/research) "lKY" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 5 @@ -14967,18 +14288,6 @@ }, /turf/simulated/open, /area/security/brig) -"lLx" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"lLO" = ( -/obj/machinery/atmospherics/tvalve/digital{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) "lMi" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -14988,22 +14297,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"lMo" = ( -/turf/simulated/wall, -/area/crew_quarters/bar_backroom) -"lMq" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/bar_backroom) -"lMK" = ( -/obj/structure/table/steel, -/obj/machinery/microwave, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -2; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) "lMM" = ( /obj/structure/cable/heavyduty{ icon_state = "0-4" @@ -15013,15 +14306,18 @@ }, /turf/simulated/floor/reinforced, /area/space) -"lNb" = ( -/turf/simulated/wall/r_wall, -/area/server) -"lNu" = ( +"lMR" = ( +/turf/simulated/wall/prepainted/medical, +/area/maintenance/substation/medical) +"lNi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/area/rnd/lab) "lNG" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -15061,39 +14357,12 @@ }, /turf/simulated/open, /area/security/brig) -"lOG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"lPt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) -"lOJ" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) -"lPd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/sign/deck/second{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/recreation_area_hallway) -"lPg" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/maintenance/atmospheric_substation/medical) "lPT" = ( /obj/machinery/door/airlock/command{ name = "Server Room"; @@ -15111,26 +14380,25 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techfloor, /area/server) -"lQm" = ( -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access = list(25); - req_one_access = list(25) +"lQf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar_backroom) -"lQA" = ( -/turf/simulated/wall, -/area/maintenance/substation/medical) -"lQI" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) +/area/rift/station/fighter_bay/maintenance) +"lQK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/starboard) "lRb" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Substation - Science"; @@ -15144,15 +14412,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"lRj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, +"lRo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) +/area/main_map/hallway/deck2) "lRq" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -15163,12 +14427,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/hallway) -"lRZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/space) "lSi" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "TELECOMMS" @@ -15181,26 +14439,28 @@ /obj/item/book/manual/standard_operating_procedure, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"lSq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 +"lTg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"lSL" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/window/phoronreinforced, -/obj/machinery/atmospherics/pipe/tank/phoron, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) +"lTl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, -/area/space) -"lSX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/wall/rshull, -/area/space) +/area/main_map/maintenance/deck_two/starboard) "lTr" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 9 @@ -15216,12 +14476,12 @@ /obj/machinery/shield_diffuser, /turf/simulated/floor/reinforced/airless, /area/space) -"lTB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"lTx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) "lTE" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 5 @@ -15231,47 +14491,22 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"lTW" = ( -/obj/machinery/door/firedoor, +"lTJ" = ( /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/machinery/door/airlock/maintenance/common, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/obj/machinery/door/airlock{ - name = "Fitness Room" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "lUg" = ( /turf/simulated/floor/tiled/monotile, /area/quartermaster/hallway) -"lUu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"lUH" = ( -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/tank/emergency, -/obj/item/tank/emergency, -/obj/item/tank/emergency, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) "lVU" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -15282,6 +14517,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) +"lVX" = ( +/obj/structure/sign/warning/nosmoking_1, +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos/processing) "lWl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/camera/network/civilian{ @@ -15289,13 +14528,24 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/showers) -"lXe" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"lWm" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 1; + name = "Cargo Waste Buffer"; + start_pressure = 0 }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_7) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) +"lXi" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) "lXk" = ( /obj/machinery/atmospherics/component/binary/pump/high_power/on{ dir = 8 @@ -15354,12 +14604,16 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"lXP" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 +"lXU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/space) "lXX" = ( /obj/structure/table/fancyblack, /obj/effect/floor_decal/spline/fancy/wood{ @@ -15379,21 +14633,41 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"lYf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) "lYw" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, /area/security/brig) +"lZt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) +"lZV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/hallway) +"lZZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/gas_storage) "mas" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -15404,6 +14678,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) +"maE" = ( +/obj/machinery/atmospherics/tvalve/digital/mirrored, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) "maL" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -15411,21 +14689,6 @@ /obj/machinery/power/apc/direction_bump/west, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"maM" = ( -/obj/machinery/shower{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"maN" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"maQ" = ( -/turf/simulated/open, -/area/hallway/primary/central_two) "maT" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -15439,10 +14702,6 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"maZ" = ( -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) "mbx" = ( /obj/machinery/computer/card, /turf/simulated/floor/wood, @@ -15454,38 +14713,29 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techfloor/grid, /area/bridge/bunker) -"mbO" = ( -/obj/structure/cryofeed{ - dir = 2 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"mbQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 +"mbT" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 }, +/obj/structure/closet, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"mbV" = ( -/obj/machinery/light/small/emergency{ +/area/main_map/maintenance/deck_two/forward/port) +"mcq" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, -/obj/structure/table/rack, -/obj/item/stack/material/phoron{ - amount = 25 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 }, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) +/turf/space/basic, +/area/space) "mcA" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/machinery/door/firedoor/glass, @@ -15508,36 +14758,12 @@ /obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"mdh" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/atmospheric_substation/medical) "mdt" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"mdy" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"mdR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/space) -"mek" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) "meU" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/mechanical, @@ -15554,16 +14780,26 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/atmos/gas_storage) -"mfB" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Cargo Compartment"; - req_one_access = list(67) +"mfb" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"mfc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) +"mfd" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "mfC" = ( /obj/structure/window/reinforced{ dir = 4 @@ -15588,12 +14824,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"mgn" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/space) "mgw" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/borderfloor{ @@ -15604,34 +14834,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"mhi" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Engine Compartment"; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"mho" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) -"mhz" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ +"mhr" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 }, -/turf/simulated/floor/tiled/monotile, +/turf/simulated/floor/reinforced, /area/space) "mhV" = ( /obj/effect/floor_decal/borderfloor{ @@ -15649,9 +14859,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) -"mis" = ( -/turf/simulated/floor/tiled, -/area/vacant/vacant_office) "miA" = ( /obj/machinery/air_sensor{ frequency = 1441; @@ -15659,15 +14866,26 @@ }, /turf/simulated/floor/reinforced/oxygen, /area/engineering/atmos/gas_storage) -"mjf" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 +"mjB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/machinery/door/airlock/atmos{ + name = "Service Atmospherics Backup"; + req_access = list(24) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) +"mkf" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/panic_bunker) "mkv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -15678,23 +14896,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"mla" = ( -/obj/structure/table/rack, -/obj/item/stack/material/phoron{ - amount = 25 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) -"mld" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) "mlD" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/red{ @@ -15705,6 +14906,11 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) +"mlH" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/high/north_bump, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2/b) "mlQ" = ( /obj/machinery/door/airlock/glass{ name = "Recovery Wing" @@ -15722,32 +14928,10 @@ /obj/structure/ladder/updown, /turf/simulated/floor/plating, /area/space) -"mmv" = ( -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 26; - pixel_y = -27 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "mmI" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/atmos/processing) -"mmU" = ( -/obj/structure/railing, -/obj/structure/lattice, -/turf/space, -/area/space) -"mnh" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"mnk" = ( -/turf/simulated/wall, -/area/quartermaster/hallway) "mnn" = ( /turf/simulated/wall, /area/maintenance/tool_storage) @@ -15761,9 +14945,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"mnW" = ( -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) "mnZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -15807,44 +14988,58 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"mpS" = ( -/obj/machinery/air_alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/camera/network/engineering, +"mpH" = ( /obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"mpR" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"mpU" = ( +/obj/machinery/button/windowtint{ + id = "booth_2"; + pixel_x = -2; + pixel_y = 26 + }, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/storage) +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) "mqg" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"mqm" = ( -/obj/machinery/door/airlock/atmos{ - name = "Medical Atmospherics Backup"; - req_access = list(24) +"mqj" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) +"mqE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) +/area/main_map/maintenance/deck_two/starboard) "mqM" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 @@ -15855,18 +15050,25 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenobiology/xenoflora_storage) -"mqY" = ( -/obj/machinery/light/spot{ - pixel_y = 32 - }, -/turf/simulated/wall/rshull, -/area/space) -"msg" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8 +"mrc" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 4 }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) +/area/main_map/maintenance/deck_two/starboard) +"mrU" = ( +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access = list(25); + req_one_access = list(25) + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar_backroom) "mso" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15876,16 +15078,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"msz" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/tcomms) -"msD" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "msO" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) @@ -15929,21 +15121,16 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/substation/security) -"mtm" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 +"mtO" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/structure/bed/chair/comfy/teal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"mty" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) "mtS" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/lime/border, @@ -15982,24 +15169,10 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/hydroponics) -"muQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"muX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +"muu" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/crew_quarters/freezer) "mvn" = ( /obj/structure/table/reinforced, /obj/item/stamp/cargo, @@ -16021,12 +15194,17 @@ /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) -"mvr" = ( -/obj/structure/cable/green{ - icon_state = "32-2" +"mvu" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/conveyor{ + dir = 8 }, -/turf/simulated/open, -/area/space) +/obj/map_helper/conveyor/belt{ + id_tag = "fuel_belt"; + name = "Fuel Belt" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/processing) "mvH" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/shield_gen) @@ -16034,55 +15212,46 @@ /obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) -"mwq" = ( -/obj/structure/sign/directions/security{ - dir = 2; - pixel_y = -4 - }, -/obj/structure/sign/directions/science{ - dir = 2; - pixel_y = 3 +"mvV" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 }, /turf/simulated/wall, -/area/hallway/primary/central_two) -"mwG" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 6; - frequency = 1380; - id_tag = "expshuttle_exterior_sensor"; - master_tag = "expshuttle_docker"; - pixel_x = 4; - pixel_y = 28 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/structure/cable/green{ +/area/main_map/maintenance/deck_two) +"mvW" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"mxQ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"mwL" = ( +/obj/machinery/power/apc/direction_bump/west, +/obj/structure/cable, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"myL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/area/main_map/maintenance/atmospheric_substation/medical) +"mwX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"mxh" = ( +/obj/structure/sign/deck/second, +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck2/starboard_fore) +"myB" = ( +/obj/machinery/mech_recharger, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/hangar) "myX" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8 @@ -16092,24 +15261,15 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) +"myY" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/main_map/maintenance/atmospheric_substation/security) "mzh" = ( /obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/substation/security) -"mzp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_9) "mAb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -16119,6 +15279,14 @@ }, /turf/simulated/floor/wood, /area/medical/patient_wing) +"mAp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "mBg" = ( /obj/effect/floor_decal/corner/paleblue/border{ dir = 9 @@ -16134,12 +15302,31 @@ }, /turf/simulated/floor/carpet, /area/medical/patient_wing) -"mCt" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"mBU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward) +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "hangar_lockdown"; + name = "Hangar Lockdown Control"; + pixel_x = -24; + pixel_y = -39; + req_one_access = list(19,29,38,43,47,63,67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/marker_beacon/red, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "hangar_pad"; + name = "Hangar Bay Blast Door Control"; + pixel_x = -24; + pixel_y = -25; + req_one_access = list(19,29,38,43,47,63,67) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) "mCS" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -16153,50 +15340,38 @@ }, /turf/simulated/floor/plating, /area/space) -"mDp" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/panic_bunker/two) -"mDQ" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/port) "mDY" = ( /obj/structure/grille, /obj/structure/girder/reinforced, /turf/simulated/floor/reinforced/carbon_dioxide, /area/engineering/atmos) -"mEl" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"mEE" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"mEQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"mEH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) +"mFc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, /obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) -"mFj" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/panic_bunker) -"mGl" = ( -/turf/simulated/wall, -/area/crew_quarters/fitness) +/area/main_map/maintenance/deck_two/aft) +"mFO" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"mGe" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"mGy" = ( +/obj/structure/cable, +/obj/machinery/power/apc/direction_bump/east, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) "mGY" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/structure/window/reinforced{ @@ -16216,6 +15391,11 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos) +"mHn" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/high/north_bump, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2/a) "mIl" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/spline/plain{ @@ -16232,26 +15412,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"mII" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"mIM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Medical Compartment"; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "mJl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -16262,27 +15422,40 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"mJr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"mJJ" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_10) -"mJA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/catwalk, /turf/simulated/floor/plating, -/area/maintenance/dormitory) +/area/main_map/maintenance/deck_two/forward/starboard) "mJP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) +"mJX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) +"mLk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) "mLq" = ( /obj/machinery/door/airlock/engineering{ name = "Civilian Substation" @@ -16290,6 +15463,25 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/substation/civilian) +"mMA" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) +"mNk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) "mNs" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/machinery/atmospherics/pipe/simple/visible/blue{ @@ -16316,37 +15508,52 @@ /obj/structure/curtain/open/shower/engineering, /turf/simulated/floor/tiled/white, /area/engineering/engine_smes) -"mOc" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"mPy" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"mPO" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/bed/double/padded, -/obj/random/bedsheet/double, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"mQD" = ( -/obj/spawner/window/reinforced/full/firelocks, +"mOg" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) -"mQL" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ +/area/main_map/hallway/deck2) +"mOF" = ( +/obj/effect/floor_decal/techfloor/orange{ dir = 4 }, +/obj/machinery/power/apc/direction_bump/east, +/obj/structure/cable{ + icon_state = "0-8" + }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/area/main_map/hallway/deck2) +"mOG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) +"mOU" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/direction_bump/west, +/turf/simulated/floor/plating, +/area/maintenance/substation/flight_deck) +"mPs" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) +"mQu" = ( +/obj/structure/sign/deck2{ + pixel_y = 32 + }, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) "mQU" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -16357,9 +15564,21 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) +"mRo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/a) "mRB" = ( /turf/simulated/wall/r_wall, /area/space) +"mRM" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rift/station/fighter_bay/transport_tunnel) "mRV" = ( /obj/structure/stairs/spawner/west, /obj/structure/railing, @@ -16376,20 +15595,9 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"mSm" = ( -/obj/structure/sign/directions/cryo, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_two) -"mSN" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 33 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) +"mSp" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/substation/medical) "mSY" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/danger{ @@ -16398,12 +15606,6 @@ /obj/machinery/door/airlock/glass/atmos, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos) -"mTh" = ( -/obj/structure/sign/deck/second{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "mTi" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -16413,9 +15615,10 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"mTp" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_two) +"mTs" = ( +/obj/structure/sign/warning/nosmoking_1, +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_gas) "mTG" = ( /obj/structure/railing{ dir = 8 @@ -16444,6 +15647,20 @@ /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/plating, /area/quartermaster/hallway) +"mUz" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/substation/flight_deck) +"mUM" = ( +/obj/machinery/door/airlock/maintenance/engi, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/substation/medical) +"mVb" = ( +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck2) "mVP" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 4 @@ -16454,27 +15671,63 @@ /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) +"mWn" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"mWI" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) +"mWL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/maintenance) "mWO" = ( /obj/machinery/holopad, /turf/simulated/floor/wood, /area/medical/patient_wing) -"mWW" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/structure/sign/deck/second{ - pixel_y = 32 +"mWP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/starboard) +"mWX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) "mXb" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, @@ -16493,15 +15746,27 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"mYs" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_7) -"mYI" = ( +"mXM" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-4" }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward) +"mYo" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/main_map/maintenance/atmospheric_substation/cargo) +"mYy" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_two/port) +"mYC" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) "mYO" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/bluegrid, @@ -16512,18 +15777,15 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos) -"mZm" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 +"mYR" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/space) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "mZr" = ( /obj/machinery/atmospherics/component/unary/outlet_injector{ dir = 4; @@ -16553,6 +15815,10 @@ }, /turf/simulated/floor/tiled, /area/space) +"mZy" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel, +/area/space) "mZV" = ( /obj/machinery/account_database{ dir = 8 @@ -16562,41 +15828,17 @@ }, /turf/simulated/floor/wood, /area/space) -"mZW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/port) "mZY" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/floodlight, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/storage) -"nab" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "nak" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"naT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) "naW" = ( /obj/machinery/door/firedoor{ dir = 1 @@ -16614,16 +15856,20 @@ /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/hydroponics) +"nbs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"nby" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/hangar) "nbN" = ( /obj/structure/catwalk, /turf/simulated/floor/plating, /area/security/brig) -"nbT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) "ncb" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/steeldecal/steel_decals6, @@ -16638,12 +15884,15 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/robotics) -"ncc" = ( -/obj/structure/railing{ - dir = 1 +"ncn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/turf/simulated/open, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar_backroom) "ncv" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -16653,12 +15902,36 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) +"ncT" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) +"nda" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"ndc" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) "ndd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) +"ndw" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/cargo) "ndE" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 @@ -16669,10 +15942,6 @@ /obj/machinery/power/apc/direction_bump/north, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) -"ndL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) "ndO" = ( /obj/structure/cable{ icon_state = "1-4" @@ -16682,6 +15951,30 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) +"ndX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) +"nel" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/maintenance) "neq" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -16696,25 +15989,29 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) -"neu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"ney" = ( +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) +"neY" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 }, -/obj/machinery/door/airlock/maintenance, -/obj/structure/catwalk, /turf/simulated/floor/plating, -/area/maintenance/dormitory) -"neR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) +/area/main_map/maintenance/deck_two) +"nfh" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) "nfq" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -16728,69 +16025,76 @@ }, /turf/simulated/floor/plating, /area/space) -"nfw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"nfC" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"nfV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"nfW" = ( -/obj/machinery/radiocarbon_spectrometer, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ +"ngr" = ( +/obj/structure/lattice, +/obj/structure/railing{ dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/anomaly_lab) -"ngx" = ( +/obj/structure/railing, /obj/structure/railing{ - dir = 1 + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "32-8" }, -/obj/structure/lattice, /turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/maintenance/deck_two/aft/starboard) +"ngt" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/underone) "ngH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"nhl" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "shuttle_hatch"; - name = "Shuttle Rear Hatch" +"ngW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/landmark/spawnpoint/job/quartermaster, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/quartermaster/qm) "nhm" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"nib" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +"nhA" = ( +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) +"nhJ" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Hangar Bay Subgrid"; + name_tag = "Hangar Bay Subgrid" }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) +/area/maintenance/substation/flight_deck) +"nhV" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) "niu" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/tiled/techfloor/grid, @@ -16809,18 +16113,42 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"njE" = ( -/obj/item/radio/intercom{ - pixel_y = -24 +"nju" = ( +/obj/structure/closet/largecardboard, +/obj/item/coin/bananium, +/turf/simulated/floor/plating, +/area/storage/tech) +"nkk" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/r_wall/prepainted/medical, +/area/crew_quarters/heads/cmo) +"nkE" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/bar_backroom) +"nkK" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"nle" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "nlf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -16832,14 +16160,28 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) -"nlr" = ( -/obj/effect/floor_decal/industrial/warning{ +"nlH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/xenoflora_storage) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) +"nmd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/maintenance) "nmh" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -16850,35 +16192,28 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"nmp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"nmu" = ( +"nmD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/maintenance/deck_two) "nnd" = ( /turf/simulated/floor/plating, /area/maintenance/substation/service) -"nng" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/neutral, -/area/space) "nnn" = ( /obj/effect/floor_decal/corner_techfloor_grid, /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) +"nnq" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/south, +/turf/simulated/floor/tiled/monotile, +/area/space) "nnx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -16889,23 +16224,14 @@ /obj/machinery/camera/network/engineering, /turf/simulated/floor/plating, /area/maintenance/substation/service) -"nnF" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" +"nnE" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm7"; - name = "Dorm 7" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) +/obj/structure/catwalk, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) "nnI" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -16928,35 +16254,66 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/space) -"nox" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"nob" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/tiled, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) +"non" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_two/forward) +"noz" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) +"noC" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) "noL" = ( /turf/simulated/floor/plating, /area/engineering/engine_room) -"noN" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_10) -"npu" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Hangar Bay Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/space) "npA" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, /area/engineering/engine_gas) +"npD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "npK" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) +"npU" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) +"nqj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) +"nqm" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/main_map/maintenance/atmospheric_substation/security) "nqw" = ( /obj/structure/sign/deck2{ pixel_y = 32 @@ -16968,18 +16325,23 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"nqQ" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"nrH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 +"nqU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) +"nrk" = ( +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar_backroom) +"nrV" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/hallway) "nrW" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 9 @@ -17001,26 +16363,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"nsE" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/direction_bump/north, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"nsO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) "ntf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -17046,19 +16388,13 @@ }, /turf/simulated/floor/reinforced/nitrogen, /area/engineering/atmos/gas_storage) -"nur" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) +"nus" = ( +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) +"nuU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) "nuY" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -17083,49 +16419,22 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"nvt" = ( -/obj/structure/sign/warning/nosmoking_1, -/turf/simulated/wall/r_wall, -/area/engineering/engine_gas) "nvK" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 6 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/gas_storage) -"nvN" = ( -/obj/machinery/door/firedoor{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) "nvX" = ( /turf/simulated/floor/tiled/techmaint, /area/maintenance/engineering) -"nwq" = ( -/obj/effect/floor_decal/techfloor/orange{ +"nxm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"nxw" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"nxx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, /turf/simulated/floor/plating, -/area/quartermaster/foyer) +/area/main_map/hallway/deck2) "nxD" = ( /obj/structure/table/reinforced, /obj/fiftyspawner/rods, @@ -17133,6 +16442,15 @@ /obj/fiftyspawner/rods, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) +"nxF" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "nxV" = ( /obj/machinery/keycard_auth{ pixel_y = -36 @@ -17150,51 +16468,53 @@ }, /turf/simulated/floor/wood, /area/space) +"nyq" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) +"nyV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay2) "nyY" = ( /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) +"nzi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/stairs) +"nzx" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/maintenance) "nAg" = ( /turf/simulated/floor/plating, /area/engineering/engine_gas) -"nAG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) "nAL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/hallway) -"nAW" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) -"nBb" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/storage) -"nBH" = ( -/turf/simulated/wall/r_wall, -/area/rnd/robotics) +"nBd" = ( +/obj/machinery/turnstile, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) "nBI" = ( /obj/structure/table/standard, /obj/machinery/vending/wallmed1/public{ @@ -17211,51 +16531,34 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"nBX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +"nCb" = ( +/obj/machinery/door/airlock/atmos{ + name = "Civilian Atmospherics Backup"; + req_access = list(24) }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"nCj" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/glass, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"nCl" = ( -/obj/structure/cable{ +/obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) -"nCr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_11) -"nDc" = ( -/obj/machinery/atmospherics/component/trinary/mixer{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"nDj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) +"nCu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/atmos{ + name = "Cargo Atmospherics Backup"; + req_access = list(24) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) "nDl" = ( /obj/machinery/computer/rcon, /obj/effect/floor_decal/corner/yellow{ @@ -17272,26 +16575,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) -"nDx" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Bridge Compartment"; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"nEh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) "nEi" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 5 @@ -17301,6 +16584,13 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) +"nEw" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/direction_bump/north, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) "nEQ" = ( /obj/effect/floor_decal/corner/yellow{ dir = 9 @@ -17342,13 +16632,25 @@ }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"nEX" = ( -/obj/structure/bed/chair/bay/comfy, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/bunker) -"nFq" = ( -/turf/simulated/wall, -/area/maintenance/substation/cargo) +"nEZ" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2/a) +"nGg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"nGt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "nGO" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, @@ -17368,18 +16670,13 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) -"nHy" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 +"nHl" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/reinforced, -/area/space) -"nHz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/port) +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_two) "nIc" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -17390,6 +16687,16 @@ /obj/structure/stairs/spawner/south, /turf/simulated/floor/tiled, /area/space) +"nIt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) "nIA" = ( /obj/machinery/r_n_d/circuit_imprinter, /obj/item/reagent_containers/glass/beaker/sulphuric, @@ -17408,6 +16715,18 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) +"nIZ" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "nJy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm{ @@ -17423,24 +16742,23 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) -"nJL" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"nKv" = ( +/turf/simulated/wall/prepainted/cargo, +/area/quartermaster/foyer) +"nLn" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"nLj" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 1 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"nLH" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) "nLN" = ( /obj/structure/window/reinforced{ dir = 8 @@ -17468,21 +16786,33 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"nMV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/obj/effect/floor_decal/rust, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/tiled/techfloor, -/area/space) +"nMN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) "nMW" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"nMY" = ( -/turf/simulated/wall, -/area/medical/patient_b) +"nNl" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) +"nNn" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "nNs" = ( /obj/machinery/door/firedoor{ dir = 2 @@ -17494,19 +16824,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"nNu" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/space) -"nNy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 8 - }, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) "nNG" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 6 @@ -17514,10 +16831,44 @@ /obj/landmark/spawnpoint/job/atmospheric_technician, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"nOX" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/cmo) +"nNS" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance Access"; + req_one_access = list(28) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/kitchen) +"nOk" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/b) +"nOs" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_two/aft/starboard) +"nOP" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) +"nPa" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/maintenance) "nPe" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 @@ -17530,31 +16881,35 @@ }, /turf/simulated/open, /area/quartermaster/hallway) -"nPL" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/security) -"nQn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"nPx" = ( +/obj/structure/railing, +/obj/structure/railing{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"nRT" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) +"nQO" = ( /obj/structure/cable{ - icon_state = "2-8" + icon_state = "2-4" }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/reinforced, +/area/space) +"nRU" = ( +/obj/structure/sign/deck2{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "nRX" = ( /obj/machinery/door/airlock/glass/mining{ name = "Cargo Bay"; @@ -17564,6 +16919,18 @@ /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled, /area/quartermaster/foyer) +"nSu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "nSw" = ( /turf/simulated/floor/tiled, /area/quartermaster/hallway) @@ -17575,6 +16942,20 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) +"nSY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) "nTa" = ( /obj/effect/floor_decal/industrial/danger{ dir = 1 @@ -17587,6 +16968,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel_grid, /area/space) +"nTA" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/main_map/maintenance/deck_two) "nTC" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/medical{ @@ -17612,25 +16996,18 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/wood, /area/space) -"nUI" = ( +"nVc" = ( +/obj/machinery/vending/snack{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck2) +"nVq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) -"nVA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/direction_bump/north, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "nVN" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Substation - Security"; @@ -17654,6 +17031,22 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) +"nWF" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) +"nWG" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck2) +"nWJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) "nXg" = ( /obj/structure/railing{ dir = 1 @@ -17666,20 +17059,17 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"nYy" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +"nYh" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/machinery/button/remote/blast_door{ + id = "hangar_maint"; + name = "Hangar Maintenance Shutter Control"; + pixel_y = 28; + req_one_access = list(29,47) }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay/maintenance) "nYE" = ( /obj/effect/floor_decal/corner_techfloor_grid, /turf/simulated/floor/tiled/techfloor, @@ -17697,16 +17087,19 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"nZw" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 +"nZz" = ( +/obj/machinery/door/airlock/maintenance/rnd{ + name = "Fighter Bay Maintenance"; + req_one_access = list(19,29,38,43,47,63,67) }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 +/obj/machinery/door/firedoor/glass{ + dir = 4 }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/maintenance/deck_two/aft/starboard) +"nZS" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/substation/security) "oac" = ( /obj/structure/bed/chair/sofa/black/right, /obj/effect/floor_decal/spline/fancy/wood{ @@ -17719,18 +17112,25 @@ /mob/living/simple_mob/animal/passive/dog/corgi/Ian, /turf/simulated/floor/wood, /area/space) -"oap" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"oaA" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/marker_beacon/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"oaW" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/railing{ + dir = 1 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/atmospheric_substation/security) +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward/starboard) "obe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -17743,6 +17143,16 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) +"obk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) "obo" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/simulated/floor/plating, @@ -17753,38 +17163,12 @@ }, /turf/simulated/floor/carpet, /area/medical/patient_wing) -"ocf" = ( +"ocU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_10) -"ocn" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"oct" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/processing) -"ocF" = ( -/turf/simulated/wall, -/area/medical/patient_a) -"ocT" = ( -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/random/soap, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/starboard_fore) "odb" = ( /obj/structure/railing{ dir = 1 @@ -17794,26 +17178,31 @@ }, /turf/simulated/open, /area/quartermaster/warehouse) -"ode" = ( -/obj/structure/ladder_assembly, -/obj/effect/debris/cleanable/cobweb, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) -"odG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"odi" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, /turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/area/crew_quarters/bar) "odO" = ( /obj/machinery/atmospherics/component/binary/pump{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) +"odQ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "ofh" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger{ @@ -17821,20 +17210,49 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) -"ofA" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"ofL" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward) -"ofQ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/machinery/light/small{ +"ofn" = ( +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ofv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) +"ofM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) +"ofO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "ofZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -17847,42 +17265,33 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) +"ogh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "ogD" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/bluegrid, /area/rnd/robotics/mechbay) -"ogH" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 1; - name = "Civilian Waste Buffer"; - start_pressure = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"ogS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) +"ogP" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/substation/service) "ohc" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/electrical, /obj/item/storage/toolbox/electrical, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"ohg" = ( -/obj/structure/stairs/spawner/east, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) "ohk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17905,28 +17314,12 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"oiq" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 +"oit" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 }, /turf/simulated/floor/plating, -/area/space) -"oiz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) +/area/main_map/maintenance/atmospheric_substation/cargo) "oiM" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -17945,9 +17338,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"ojv" = ( -/turf/simulated/wall, -/area/maintenance/deck_two/port) "ojG" = ( /obj/structure/sign/deck2{ pixel_x = 32 @@ -17973,17 +17363,42 @@ }, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) -"okA" = ( -/turf/simulated/wall, -/area/crew_quarters/bar) -"ole" = ( +"okh" = ( +/obj/machinery/computer/rdconsole/robotics, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay/maintenance) +"okn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/blue, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) -"olm" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +/area/main_map/maintenance/atmospheric_substation/command) +"olJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/bar) +"omf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "omr" = ( /obj/structure/sink{ dir = 4; @@ -18006,60 +17421,41 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) -"ona" = ( +"omU" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_gas) +"ong" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"onu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/wall/r_wall, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) "onC" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"onZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) "oob" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) -"ooh" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/table/woodentable, -/obj/machinery/computer/security/telescreen{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) -"ooi" = ( -/obj/structure/bed/chair/sofa/black/right, -/turf/simulated/floor/tiled/monotile, -/area/space) "oom" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"ooq" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) +"ooG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "ooK" = ( /obj/structure/dispenser{ phorontanks = 0 @@ -18073,27 +17469,6 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"opA" = ( -/turf/simulated/wall/r_wall, -/area/quartermaster/qm) -"opX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 8 - }, -/obj/structure/sign/deck2{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"opY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "oqb" = ( /obj/machinery/computer/general_air_control/large_tank_control{ frequency = 1443; @@ -18106,16 +17481,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) -"oqt" = ( -/obj/structure/cable/green{ - icon_state = "32-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/open, -/area/maintenance/deck_two/forward/starboard) "oqD" = ( /obj/machinery/atmospherics/portables_connector, /turf/simulated/floor/tiled/techfloor/grid, @@ -18127,39 +17492,74 @@ /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/techfloor/grid, /area/medical/patient_b) -"orl" = ( -/obj/machinery/door/airlock/maintenance, +"orw" = ( +/obj/structure/ladder/updown, /turf/simulated/floor/plating, -/area/space) -"orK" = ( +/area/main_map/maintenance/atmospheric_substation/medical) +"orC" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"osk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor/phoron{ + pixel_x = 30; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/underone) +"osL" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) +"otf" = ( +/mob/living/simple_mob/animal/passive/penguin/emperor{ + desc = "There's a tag on this pengiun that says Skipper. You're not even sure where the chef found them."; + name = "Skipper" + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"orM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"osX" = ( -/obj/structure/stairs/spawner/west, -/turf/simulated/floor/tiled/monotile, -/area/space) -"oto" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"otm" = ( +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/tank/emergency, +/obj/item/tank/emergency, +/obj/item/tank/emergency, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) "otr" = ( /obj/effect/floor_decal/industrial/outline/red, /obj/structure/closet/emcloset, @@ -18180,16 +17580,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"otK" = ( -/turf/simulated/wall, -/area/crew_quarters/visitor_dining) -"otN" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/deck_two) "otZ" = ( /obj/effect/floor_decal/corner/paleblue/border{ dir = 8 @@ -18199,75 +17589,55 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"ouu" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) "ouC" = ( /obj/structure/ladder/up, /turf/simulated/floor/plating, /area/space) -"ouY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) +"ovm" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) "ovn" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 9 }, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) -"ovw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) "ovx" = ( /turf/simulated/floor/tiled/steel, /area/space) -"ovU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, +"ovF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) -"owe" = ( -/obj/structure/bed/padded, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 +/area/main_map/maintenance/deck_two/forward/port) +"ovL" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) +"ovT" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"owg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -2; - pixel_y = -28 +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"ows" = ( +/obj/machinery/atmospherics/component/trinary/filter{ + filtering = "co2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/obj/random/bedsheet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"owt" = ( -/obj/structure/stairs/spawner/west, /turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_two) +/area/engineering/atmos/gas_storage) "owx" = ( /obj/machinery/atmospherics/pipe/simple/visible/aux, /obj/machinery/camera/network/engine{ @@ -18282,83 +17652,19 @@ /obj/machinery/atmospherics/pipe/simple/visible/blue, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) -"oxa" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"oxr" = ( +/obj/structure/railing{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) -"oxe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) -"oxx" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"oxG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/direction_bump/north, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"oxT" = ( -/obj/machinery/camera/network/outside, -/turf/space, -/area/space) -"oyc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) +"oyt" = ( +/obj/structure/railing{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"oyG" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"ozb" = ( -/obj/structure/table/woodentable, -/obj/item/instrument/glockenspiel, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"ozt" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/bed/chair/comfy/teal, -/obj/machinery/computer/security/telescreen{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward/starboard) "ozO" = ( /turf/simulated/floor/tiled/white, /area/medical/medbay2) @@ -18371,36 +17677,12 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) -"oAk" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" +"oBf" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm9"; - name = "Dorm 9" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"oBb" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/sign/deck2{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/space) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) "oBO" = ( /obj/machinery/light_switch{ pixel_x = 25 @@ -18417,31 +17699,8 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) -"oBZ" = ( -/obj/structure/cable/green{ - icon_state = "32-1" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) -"oCa" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"oCt" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/stairs/spawner/north, -/turf/simulated/floor/tiled/techfloor/grid, +"oDh" = ( +/turf/simulated/wall/r_wall/prepainted/command, /area/space) "oDi" = ( /obj/effect/floor_decal/borderfloor{ @@ -18453,23 +17712,6 @@ /obj/machinery/meter, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"oDn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/port) -"oDq" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) "oDu" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 @@ -18508,6 +17750,19 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) +"oDY" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "Emergency Bunker" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/panic_bunker) +"oEd" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/patient_c) "oEq" = ( /obj/machinery/door/airlock/command{ name = "Server Room"; @@ -18516,6 +17771,33 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techfloor, /area/rnd/rdoffice) +"oEw" = ( +/obj/machinery/mecha_part_fabricator, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/maintenance/deck_two/aft/starboard) +"oEH" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) +"oEJ" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/showers) +"oFd" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "oFF" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass/engineering{ @@ -18525,20 +17807,23 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/hallway) -"oGc" = ( -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/cargo) -"oGK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/space) -"oHa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +"oGf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "oHn" = ( /obj/structure/cable{ icon_state = "1-2" @@ -18548,23 +17833,24 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"oIk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"oHN" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/mirror{ + dir = 4; + pixel_x = -25 }, -/obj/machinery/door/airlock/atmos{ - name = "Service Atmospherics Backup"; - req_access = list(24) +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "oIq" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, @@ -18585,12 +17871,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"oIY" = ( -/obj/structure/table/standard, -/obj/item/multitool, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) "oJl" = ( /obj/structure/cable/green, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18613,28 +17893,17 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/server) -"oJW" = ( -/obj/structure/cable/green{ - icon_state = "0-2" +"oKI" = ( +/obj/machinery/door/airlock/glass_external/public{ + name = "Mining Outpost Airlock" }, -/obj/structure/flora/pottedplant/smalltree, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 +/obj/structure/catwalk, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"oKF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/maintenance/dormitory) -"oLq" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) +/turf/simulated/floor, +/area/hallway/primary/underone) "oLz" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -18645,12 +17914,18 @@ }, /turf/simulated/floor/carpet/blue, /area/bridge/meeting_room) -"oLP" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +"oLI" = ( +/obj/machinery/door/blast/regular{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/b) +"oLS" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 1 }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/maintenance/deck_two/starboard) "oLT" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -18670,6 +17945,29 @@ }, /turf/simulated/floor/reinforced, /area/space) +"oNi" = ( +/obj/structure/bed/chair/sofa/purp/right{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) +"oNl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) "oNn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -18687,18 +17985,15 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"oNC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"oNB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/structure/sign/poster/nanotrasen{ + pixel_x = -32 }, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) "oNJ" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Medical Maintenance Access"; @@ -18707,13 +18002,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/medbay2) -"oNS" = ( +"oNM" = ( /obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) +/turf/simulated/open, +/area/main_map/hallway/deck2) "oOf" = ( /obj/structure/table/reinforced, /obj/fiftyspawner/steel, @@ -18721,18 +18013,6 @@ /obj/fiftyspawner/steel, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"oOp" = ( -/obj/landmark/spawnpoint/job/scientist, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"oOF" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"oOL" = ( -/obj/machinery/fitness/punching_bag, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) "oOZ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -18744,46 +18024,43 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techmaint, /area/maintenance/substation/service) -"oPr" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/deliveryChute, -/obj/structure/window/reinforced{ - dir = 4 - }, +"oPb" = ( +/obj/machinery/holopad, /turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"oPx" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 18; - pixel_y = 7 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/item/healthanalyzer, -/turf/simulated/floor/tiled/neutral, -/area/space) +/area/rnd/lab) "oPE" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, /area/rnd/research/researchdivision) -"oQp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +"oPM" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 8; + name = "Waste Buffer Tank"; + start_pressure = 0 }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/maintenance/atmospheric_substation/ai) +"oQe" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Ready Room" + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"oQg" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/closet/fireaxecabinet{ + pixel_x = 32; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/bunker) "oQC" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -18796,24 +18073,40 @@ }, /turf/simulated/floor/carpet, /area/medical/patient_wing) -"oQQ" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"oSc" = ( +"oQN" = ( +/obj/structure/table/steel, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"oQW" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"oRu" = ( +/obj/structure/window/reinforced, +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/map_helper/conveyor/belt{ + id_tag = "fuel_belt"; + name = "Fuel Belt" }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) +/turf/simulated/floor/reinforced, +/area/engineering/atmos/processing) +"oSm" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/main_map/maintenance/deck_two/aft) "oSs" = ( /obj/machinery/atmospherics/component/unary/vent_pump/high_volume, /obj/machinery/atmospherics/pipe/simple/visible/green{ @@ -18830,20 +18123,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel_ridged, /area/quartermaster/foyer) -"oSU" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/visitor_dining) -"oSX" = ( -/obj/structure/table/rack/shelf/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) "oTE" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -18858,27 +18137,65 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"oTS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"oTN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"oUC" = ( -/obj/structure/cable{ - icon_state = "2-4" +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) +"oUm" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"oUq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) +/obj/effect/floor_decal/spline/plain, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) +"oUw" = ( +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/rift/station/fighter_bay/maintenance) +"oUP" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/a) +"oVH" = ( +/obj/structure/sign/deck2{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) "oVZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/catwalk, @@ -18894,28 +18211,33 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"oWn" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"oXh" = ( -/obj/structure/cable/green{ +"oWs" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) +"oWw" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward) +"oWO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_8) +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/maintenance) "oXk" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 10 @@ -18933,14 +18255,44 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor, /area/engineering/hallway) -"oXt" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/turf/simulated/floor/tiled/techmaint, -/area/space) +"oXy" = ( +/turf/simulated/wall/r_wall, +/area/main_map/Hangar_bay/deck2) +"oXz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"oXS" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) +"oYb" = ( +/obj/structure/table/rack/shelf, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay/maintenance) "oYt" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -18956,14 +18308,6 @@ /obj/machinery/camera/network/engineering, /turf/simulated/floor/plating, /area/maintenance/substation/cargo) -"oYy" = ( -/obj/structure/catwalk, -/turf/simulated/open, -/area/maintenance/deck_two) -"oYD" = ( -/obj/structure/closet/wardrobe/black, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "oYL" = ( /obj/effect/floor_decal/corner/paleblue/border{ dir = 4 @@ -18979,18 +18323,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"oYU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"oZa" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/computer/timeclock/premade/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "oZc" = ( /obj/structure/table/glass, /obj/machinery/button/remote/airlock{ @@ -19015,10 +18347,14 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"oZV" = ( -/obj/effect/spider/stickyweb, +"oZX" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 1; + name = "Science Waste Buffer"; + start_pressure = 0 + }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) +/area/main_map/maintenance/atmospheric_substation/research) "pab" = ( /obj/item/stack/cable_coil/green{ pixel_y = 4 @@ -19035,6 +18371,15 @@ /obj/structure/closet/crate, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) +"pam" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/main_map/hallway/deck2) "pan" = ( /obj/machinery/door/airlock/glass/engineeringatmos{ name = "Atmospherics" @@ -19052,6 +18397,14 @@ }, /turf/simulated/floor/carpet/blue, /area/bridge/meeting_room) +"paD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) "paM" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -19072,15 +18425,9 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor, /area/engineering/hallway) -"paZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, +"paT" = ( /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/maintenance/deck_two/forward/starboard) "pbe" = ( /obj/machinery/power/smes/buildable/engine/rust, /obj/structure/cable/cyan{ @@ -19088,13 +18435,6 @@ }, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_smes) -"pbp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) "pbq" = ( /obj/item/clothing/under/swimsuit, /obj/structure/cable/green{ @@ -19104,9 +18444,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/crew_quarters/recreation_area_hallway) -"pbN" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) "pcf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -19116,63 +18453,18 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"pcx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/wall/r_wall, -/area/space) -"pcK" = ( +"pdl" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"pcU" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_gas) -"pde" = ( -/obj/effect/spider/stickyweb/dark, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) -"pdt" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/bed/chair/comfy/teal{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"pdU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, +/area/main_map/maintenance/deck_two/aft/port) +"peC" = ( /obj/machinery/light/no_nightshift{ - dir = 4 + dir = 1 }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"pdV" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 33 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "peH" = ( /obj/machinery/door/airlock/maintenance/engi{ name = "Engineering Substation" @@ -19184,65 +18476,38 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"pff" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/command) -"pfh" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +"pfb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_8) -"pfl" = ( -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"pfL" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"pfR" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"pfV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) +/turf/simulated/floor/wood, +/area/main_map/hallway/deck2) +"pfp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "pfY" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Forward Point Defense Substation Bypass" }, /turf/simulated/floor/plating, /area/space) -"pgl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/machinery/light/no_nightshift{ +"pgv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) -"pgB" = ( -/obj/structure/bed/double/padded, -/obj/random/bedsheet/double, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/underone) "phi" = ( /obj/structure/table/rack{ dir = 8; @@ -19292,6 +18557,37 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/space) +"pia" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"pid" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"piC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) "piN" = ( /obj/structure/table/rack, /obj/item/stack/material/log{ @@ -19299,16 +18595,6 @@ }, /turf/simulated/floor/reinforced, /area/medical/patient_wing) -"piS" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward) -"pjs" = ( -/obj/structure/catwalk, -/turf/simulated/open, -/area/maintenance/deck_two/port) "pjx" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -19321,119 +18607,67 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"pjZ" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +"pjR" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/hallway) "pkd" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, /area/rnd/research/researchdivision) -"pld" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5 - }, +"pkG" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) +/area/main_map/maintenance/deck_two/forward/starboard) "ply" = ( /obj/machinery/door/airlock/hatch, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"plY" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "fuel_go_round" - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/processing) -"pmk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 6 - }, +"plE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) -"pmO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) -"pmR" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/machinery/cryopod/robot, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"pne" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/atmospheric_substation/medical) -"pnn" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 + dir = 9 }, /turf/simulated/floor/plating, -/area/maintenance/dormitory) +/area/main_map/maintenance/atmospheric_substation/civilian) +"plR" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) +"pmc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"pms" = ( +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "fuel_belt"; + name = "Fuel Belt" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/processing) "pnB" = ( /obj/machinery/atmospherics/component/binary/pump{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"pnR" = ( -/obj/structure/flora/pottedplant/minitree, -/turf/simulated/floor/tiled/monotile, -/area/space) -"poa" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "pob" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Substation - Service"; @@ -19448,58 +18682,56 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/service) -"poi" = ( -/obj/structure/railing, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/central_two) -"por" = ( -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"poy" = ( -/obj/structure/bed/padded, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/random/bedsheet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) "poO" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/plating, /area/medical/medbay2) -"poX" = ( +"ppi" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"ppn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, /obj/structure/cable{ - icon_state = "5-8" + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"ppg" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock{ - id_tag = "dorm2"; - name = "Dorm 2" + dir = 10 }, /turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"ppl" = ( -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_two) +/area/crew_quarters/bar) +"ppx" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) +"ppz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "ppD" = ( /turf/simulated/floor/reinforced/nitrogen, /area/engineering/atmos/gas_storage) @@ -19518,41 +18750,28 @@ /obj/effect/floor_decal/techfloor/orange, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"pqz" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/obj/item/instrument/violin, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"pqK" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/wall, -/area/maintenance/deck_two) +"ppT" = ( +/obj/machinery/power/apc/direction_bump/north, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "pqW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"prF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +"prg" = ( +/obj/machinery/door/airlock/glass, +/obj/structure/curtain/black{ + anchored = 1; + icon_state = "open" }, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"psp" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) @@ -19561,55 +18780,6 @@ /obj/machinery/camera/network/security, /turf/simulated/open, /area/security/brig) -"psU" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_1) -"ptE" = ( -/obj/structure/sign/deck2{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"ptM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) -"ptO" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"ptW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"pug" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) "puk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -19626,6 +18796,12 @@ /obj/machinery/power/apc/direction_bump/north, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) +"puw" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/port) "puR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/visible/green{ @@ -19633,19 +18809,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"puW" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) "pvT" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -19653,42 +18816,21 @@ /obj/machinery/atmospherics/component/binary/pump, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"pwI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 +"pwo" = ( +/obj{ + name = "---Merge conflict marker---" }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) -"pxq" = ( -/obj/machinery/atmospherics/component/unary/heater{ +/obj/machinery/air_alarm{ dir = 4; - name = "fuel pre-heater" + pixel_x = -22 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"pxB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/space/basic, /area/space) +"pwZ" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/processing) "pya" = ( /obj/structure/bed/chair/sofa/black/left{ dir = 1 @@ -19721,6 +18863,24 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) +"pyY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"pzb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) "pzf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19729,6 +18889,25 @@ }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/cargo) +"pzv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/mauve/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "pzJ" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 @@ -19750,15 +18929,24 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"pAB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 +"pAF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "co2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/engineering/atmos/gas_storage) "pAJ" = ( /obj/structure/table/reinforced, /turf/simulated/floor/tiled/techmaint, @@ -19770,13 +18958,12 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/mechbay) -"pAV" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 +"pAT" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/starboard) +/area/main_map/maintenance/atmospheric_substation/ai) "pBc" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -19799,50 +18986,76 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/storage) -"pBp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) -"pBA" = ( -/obj/machinery/atmospherics/pipe/tank, -/turf/simulated/floor/tiled/techmaint, +"pBx" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/floor/tiled/techfloor, /area/space) -"pCa" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/obj/structure/window/phoronreinforced{ +"pBP" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/structure/window/phoronreinforced{ +/obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "portnacelle_blastdoor"; - opacity = 0 +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "hangar_pad"; + name = "Hangar Bay Blast Door Control"; + pixel_x = -24; + pixel_y = 38; + req_one_access = list(19,29,38,43,47,63,67) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/marker_beacon/red, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "hangar_lockdown"; + name = "Hangar Lockdown Control"; + pixel_x = -24; + pixel_y = 24; + req_one_access = list(19,29,38,43,47,63,67) }, /turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"pCb" = ( -/obj/machinery/door/airlock/freezer{ - name = "Kitchen Cold Room"; - req_access = list(28) - }, +/area/rift/station/fighter_bay/hangar) +"pCl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/maintenance) "pCT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) +"pCZ" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"pDg" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/port) +"pDn" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) "pDF" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -19866,29 +19079,6 @@ }, /turf/simulated/open, /area/engineering/engine_eva) -"pEq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/spline/plain{ - dir = 1; - pixel_y = -15 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) "pEz" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -19899,25 +19089,33 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) +"pFc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/maintenance) "pFe" = ( /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"pFk" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "shuttle_inbound" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "pFp" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 6 }, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) +"pFE" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "pFN" = ( /obj/machinery/portable_atmospherics/canister, /obj/effect/floor_decal/industrial/warning{ @@ -19925,18 +19123,19 @@ }, /turf/simulated/floor/plating, /area/rnd/xenobiology/xenoflora_storage) -"pFS" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"pGh" = ( +"pGD" = ( /obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/open, -/area/maintenance/deck_two/forward/starboard) +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) "pGH" = ( /obj/machinery/light_switch{ pixel_y = 25 @@ -19967,20 +19166,26 @@ /obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"pHt" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 +"pHr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/item/radio/intercom{ - pixel_y = -24 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"pHH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/no_nightshift{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"pHU" = ( -/obj/structure/stairs/spawner/east, -/obj/structure/railing, -/turf/simulated/floor/reinforced, -/area/space) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) +"pHK" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two) "pIo" = ( /obj/machinery/power/smes/buildable/main{ charge = 4e+007 @@ -20008,23 +19213,58 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"pJW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"pJI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"pJZ" = ( -/obj/effect/floor_decal/techfloor/orange{ +/area/main_map/maintenance/deck_two/forward/port) +"pJJ" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"pJQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) -"pKw" = ( -/turf/simulated/floor/plating, -/area/vacant/vacant_office) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "hangar_lockdown"; + name = "Hangar Lockdown Control"; + pixel_x = -24; + pixel_y = 24; + req_one_access = list(19,29,38,43,47,63,67) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "hangar_pad"; + name = "Hangar Bay Blast Door Control"; + pixel_x = -24; + pixel_y = 38; + req_one_access = list(19,29,38,43,47,63,67) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"pKc" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2/b) "pKV" = ( /obj/machinery/computer/timeclock/premade/south, /obj/machinery/holopad, @@ -20045,12 +19285,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/shield_gen) -"pLo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) "pLr" = ( /obj/machinery/door/airlock/glass{ name = "Recovery Wing" @@ -20067,99 +19301,33 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"pMc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"pMh" = ( -/obj/machinery/door/airlock/glass, -/obj/structure/curtain/black{ - anchored = 1; - icon_state = "open" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) +"pLu" = ( +/obj/machinery/atmospherics/tvalve/digital, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) "pMy" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/rdoffice) -"pMO" = ( -/obj/machinery/gear_painter, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"pNb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/machinery/recharger{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"pNv" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "portnacelle_blastdoor"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"pNC" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"pOt" = ( -/obj/structure/cable{ +"pNY" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) +"pNZ" = ( +/obj/structure/cable/green{ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/port) -"pOM" = ( -/obj/machinery/light/small{ - dir = 4 +/area/main_map/maintenance/deck_two/forward/port) +"pOf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward) +/area/main_map/maintenance/atmospheric_substation/cargo) "pPg" = ( /obj/structure/railing{ dir = 4 @@ -20175,13 +19343,26 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research/researchdivision) -"pPG" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 +"pPp" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"pPN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/maintenance/dormitory) +/area/main_map/maintenance/atmospheric_substation/service) "pQj" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 @@ -20190,43 +19371,38 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/engineering/atmos/gas_storage) -"pQS" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) -"pRJ" = ( +"pQT" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"pSh" = ( -/obj/item/storage/excavation, -/obj/item/pickaxe, -/obj/item/tool/wrench, -/obj/item/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/machinery/camera/network/research{ - dir = 8 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"pRH" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) +"pSb" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Hanger 1 A" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2/a) +"pSK" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 }, /turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"pSB" = ( -/obj/machinery/door/airlock/atmos{ - name = "Security Atmospherics Backup"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) +/area/hydroponics) "pTi" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -20237,45 +19413,37 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) +"pTo" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1443; + icon_state = "map_vent_in"; + id_tag = "air_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/reinforced/airmix, +/area/engineering/atmos/gas_storage) "pTH" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 5 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/gas_storage) -"pTK" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" +"pUB" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, /turf/simulated/floor/plating, -/area/space) -"pUd" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"pUn" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_gas) -"pUD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"pUO" = ( -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) +/area/main_map/maintenance/deck_two/starboard) "pVJ" = ( /obj/structure/stairs/spawner/west, /obj/structure/railing, @@ -20293,6 +19461,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) +"pWd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_two/aft/starboard) +"pWj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) "pWw" = ( /obj/effect/floor_decal/techfloor{ dir = 4 @@ -20320,14 +19498,6 @@ "pXb" = ( /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"pXk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "pXl" = ( /obj/item/clothing/under/swimsuit, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -20346,23 +19516,9 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"pXw" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm10"; - name = "Dorm 1" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +"pXJ" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/main_map/maintenance/deck_two/aft/starboard) "pYr" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -20373,19 +19529,10 @@ "pYz" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/barrestroom) -"pZc" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"pZO" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +"pYL" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/starboard) "pZS" = ( /obj/machinery/door/window/northright{ name = "Air Mix Controller"; @@ -20393,19 +19540,22 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) -"qaf" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"pZT" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/bunker) -"qar" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) +/obj/item/pickaxe/icepick, +/obj/item/pickaxe/icepick, +/obj/item/pickaxe/icepick, +/obj/item/pickaxe/icepick, +/obj/item/clothing/suit/storage/hooded/wintercoat/durathread, +/obj/item/clothing/suit/storage/hooded/wintercoat/durathread, +/obj/item/clothing/suit/storage/hooded/wintercoat/durathread, +/obj/item/clothing/suit/storage/hooded/wintercoat/durathread, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay) "qaV" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -20414,34 +19564,36 @@ /obj/machinery/power/apc/direction_bump/west, /turf/simulated/floor/plating, /area/maintenance/substation/medical) +"qbf" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/space) "qbl" = ( /obj/machinery/holopad, /turf/simulated/floor/tiled/techfloor, /area/server) -"qbn" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"qbv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) "qbF" = ( /obj/machinery/chem_master/condimaster, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qcg" = ( -/obj/structure/reagent_dispensers/coolanttank, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/anomaly_lab) +"qcp" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft) "qcx" = ( /obj/structure/cable{ icon_state = "4-8" @@ -20458,11 +19610,18 @@ }, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"qcy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/starboard) +"qcD" = ( +/turf/simulated/floor/lythios43c/indoors, +/area/rift/surfacebase/underground/under1) +"qcY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) "qdu" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4" @@ -20473,12 +19632,34 @@ }, /turf/simulated/floor/reinforced, /area/space) -"qdJ" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"qdz" = ( +/obj/structure/railing{ + dir = 1 }, +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) +"qdB" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_access = list(16); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/maintenance/deck_two/starboard) +/area/main_map/hallway/deck2) +"qef" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/cargo) "qer" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "COMMAND" @@ -20505,65 +19686,85 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"qfm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 +"qfO" = ( +/obj{ + name = "---Merge conflict marker---" }, -/turf/simulated/wall/rshull, -/area/space) -"qfB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"qgo" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 }, -/turf/simulated/floor/tiled/monotile, +/turf/space/basic, /area/space) -"qhk" = ( -/obj/structure/cable, -/obj/machinery/power/apc/direction_bump/east, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) -"qhY" = ( -/obj/structure/cable/green{ +"qfW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) -"qie" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) +"qgu" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"qgS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, -/obj/structure/table/woodentable, -/obj/machinery/recharger, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area_hallway) -"qix" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2 +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"qgT" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) +/area/main_map/maintenance/deck_two) +"qhm" = ( +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) +"qhn" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_two/aft) +"qiF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + icon_state = "map_vent_out"; + on = 1 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=80"; + name = "Server Base" + }, +/area/server) "qiM" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"qja" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) "qje" = ( /obj/effect/floor_decal/corner/paleblue/border{ dir = 5 @@ -20580,45 +19781,38 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"qkh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/rust, -/obj/random/trash_pile, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) -"qkq" = ( -/obj/structure/cable{ - icon_state = "1-2" +"qkD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/metal/mait, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/reinforced, +/area/space) "qkZ" = ( /obj/machinery/pointdefense_control{ id_tag = "talon_pd" }, /turf/simulated/floor/reinforced/airless, /area/space) -"qlc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) -"qll" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) "qlL" = ( /obj/machinery/computer/rdconsole/robotics, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"qmn" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos/gas_storage) +"qlV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/flight_deck) "qmQ" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 6 @@ -20631,33 +19825,17 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/fitness) -"qnE" = ( -/obj/machinery/door/airlock/research{ - name = "Research Lab"; - req_one_access = list(8) - }, +"qok" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"qos" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"qox" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck2) "qoG" = ( /obj/structure/railing{ dir = 4 @@ -20686,36 +19864,22 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"qpJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"qpT" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 +"qpu" = ( +/obj/machinery/door/airlock/atmos{ + name = "Service Atmospherics Backup"; + req_access = list(24) }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) +/area/main_map/maintenance/atmospheric_substation/service) "qqS" = ( /obj/effect/floor_decal/industrial/danger{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) -"qrB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) "qrC" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -20731,26 +19895,31 @@ }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"qrP" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +"qsr" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"qst" = ( +/obj/machinery/door/airlock/maintenance/rnd{ + name = "Fighter Bay Maintenance"; + req_one_access = list(19,29,38,43,47,63,67) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) "qsx" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/simulated/floor/reinforced/n20, /area/engineering/atmos/gas_storage) -"qsX" = ( -/obj/machinery/fitness/heavy/lifter, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"qtS" = ( -/obj/machinery/conveyor_switch{ - id = "fuel_go_round" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/processing) +"qsE" = ( +/obj/machinery/lathe/autolathe, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/maintenance/deck_two/aft/starboard) +"qtm" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/main_map/maintenance/deck_two/forward/starboard) "qtX" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -20763,10 +19932,12 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/open, /area/security/brig) -"quY" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) +"quC" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) "quZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -20776,48 +19947,42 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"qvh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"qva" = ( +/obj/structure/railing{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) -"qvz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_two) +"qvi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) +"qvm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_two/aft/starboard) "qvC" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/simulated/floor/reinforced/carbon_dioxide, /area/engineering/atmos/gas_storage) -"qvH" = ( +"qwi" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 10 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/atmospheric_substation/security) -"qwb" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/port) +/turf/simulated/floor/plating, +/area/maintenance/substation/command) "qwk" = ( /obj/machinery/button/remote/blast_door{ id = "mechbay-inner"; @@ -20842,6 +20007,12 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/mechbay) +"qwl" = ( +/obj/machinery/door/blast/regular{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/a) "qwv" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -20860,25 +20031,21 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"qwG" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/deck_two) "qwI" = ( /turf/simulated/floor/carpet/blue, /area/bridge/meeting_room) -"qxa" = ( +"qxf" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) +/area/main_map/maintenance/deck_two/starboard) "qxB" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/spline/plain{ @@ -20898,53 +20065,20 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"qxJ" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +"qxG" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/panic_bunker/two) "qyp" = ( /obj/spawner/window/reinforced/full/firelocks, /obj/structure/curtain/open/shower/medical, /turf/simulated/floor/plating, /area/medical/patient_a) -"qyT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"qzB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) "qzN" = ( /obj/machinery/atmospherics/component/binary/pump{ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"qzS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) "qzZ" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -20987,40 +20121,26 @@ }, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) -"qAV" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint, -/area/space) "qBx" = ( /obj/machinery/atmospherics/pipe/tank/phoron{ dir = 4 }, /turf/simulated/floor/reinforced, /area/engineering/atmos/processing) -"qBJ" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) -"qCm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"qCK" = ( +"qCd" = ( /obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) +"qCr" = ( +/turf/simulated/wall/prepainted, +/area/rift/surfacebase/underground/under1) "qCN" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -21036,13 +20156,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/space) -"qCY" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) "qDh" = ( /obj/structure/table/reinforced, /obj/item/storage/box/donut, @@ -21051,24 +20164,10 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"qDj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) -"qDN" = ( -/obj/machinery/atmospherics/tvalve/digital{ - dir = 4 - }, +"qDR" = ( +/obj/structure/inflatable, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) +/area/main_map/maintenance/deck_two/aft) "qDW" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Substation - Shields"; @@ -21080,44 +20179,43 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/shield_gen) -"qEu" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"qFc" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 +"qEO" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/tank/nitrogen, +/obj/item/tank/oxygen{ + pixel_y = -4 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) +/obj/item/tank/nitrogen, +/obj/item/tank/oxygen{ + pixel_y = -4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/space) "qFk" = ( /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"qFp" = ( -/obj/effect/floor_decal/borderfloorblack{ +"qFt" = ( +/obj/structure/railing{ dir = 1 }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 +/obj/structure/railing{ + dir = 8 }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 }, -/obj/structure/bed/chair/shuttle{ - dir = 1 +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"qFr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/main_map/maintenance/atmospheric_substation/research) "qFA" = ( /obj/machinery/atmospherics/component/unary/outlet_injector{ dir = 4; @@ -21129,6 +20227,13 @@ }, /turf/simulated/floor/reinforced/phoron, /area/engineering/atmos/gas_storage) +"qFG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) "qFL" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -21154,48 +20259,35 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"qHh" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"qHi" = ( +"qGT" = ( +/obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) -"qHI" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret/stationary{ - gl_uid = "exploration"; - installation = /obj/item/gun/energy/phasegun; - name = "exploration turret"; - uid = "exploration" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"qIu" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"qIF" = ( -/obj/structure/bed/chair/comfy/teal{ +/area/main_map/maintenance/deck_two) +"qHT" = ( +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/item/radio/intercom{ - pixel_y = -24 +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"qIW" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"qIE" = ( +/obj/machinery/light/no_nightshift, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) +"qIK" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing{ + dir = 1 }, -/turf/simulated/floor/carpet/tealcarpet, -/area/medical/patient_a) +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) "qJg" = ( /obj/structure/railing{ dir = 1 @@ -21205,39 +20297,54 @@ }, /turf/simulated/open, /area/rnd/research/researchdivision) -"qJy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"qJj" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/crew_quarters/heads/cmo) +"qJq" = ( +/obj/machinery/door/airlock/maintenance/sec, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) +/area/space) +"qJx" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) "qJE" = ( /obj/machinery/atmospherics/component/binary/circulator{ anchored = 1 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"qJM" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector/fuel, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"qJN" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +"qKi" = ( +/obj/machinery/door/firedoor{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) +"qKy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) "qKz" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 6 @@ -21253,10 +20360,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"qLd" = ( -/obj/structure/railing, -/turf/simulated/floor/reinforced, -/area/space) "qLl" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 @@ -21298,15 +20401,57 @@ }, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) +"qLM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/starboard) "qLV" = ( /obj/structure/cable/cyan, /obj/machinery/power/apc/critical/south_bump, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) +"qMd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) +"qMk" = ( +/obj/structure/sink/kitchen{ + name = "sink"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "qMD" = ( /obj/machinery/holopad, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) +"qMI" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/hallway/deck2) "qMJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -21320,74 +20465,37 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) -"qNq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/powered/pump, -/turf/simulated/floor/tiled/steel_ridged, -/area/space) -"qNx" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, +"qNn" = ( +/obj/structure/table/rack/shelf, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/maintenance/deck_two/aft/starboard) +"qNC" = ( /obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 + dir = 1; + pixel_y = -22 }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/space) +"qNJ" = ( +/obj/structure/stairs/spawner/west, /turf/simulated/floor/tiled/techfloor, -/area/server) -"qOg" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"qPt" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"qPR" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/port) -"qPX" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"qQn" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - req_access = list(30,47,77) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/xenobiology/xenoflora_storage) -"qQp" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/port) -"qQr" = ( +/area/main_map/hallway/deck2) +"qOK" = ( +/obj/structure/sign/deck/second, /turf/simulated/wall/r_wall, -/area/bridge/meeting_room) -"qQD" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "deck1_airlock2"; - pixel_x = 24 +/area/main_map/hallway/deck2/port_fore) +"qPE" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/door/airlock/glass_external, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) "qRn" = ( /obj/structure/toilet{ dir = 1 @@ -21418,12 +20526,24 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/showers) -"qRQ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +"qRL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) +"qRR" = ( +/obj/structure/railing{ dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "qSe" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 @@ -21437,29 +20557,31 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"qSx" = ( -/obj/machinery/artifact_scanpad, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/anomaly_lab) -"qSP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/structure/window/reinforced/tinted/frosted{ +"qSw" = ( +/obj/random/drinkbottle, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 }, -/obj/machinery/shower{ - dir = 1 +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"qSL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/white, -/area/rnd/anomaly_lab) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light/no_nightshift, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) +"qSS" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2/stairs) "qTi" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 10 @@ -21469,11 +20591,18 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"qTm" = ( -/obj/structure/table/woodentable, -/obj/structure/flora/pottedplant/fern, +"qTs" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) +/area/rift/station/fighter_bay) "qTw" = ( /obj/structure/railing, /turf/simulated/floor/plating, @@ -21485,6 +20614,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) +"qUd" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/starboard) "qUx" = ( /obj/structure/railing{ dir = 1 @@ -21499,35 +20634,9 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/open, /area/maintenance/substation/tcomms) -"qUB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"qUH" = ( -/obj/machinery/fitness/punching_bag/clown, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"qUZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/direction_bump/north, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/atmospheric_substation/security) +"qUz" = ( +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck2/starboard_fore) "qVu" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -21552,31 +20661,35 @@ /obj/machinery/cell_charger, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/mechbay) -"qVP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"qWc" = ( -/obj/structure/anomaly_container, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 3 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/anomaly_lab) "qWl" = ( /obj/structure/grille, /obj/structure/girder/reinforced, /turf/simulated/floor/reinforced/carbon_dioxide, /area/space) +"qWL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"qWZ" = ( +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/port_fore) +"qXn" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "qXs" = ( /obj/structure/cable/green{ icon_state = "32-1" @@ -21593,35 +20706,19 @@ }, /turf/simulated/open, /area/space) -"qXz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"qXT" = ( -/obj/structure/table/reinforced, -/obj/item/tool/crowbar, -/obj/item/tool/screwdriver, -/obj/item/tool/wrench, -/turf/simulated/floor/tiled/steel_ridged, -/area/space) -"qXY" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ +"qXw" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/recreation_area_hallway) +"qXZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/maintenance/atmospheric_substation/medical) "qYd" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21632,44 +20729,15 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/hallway) -"qZq" = ( -/obj/structure/cable{ - icon_state = "32-8" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ +"qZb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/structure/lattice, -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/space) -"qZu" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24; - pixel_y = -5 - }, -/obj/structure/handrail{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "qZO" = ( /obj/structure/railing, /obj/machinery/camera/network/cargo{ @@ -21687,129 +20755,59 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"ran" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Crew Cryo Bay" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"raI" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/port) +"rau" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) "raY" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/server) -"rbf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_1) -"rbj" = ( -/obj/structure/sign/directions/roomnum{ - dir = 10; - pixel_x = 32; - pixel_y = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"rbl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"rbs" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) "rbI" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"rbR" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"rcy" = ( -/obj/structure/window/reinforced{ - dir = 4 +"rdq" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing{ + dir = 1 }, +/obj/structure/railing, /turf/simulated/floor/tiled/techmaint, -/area/space) -"rcE" = ( +/area/main_map/maintenance/deck_two/forward/port) +"rdw" = ( +/obj/machinery/door/airlock/atmos{ + name = "Security Atmospherics Backup"; + req_access = list(24) + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) -"rde" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/wood, -/area/space) -"rdm" = ( -/obj/machinery/atmospherics/tvalve/digital/mirrored{ - dir = 8 - }, -/obj/structure/sign/deck2{ - pixel_y = 32 - }, /obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"rdB" = ( -/obj/machinery/shower{ - dir = 4 +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/atmospheric_substation/security) +"rdE" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 +/obj/structure/railing{ + dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"rdF" = ( -/obj/structure/closet/crate/mimic/closet/cointoss, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"rdO" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward/port) +"rdJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "rel" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -21822,37 +20820,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"reP" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/deck_two/forward/port) "reS" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) -"rfd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 +"rff" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/security/brig) +"rfS" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 8 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"rfk" = ( -/obj/machinery/atmospherics/component/trinary/filter{ - dir = 8; - filtering = "phoron" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/gas_storage) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "rgm" = ( /obj/structure/railing, /obj/structure/railing{ @@ -21860,20 +20842,6 @@ }, /turf/simulated/open, /area/space) -"rgA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/port) -"rgB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) "rgK" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable/green{ @@ -21881,6 +20849,15 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) +"rgM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "rgO" = ( /obj/machinery/door/window/survival_pod{ dir = 2; @@ -21888,15 +20865,6 @@ }, /turf/simulated/floor/reinforced, /area/space) -"rhe" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) "rhr" = ( /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) @@ -21914,6 +20882,9 @@ }, /turf/simulated/floor/plating, /area/rnd/xenobiology/xenoflora_storage) +"rhD" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/main_map/maintenance/deck_two/aft/starboard) "rhN" = ( /obj/machinery/door/firedoor{ dir = 2 @@ -21926,18 +20897,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/showers) -"riz" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"rib" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) +/turf/simulated/floor/carpet/tealcarpet, +/area/medical/patient_d) "riA" = ( /obj/structure/sign/vacuum, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -21946,9 +20913,12 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/engine_eva) -"riB" = ( -/turf/simulated/wall, -/area/crew_quarters/freezer) +"rjo" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) "rjC" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -21960,32 +20930,35 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"rjD" = ( -/obj/machinery/door/airlock/engineering{ - name = "Hangar Substation" +"rjR" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "nitrous_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/turf/simulated/floor/reinforced/n20, +/area/engineering/atmos/gas_storage) +"rkw" = ( +/obj/machinery/button/remote/blast_door{ + id = "hangar_pad"; + name = "Hangar Bay Blast Door Control"; + pixel_x = 24; + pixel_y = -28; + req_one_access = list(19,29,38,43,47,63,67); + dir = 1 }, -/turf/simulated/floor/plating, -/area/space) -"rkH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos{ - name = "Science Atmospherics Backup"; - req_access = list(24) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) +/turf/simulated/floor/reinforced/airless, +/area/main_map/maintenance/deck_two/aft/starboard) "rkT" = ( /obj/machinery/icecream_vat, /turf/simulated/floor/tiled/freezer, @@ -22002,6 +20975,20 @@ }, /turf/simulated/floor/reinforced, /area/engineering/atmos/processing) +"rly" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) "rlB" = ( /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenobiology/xenoflora_storage) @@ -22020,23 +21007,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) -"rlF" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/woodentable, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/item/instrument/trombone, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"rlN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 - }, -/turf/simulated/wall, -/area/space) "rlY" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /obj/structure/cable/heavyduty{ @@ -22044,13 +21014,6 @@ }, /turf/simulated/floor/plating, /area/space) -"rmh" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/deck_two/starboard) "rms" = ( /obj/structure/table/rack{ dir = 8; @@ -22062,25 +21025,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"rmN" = ( -/obj/structure/table/woodentable, -/obj/structure/flora/pottedplant/shoot, -/obj/item/instrument/saxophone, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) "rnc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"rnA" = ( -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) -"rnB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"rnp" = ( +/obj/machinery/light/small{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/hallway/primary/central_two) +/area/main_map/maintenance/deck_two/forward) "rnJ" = ( /obj/structure/cable/green{ icon_state = "32-2" @@ -22094,11 +21049,21 @@ /obj/structure/lattice, /turf/simulated/open, /area/security/brig) +"rnM" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/direction_bump/north, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) "rnN" = ( /obj/machinery/door/airlock/atmos, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) +"rnV" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_two/aft/starboard) "rol" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -22113,22 +21078,18 @@ /obj/item/stamp/cmo, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) -"rop" = ( -/obj/structure/cryofeed{ - dir = 4 +"rot" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"rov" = ( -/obj/structure/stairs/spawner/east, -/turf/simulated/floor/plating, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) "roN" = ( /obj/machinery/atmospherics/component/trinary/mixer{ dir = 4 @@ -22142,12 +21103,10 @@ /obj/machinery/power/apc/critical/east_bump, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/shield_gen) -"rpd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/port) +"rpp" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "rpC" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -22157,20 +21116,12 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"rqk" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass/atmos, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/atmos) -"rqm" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Medical Compartment"; - req_one_access = list(67) +"rpI" = ( +/obj/machinery/door/firedoor{ + dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/turf/simulated/floor/tiled/monotile, +/area/security/observation) "rqz" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/effect/floor_decal/industrial/danger/corner{ @@ -22178,10 +21129,18 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"rqF" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techmaint, -/area/space) +"rqL" = ( +/turf/simulated/wall/prepainted/cargo, +/area/quartermaster/hallway) +"rqO" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/structure/sign/deck2{ + pixel_y = 32 + }, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) "rrh" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 @@ -22194,6 +21153,24 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) +"rrl" = ( +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research/researchdivision) +"rrq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) "rru" = ( /obj/machinery/shower{ dir = 1 @@ -22207,51 +21184,29 @@ }, /turf/simulated/floor/tiled/white, /area/engineering/hallway) -"rrA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_1) "rrR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"rrU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"rrT" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "hangar_ext"; + name = "Hangar Bay Service Shutter" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"rsI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"rsf" = ( +/obj/structure/noticeboard, +/turf/simulated/wall/prepainted/cargo, +/area/quartermaster/foyer) "rsK" = ( /obj/structure/table/woodentable, /obj/random/soap, /turf/simulated/floor/wood, /area/crew_quarters/showers) -"rtc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) "rtx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -22268,37 +21223,19 @@ }, /turf/simulated/floor/reinforced, /area/space) -"rtD" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_5) "rui" = ( /turf/simulated/floor/wood, /area/medical/patient_wing) -"ruJ" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) "ruU" = ( /obj/structure/toilet{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/patient_b) +"rvh" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) "rvz" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/carpet, @@ -22312,14 +21249,30 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) -"rvO" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 +"rwL" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/instrument/trumpet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck2) +"rwQ" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) +"rwS" = ( +/obj/item/storage/box/donkpockets, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) "rxB" = ( /obj/machinery/door/airlock/glass/atmos, /obj/machinery/door/firedoor/glass, @@ -22334,49 +21287,43 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/security) -"rxX" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/tank/nitrogen, -/obj/item/tank/oxygen{ - pixel_y = -4 +"rxW" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/item/tank/nitrogen, -/obj/item/tank/oxygen{ - pixel_y = -4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/reinforced, -/area/space) -"rym" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/glass, /turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) +/area/engineering/hallway) +"ryc" = ( +/turf/simulated/wall/r_wall, +/area/main_map/Hangar_bay/deck2/a) "ryr" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/tiled, /area/crew_quarters/recreation_area_hallway) -"ryF" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock{ - id_tag = "dorm3"; - name = "Dorm 3" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"ryK" = ( +"ryt" = ( /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward) +/area/main_map/maintenance/deck_two) +"ryw" = ( +/obj/structure/table/steel, +/obj/machinery/microwave, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -2; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) "ryW" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 6 @@ -22389,11 +21336,11 @@ "rzn" = ( /turf/simulated/wall, /area/maintenance/engineering) -"rzH" = ( -/obj/structure/bed/double/padded, -/obj/random/bedsheet/double, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) +"rzr" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck2) "rzN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -22404,19 +21351,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"rzS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/atmos{ - name = "Cargo Atmospherics Backup"; - req_access = list(24) +"rzR" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/port) "rAa" = ( /obj/machinery/shower{ pixel_y = 16 @@ -22424,21 +21364,6 @@ /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/techfloor/grid, /area/medical/patient_c) -"rAf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"rAo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) "rAt" = ( /obj/structure/cable{ icon_state = "1-4" @@ -22448,23 +21373,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian) -"rAu" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"rAD" = ( -/obj/structure/ladder, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/port) -"rAI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 +"rAF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) "rAO" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -22487,6 +21401,9 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) +"rBj" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/kitchen) "rBm" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -22529,13 +21446,48 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/engineering/storage) -"rCO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"rCK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "16-0" + }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) +/area/main_map/maintenance/deck_two/forward/port) +"rDa" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) +"rDn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/power/apc/high/south_bump, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) +"rDH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "rDL" = ( /turf/simulated/floor/plating, /area/medical/medbay2) +"rEj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "rEo" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -22552,39 +21504,12 @@ }, /turf/simulated/floor/plating, /area/space) -"rEv" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm5"; - name = "Room 5 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) "rEy" = ( /obj/structure/sign/deck/second{ pixel_y = 32 }, /turf/simulated/floor/wood, /area/crew_quarters/bar_backroom) -"rEB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) "rEO" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -22599,29 +21524,53 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"rFa" = ( -/turf/simulated/wall/r_wall, -/area/medical/patient_d) "rFb" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/shield_gen) -"rGa" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 +"rFF" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "hangar_ext"; + name = "Hangar Bay Service Shutter Control"; + pixel_x = 33; + pixel_y = -26; + req_one_access = list(19,29,38,43,47,63,67) }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"rGf" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_5) -"rGy" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"rFX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) +"rGd" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "rGD" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -22657,18 +21606,34 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) +"rHw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "rHE" = ( /turf/simulated/wall, /area/space) -"rHW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"rHG" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/marker_beacon/red, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_two) +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) "rIU" = ( /obj/machinery/door/blast/regular{ id = "mechbay-inner"; @@ -22679,65 +21644,82 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/mechbay) -"rJx" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/door/airlock/glass/atmos, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/atmos) -"rKv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"rJK" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) +"rJT" = ( +/obj/structure/table/steel, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) -"rKR" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"rKU" = ( +/area/maintenance/cargo) +"rJV" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) -"rLb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_1) -"rLf" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/area/crew_quarters/bar) "rLk" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"rMm" = ( -/obj/structure/disposalpipe/segment{ +"rLB" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"rLK" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"rNk" = ( +/obj/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft) +"rNo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/wall/rshull, -/area/space) -"rMR" = ( -/obj/structure/sign/warning/nosmoking_1, -/turf/simulated/wall/r_wall, -/area/engineering/atmos/processing) +/obj/machinery/door/airlock/atmos{ + name = "Science Atmospherics Backup"; + req_access = list(24) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) +"rNx" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/port) "rOd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -22747,9 +21729,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"rOm" = ( -/turf/simulated/wall, -/area/security/brig) +"rOH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/mecha_part_fabricator, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay/maintenance) "rOI" = ( /obj/machinery/shower{ dir = 1 @@ -22790,6 +21776,9 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) +"rQs" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_two/aft/port) "rQV" = ( /obj/machinery/papershredder, /obj/effect/floor_decal/borderfloor{ @@ -22800,13 +21789,6 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) -"rRc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) "rRf" = ( /obj/effect/floor_decal/corner/green/border{ dir = 5 @@ -22828,22 +21810,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"rRw" = ( -/obj/structure/sign/deck2, -/turf/simulated/wall/r_wall, -/area/engineering/engine_eva) -"rRD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"rRF" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) "rSo" = ( /obj/machinery/computer/robotics{ dir = 8 @@ -22867,24 +21833,33 @@ }, /turf/simulated/floor/tiled, /area/space) -"rSN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +"rSG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/cargo) -"rSX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) +/area/main_map/maintenance/atmospheric_substation/civilian) +"rTc" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "rTe" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -22895,13 +21870,6 @@ }, /turf/simulated/floor/carpet/sblucarpet, /area/quartermaster/qm) -"rTg" = ( -/obj/structure/lattice, -/obj/machinery/camera/network/outside{ - dir = 5 - }, -/turf/space, -/area/space) "rTt" = ( /obj/machinery/door/airlock/engineering{ name = "Security Substation"; @@ -22934,88 +21902,47 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"rUJ" = ( -/obj/structure/catwalk, +"rUw" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/atmos{ + name = "Civilian Atmospherics Backup"; + req_access = list(24) + }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/space) +/area/main_map/maintenance/atmospheric_substation/civilian) "rUM" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 6 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"rUQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Cryo" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"rUX" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced, -/area/space) -"rVE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) -"rVF" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/structure/window/phoronreinforced{ +"rVy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "portnacelle_blastdoor"; - opacity = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"rVP" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) "rWy" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"rXk" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ +"rXI" = ( +/obj/machinery/door/firedoor{ dir = 1 }, -/turf/simulated/open, -/area/maintenance/deck_two) -"rXp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) "rXS" = ( /obj/machinery/door/firedoor{ dir = 2 @@ -23035,23 +21962,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"rYw" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/direction_bump/east, -/turf/simulated/floor/tiled/monotile, -/area/space) -"rYB" = ( -/turf/simulated/wall, -/area/medical/patient_d) -"rYY" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "rZl" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 @@ -23066,55 +21976,70 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) -"rZn" = ( -/obj/machinery/media/jukebox, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"rZx" = ( +"rZB" = ( /obj/structure/railing, -/obj/structure/railing{ +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward/starboard) +"sae" = ( +/obj/machinery/door/airlock/engineering{ + name = "Hangar Substation" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/flight_deck) +"saC" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/cmo) +"sbI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/blue, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) +"scc" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/space/basic, +/area/space) +"scC" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ dir = 1 }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/deck_two/forward/port) -"sbk" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"scb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"sej" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft) -"sev" = ( -/obj/machinery/atmospherics/pipe/tank/air, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"seF" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/fitness) -"seS" = ( +/area/maintenance/cargo) +"seT" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/bridge/meeting_room) +"sfl" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) -"seW" = ( -/obj/structure/stairs/spawner/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "sfY" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/bluegrid, @@ -23123,6 +22048,13 @@ /obj/structure/railing, /turf/simulated/open, /area/space) +"sgT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "sha" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -23135,12 +22067,16 @@ "shp" = ( /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"shL" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/effect/spider/stickyweb/dark, +"shw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) +/area/main_map/maintenance/atmospheric_substation/security) +"shT" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) "sic" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -23156,27 +22092,11 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"siB" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/space) -"siW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/landmark/spawnpoint/job/roboticist, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) +"siE" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) "sjc" = ( /obj/machinery/washing_machine, /turf/simulated/floor/tiled, @@ -23187,32 +22107,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"sjH" = ( -/obj/structure/railing{ - dir = 1 +"sjV" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/deck_two/aft) -"sjW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_1) -"skc" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "ske" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -23229,27 +22129,19 @@ /obj/item/deskbell, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"skO" = ( -/obj/structure/stairs/spawner/east, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/space) -"skW" = ( -/obj/structure/stairs/spawner/east, -/obj/structure/railing, -/obj/structure/railing{ +"skE" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ dir = 1 }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/starboard) -"sln" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 +/area/main_map/maintenance/deck_two/aft) +"skY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 5 }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_4) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/processing) "slv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -23263,48 +22155,49 @@ /obj/machinery/power/apc/direction_bump/west, /turf/simulated/floor/plating, /area/security/brig) -"smg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +"slU" = ( +/obj/machinery/atmospherics/tvalve/digital/mirrored{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) -"smp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) +"smm" = ( +/obj/structure/railing, +/obj/machinery/light/small{ + dir = 1; + pixel_x = -2 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + frequency = 1379 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/plating, +/area/hallway/primary/underone) "smx" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/engine_eva) -"snm" = ( -/obj/structure/cable{ - icon_state = "1-2" +"smB" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "hangar_pad"; + name = "Hangar Bay Blast Door" }, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/machinery/atmospheric_field_generator/perma, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/deck_two/aft/starboard) "snz" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/crew_quarters/fitness) -"snI" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"snR" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +"snA" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar_backroom) +/turf/simulated/floor/reinforced, +/area/space) "snU" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -23315,44 +22208,60 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"snV" = ( -/obj/machinery/camera/network/civilian{ - dir = 8 +"sop" = ( +/obj{ + name = "---Merge conflict marker---" }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"spf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/structure/bed/chair/comfy/teal, +/obj/machinery/computer/security/telescreen{ + pixel_y = 32 + }, +/turf/space/basic, +/area/space) +"soB" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/space) +"soJ" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) +"soX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"spg" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 1 }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) -"spH" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +/area/main_map/maintenance/deck_two/port) +"spv" = ( +/obj/structure/bed/chair/sofa/black/right, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"spD" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/engineering/atmos/storage) "sqV" = ( /obj/machinery/shield_diffuser, /turf/simulated/floor/reinforced/airless, /area/space) -"srL" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"srX" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +"srv" = ( +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "ssw" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -23390,24 +22299,32 @@ }, /turf/simulated/floor/carpet/blue, /area/bridge/meeting_room) -"stX" = ( -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 8 +"suA" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 8 +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"suN" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/machinery/sleep_console{ - dir = 4 +/turf/simulated/floor/plating, +/area/maintenance/substation/flight_deck) +"suR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/turf/simulated/floor/tiled/neutral, -/area/space) -"suH" = ( -/obj/machinery/light_switch{ - pixel_y = -25 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/space) +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) +"svf" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/bar) "svk" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -23421,15 +22338,29 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"svP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 +"svx" = ( +/obj/machinery/door/airlock/engineering{ + name = "Hangar Substation" + }, +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/space) +/area/maintenance/substation/flight_deck) +"svO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) "swr" = ( /obj/structure/railing{ dir = 1 @@ -23437,24 +22368,20 @@ /obj/structure/railing, /turf/simulated/open, /area/rnd/robotics) -"swz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ +"swF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"swH" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"sxi" = ( -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"sxa" = ( +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/wood, +/area/space) "sxk" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -23472,6 +22399,28 @@ /obj/structure/railing, /turf/simulated/floor/wood, /area/crew_quarters/bar_backroom) +"sxX" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "16-0" + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_two/aft) +"sxY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"sya" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft) "syd" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 8 @@ -23479,77 +22428,37 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/atmos/processing) -"syg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) "syq" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_room) -"syI" = ( -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/structure/closet/emcloset/legacy, -/obj/item/storage/backpack/parachute, -/obj/item/storage/backpack/parachute, -/obj/item/storage/backpack/parachute, -/obj/item/storage/backpack/parachute, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/space) +"syt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "szC" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 }, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos) -"sAv" = ( -/turf/simulated/wall/r_wall, -/area/engineering/shield_gen) -"sAL" = ( -/obj/structure/window/reinforced{ - dir = 4 +"sAd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/bluegrid{ - initial_gas_mix = "n2=500;TEMP=80"; - name = "Server Base" - }, -/area/server) -"sAQ" = ( -/obj/machinery/light_switch{ - pixel_x = -9; - pixel_y = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"sBf" = ( /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/maintenance/deck_two) +"sAl" = ( +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward) +"sAF" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/port) "sBz" = ( /obj/structure/cable{ icon_state = "4-8" @@ -23566,44 +22475,22 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"sBB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"sBI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"sBK" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) +"sBW" = ( +/obj/structure/cable{ + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 9 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"sCu" = ( -/obj/machinery/atmospherics/component/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - on = 1 - }, -/turf/simulated/floor/bluegrid{ - initial_gas_mix = "n2=500;TEMP=80"; - name = "Server Base" - }, -/area/server) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "sCF" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/corner/lightgrey/border{ @@ -23611,12 +22498,6 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) -"sCO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/space) "sCZ" = ( /obj/machinery/lathe/autolathe, /obj/machinery/requests_console{ @@ -23627,39 +22508,19 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"sDc" = ( -/obj/structure/sign/deck2{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"sDj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"sDo" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"sDu" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "fuel_go_round" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/processing) "sDQ" = ( /obj/structure/railing, /turf/simulated/open, /area/rnd/research/researchdivision) +"sDS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) "sEd" = ( /obj/machinery/camera/network/engineering{ dir = 8 @@ -23669,12 +22530,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"sEm" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +"sEh" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_two/starboard) +"sEr" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/patient_a) "sEw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -23687,28 +22548,25 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/showers) +"sEA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/xenoflora_storage) "sEE" = ( /obj/effect/floor_decal/corner/paleblue/border{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"sEG" = ( -/obj/item/stack/cable_coil/green{ - pixel_y = 4 - }, -/obj/item/stack/cable_coil/green{ - pixel_y = 4 - }, -/obj/item/stack/cable_coil/green{ - pixel_y = 4 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/techmaint, -/area/space) "sEI" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -23732,34 +22590,48 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"sER" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/space) "sEV" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) +"sFe" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) +"sFw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "sFz" = ( /obj/structure/table/reinforced, /obj/item/flashlight/lamp, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"sGd" = ( +"sGh" = ( +/obj/machinery/camera/network/engineering, /obj/structure/cable/green{ - icon_state = "16-0" + icon_state = "4-8" }, -/obj/structure/cable/green, -/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/starboard) +/area/space) "sGB" = ( /obj/structure/railing{ dir = 1 @@ -23787,92 +22659,25 @@ }, /turf/simulated/floor/plating, /area/engineering/hallway) -"sHc" = ( -/obj/machinery/cryopod{ - dir = 2 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) "sHu" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/wood, /area/medical/patient_wing) -"sIo" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"sIC" = ( -/obj/structure/stairs/spawner/east, -/obj/structure/railing, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) "sIT" = ( /obj/machinery/atmospherics/pipe/simple/visible/aux{ dir = 9 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"sJs" = ( -/obj/structure/railing{ - dir = 1 +"sJz" = ( +/obj/structure/sign/deck/second{ + pixel_x = 32 }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"sJu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"sJv" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"sJL" = ( -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) -"sJN" = ( +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"sKs" = ( /obj/structure/cable/green{ icon_state = "1-4" }, @@ -23882,15 +22687,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"sJT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) +/area/main_map/maintenance/deck_two) "sKv" = ( /obj/structure/cable/green, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -23916,23 +22713,10 @@ /obj/item/radio/off, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) -"sLb" = ( -/obj/structure/bed/double/padded, -/obj/random/bedsheet/double, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"sLY" = ( -/turf/simulated/wall, -/area/hydroponics) -"sMN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_10) +"sMK" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) "sNe" = ( /obj/machinery/door/firedoor{ dir = 8 @@ -23941,34 +22725,36 @@ /obj/machinery/door/window/brigdoor/westright, /turf/simulated/floor/plating, /area/security/brig) -"sNM" = ( -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/tiled/techmaint, -/area/space) +"sNN" = ( +/turf/simulated/wall, +/area/main_map/hallway/deck2/port_fore) +"sNY" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/wood, +/area/medical/patient_wing) "sOc" = ( /obj/effect/floor_decal/corner/green/border{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"sOD" = ( -/obj/structure/sign/deck/second, -/turf/simulated/wall, -/area/crew_quarters/bar) +"sOl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) +"sOz" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) "sOR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 10 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) -"sOU" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/machinery/camera/network/civilian, -/obj/structure/flora/pottedplant/smalltree, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "sPg" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -23978,32 +22764,10 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"sPv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"sQK" = ( -/obj/machinery/door/blast/regular{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/space) -"sQT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +"sPy" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/port) "sQX" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -24029,24 +22793,19 @@ /obj/fiftyspawner/steel, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"sRD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 +"sRz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"sRZ" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) +"sRI" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "sSn" = ( /obj/machinery/atmospherics/component/binary/pump{ name = "Fuel Line to Thrusters" @@ -24056,31 +22815,27 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"sSH" = ( -/obj/machinery/door/airlock/atmos{ - name = "Service Atmospherics Backup"; - req_access = list(24) +"sSo" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"sSK" = ( -/obj/structure/railing, -/obj/structure/railing{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/structure/railing{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/open, -/area/maintenance/deck_two/starboard) -"sSN" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"sSQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) "sSU" = ( /obj/structure/cable{ icon_state = "4-8" @@ -24096,59 +22851,43 @@ }, /turf/simulated/wall, /area/maintenance/tool_storage) -"sTZ" = ( -/obj/structure/table/standard, -/obj/item/anobattery{ - pixel_x = 6; - pixel_y = 6 +"sTq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/item/anobattery{ - pixel_x = 2; - pixel_y = 2 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/anobattery{ - pixel_x = -2; - pixel_y = -2 +/obj/machinery/door/airlock/atmos{ + name = "Science Atmospherics Backup"; + req_access = list(24) }, -/obj/item/anobattery{ - pixel_x = -6; - pixel_y = 2 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/item/tool/screwdriver, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 3 - }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"sUi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"sUw" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) +"sTs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 }, /obj/machinery/air_alarm{ dir = 4; - pixel_x = -22 + pixel_x = -23 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, +/obj/machinery/meter, /turf/simulated/floor/tiled/techfloor, -/area/space) +/area/engineering/atmos/gas_storage) +"sUr" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "sUy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 6 @@ -24161,6 +22900,16 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) +"sUJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) "sVs" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -24184,17 +22933,23 @@ /obj/item/retail_scanner/science, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"sVE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ +"sVL" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"sVV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) +"sWc" = ( +/obj/structure/railing{ dir = 8 }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 4; - id_tag = "deck1_airlock2"; - pixel_x = -26 +/obj/structure/sign/deck/second{ + pixel_y = 32 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/turf/simulated/open, +/area/security/observation) "sWo" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 5 @@ -24247,13 +23002,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"sXB" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) "sXE" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 6 @@ -24264,36 +23012,45 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"sYm" = ( -/obj/machinery/door/firedoor{ - dir = 1 +"sYV" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/security/observation) +"sZN" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, /turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/area/main_map/hallway/deck2) +"sZQ" = ( +/obj/structure/sign/deck2{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) +"sZU" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "tan" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"tbv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/tiled, -/area/maintenance/dormitory) -"tbE" = ( -/obj/structure/cable{ - icon_state = "4-8" +"tbN" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/marker_beacon/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) "tbU" = ( /obj/machinery/computer/general_air_control/large_tank_control{ input_tag = "o2_in"; @@ -24319,19 +23076,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"tcy" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm9"; - name = "Room 9 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) "tcJ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -24343,6 +23087,12 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) +"tcR" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/storage/single_use/med_pouch/burn, +/obj/item/storage/single_use/med_pouch/oxyloss, +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) "tcY" = ( /obj/structure/mirror{ dir = 4; @@ -24357,6 +23107,12 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/plating, /area/security/brig) +"tdj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) "tef" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -24378,12 +23134,9 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian) -"tfz" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) +"tfD" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/main_map/maintenance/atmospheric_substation/ai) "tfH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -24402,6 +23155,22 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) +"tgc" = ( +/obj/machinery/door/airlock{ + name = "Secondary Janitorial Closet"; + req_access = list(26) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"tgg" = ( +/obj/machinery/door/airlock/maintenance/engi, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft) "tgk" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass/atmos, @@ -24428,18 +23197,9 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) -"tgR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +"thb" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) "thK" = ( /obj/machinery/atmospherics/component/unary/outlet_injector{ dir = 4; @@ -24464,6 +23224,23 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled, /area/rnd/rdoffice) +"tiR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) +"tje" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) "tjj" = ( /obj/machinery/door/airlock/maintenance/engi{ name = "Atmospherics"; @@ -24475,9 +23252,18 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/engineering/atmos) +"tjw" = ( +/obj/structure/cable/green{ + icon_state = "32-2" + }, +/turf/simulated/open, +/area/maintenance/substation/flight_deck) "tjx" = ( /turf/simulated/floor/plating, /area/maintenance/cargo) +"tjA" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "tkb" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -24521,12 +23307,18 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"tlQ" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 +"tlJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/atmospheric_substation/security) "tlS" = ( /obj/structure/table/reinforced, /obj/item/stack/material/plastic{ @@ -24546,88 +23338,31 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"tmu" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"tmC" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/sign/directions/roomnum{ - dir = 9; - pixel_x = -32; - pixel_y = -3 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"tnt" = ( +"tmM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) +"tmY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/wall/r_wall, -/area/space) -"tnA" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/showers) -"tnK" = ( -/obj/machinery/door/firedoor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) -"tnN" = ( -/turf/simulated/wall, -/area/maintenance/atmospheric_substation/command) -"tnX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"tnY" = ( -/obj/machinery/door/airlock/atmos{ - name = "Civilian Atmospherics Backup"; - req_access = list(24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"ton" = ( -/turf/simulated/wall, -/area/medical/medbay2) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/starboard) +"tnf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) +"tnA" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/showers) "toG" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 @@ -24637,16 +23372,34 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) -"toV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"toH" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ dir = 4 }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "32-8" + }, +/turf/simulated/open, +/area/main_map/maintenance/atmospheric_substation/civilian) +"toZ" = ( +/obj/effect/floor_decal/techfloor/orange/corner, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "tpC" = ( /obj/structure/table/steel, /obj/effect/floor_decal/techfloor, @@ -24691,13 +23444,21 @@ "tqn" = ( /turf/simulated/shuttle/wall/voidcraft/hard_corner, /area/space) -"tqw" = ( -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) +"trr" = ( +/obj/structure/kitchenspike, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"trt" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) "trS" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -24709,6 +23470,15 @@ }, /turf/simulated/floor/wood, /area/space) +"tsq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "tsx" = ( /obj/item/clothing/under/swimsuit, /obj/structure/cable/green{ @@ -24716,24 +23486,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/recreation_area_hallway) -"tsU" = ( -/obj/machinery/atmospherics/component/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "tox_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - on = 1 - }, -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos/gas_storage) "tsZ" = ( /obj/item/radio/intercom{ dir = 1; @@ -24745,24 +23497,12 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"ttb" = ( -/obj/machinery/atmospherics/component/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "o2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - on = 1 +"ttq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos/gas_storage) +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/underone) "ttw" = ( /obj/structure/railing{ dir = 4 @@ -24781,33 +23521,70 @@ }, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) -"tuj" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"tuc" = ( +/obj/structure/railing{ dir = 1 }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/bar) +/turf/simulated/open, +/area/main_map/hallway/deck2) +"tuk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) "tuY" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/gas_storage) +"tvf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/direction_bump/north, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) +"tvN" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/vending/fitness, +/turf/space/basic, +/area/space) "tvU" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"twn" = ( +"twy" = ( /obj/structure/cable{ - icon_state = "2-4" + icon_state = "4-8" }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "twJ" = ( /obj/item/storage/toolbox/mechanical{ pixel_y = 5 @@ -24831,18 +23608,52 @@ }, /turf/simulated/open, /area/quartermaster/warehouse) -"txm" = ( -/obj/structure/sign/deck2{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/port) "txn" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) +"txB" = ( +/obj/structure/table/rack/shelf, +/obj/item/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/item/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/item/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay) "txH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -24888,42 +23699,25 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"tyK" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 23 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/space) -"tyL" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/direction_bump/east, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker) -"tzc" = ( -/obj/machinery/vending/snack{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_two) -"tzm" = ( -/obj/structure/catwalk, -/turf/simulated/open, -/area/maintenance/deck_two/aft) -"tzr" = ( +"tyE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, /turf/simulated/floor/plating, -/area/hallway/primary/central_two) +/area/engineering/engine_gas) +"tzk" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "tzO" = ( /obj/structure/lattice, /obj/structure/railing{ @@ -24931,31 +23725,12 @@ }, /turf/simulated/open, /area/space) -"tzP" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"tzX" = ( +/obj/machinery/light/small/emergency{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"tzW" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/reagent_containers/food/drinks/metaglass, -/obj/item/reagent_containers/food/drinks/metaglass, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/monotile, -/area/space) +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) "tAa" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/borderfloor{ @@ -24966,10 +23741,32 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) -"tAh" = ( -/obj/structure/bookcase, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +"tAl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "tAx" = ( /obj/structure/railing, /turf/simulated/floor/reinforced/airless, @@ -24994,6 +23791,10 @@ /obj/structure/table/fancyblack, /turf/simulated/floor/carpet, /area/crew_quarters/bar) +"tAR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/blue, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "tAT" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -25005,6 +23806,17 @@ }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"tAX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"tAZ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) "tBx" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -25015,96 +23827,67 @@ }, /turf/simulated/floor/tiled/techmaint, /area/crew_quarters/recreation_area_hallway) -"tBz" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Hangar Bay"; - cur_coils = 3 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/space) -"tCt" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/turf/simulated/wall/r_wall, -/area/space) "tCN" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar_backroom) -"tCS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"tDw" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_11) -"tDz" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"tEB" = ( -/turf/simulated/wall, -/area/quartermaster/qm) +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) +"tDB" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/door/airlock/glass/atmos, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/atmos) +"tDH" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) +"tEs" = ( +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/port) "tEJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"tEV" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled/neutral, -/area/space) -"tEW" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) "tFj" = ( /obj/machinery/atmospherics/pipe/tank/phoron{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) +"tFl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) +"tFm" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) "tFq" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/door/airlock/glass/atmos, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"tFw" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) "tFR" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 @@ -25132,36 +23915,41 @@ "tGw" = ( /turf/simulated/floor/wood, /area/bridge/meeting_room) -"tHp" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 8 +"tHq" = ( +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/hangar) +"tHF" = ( +/obj/machinery/door/airlock/maintenance/sec, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) -"tIl" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/sign/deck2{ - pixel_x = -32 - }, -/turf/simulated/open, -/area/space) -"tIX" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/security/observation) +"tIW" = ( +/obj/structure/sign/deck/second, /turf/simulated/wall, -/area/crew_quarters/sleep/cryo) +/area/main_map/hallway/deck2) "tJA" = ( /obj/structure/lattice, /turf/simulated/open, /area/security/brig) +"tJE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/maintenance/tool_storage) "tJO" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -25185,21 +23973,26 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) +"tKc" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) "tKe" = ( /obj/machinery/door/airlock/glass/engineeringatmos, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/engineering/engine_smes) -"tKm" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"tKk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) "tKq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -25219,55 +24012,26 @@ /obj/structure/railing, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"tKL" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora_storage) -"tKR" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"tLh" = ( +/obj/structure/sign/directions/cryo{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"tLt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ +/turf/simulated/wall, +/area/main_map/hallway/deck2) +"tLr" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rift/station/fighter_bay) +"tMn" = ( +/obj/effect/floor_decal/techfloor/orange{ dir = 8 }, -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) -"tLx" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"tLC" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/port) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"tMB" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/bunker) "tMI" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -25283,90 +24047,132 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"tMX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ +"tMU" = ( +/obj/machinery/light/no_nightshift, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"tNL" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/maintenance/deck_two/aft/port) "tNO" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"tOl" = ( -/obj/structure/table/steel, -/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/pilot{ - pixel_y = 3 +"tNT" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"tOm" = ( -/obj/machinery/computer/timeclock/premade/south, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"tOH" = ( +/obj/machinery/door/airlock/maintenance/common, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) +"tOq" = ( +/obj/machinery/door/airlock/atmos{ + name = "Civilian Atmospherics Backup"; + req_access = list(24) }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) -"tOO" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/door/airlock/glass/engineering, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/space) -"tPc" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/corner/brown/bordercorner, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"tPh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/space) +/area/main_map/maintenance/atmospheric_substation/civilian) +"tOR" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"tPa" = ( +/obj/machinery/door/airlock/maintenance/command{ + name = "Command Atmospheric Substation" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) +"tPg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) "tPq" = ( /obj/machinery/photocopier, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"tQj" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled/techfloor, -/area/space) +"tPG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) +"tPM" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "tQt" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"tQP" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 +"tQB" = ( +/obj{ + name = "---Merge conflict marker---" }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/bed/chair/shuttle{ + dir = 1 }, -/obj/machinery/camera/network/civilian{ - dir = 8 +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/space/basic, +/area/space) +"tRb" = ( +/turf/simulated/wall/prepainted/medical, +/area/main_map/maintenance/deck_two/forward/starboard) "tRL" = ( /obj/machinery/atmospherics/component/binary/pump, /turf/simulated/floor/tiled/techfloor, @@ -25383,71 +24189,59 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"tSv" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_7) -"tSA" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Vacant lobby" +"tSq" = ( +/obj/structure/sign/deck2{ + pixel_y = 32 }, /turf/simulated/floor/plating, -/area/space) -"tTo" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"tUk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ +/area/main_map/maintenance/deck_two/aft/port) +"tSI" = ( +/obj/machinery/door/firedoor{ dir = 8 }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"tUo" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) -"tUO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) +"tTR" = ( +/turf/simulated/wall/prepainted/engineering, +/area/engineering/hallway) +"tTX" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 }, +/turf/simulated/floor/wood, +/area/medical/patient_wing) +"tUp" = ( /obj/structure/cable{ - icon_state = "2-4" + icon_state = "1-2" }, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) +"tUs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/Hangar_bay/deck2) +"tUD" = ( +/obj/structure/table/rack/shelf/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) "tUW" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/green, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"tVi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"tVc" = ( +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) +/obj/machinery/power/apc/direction_bump/east, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) "tVp" = ( /obj/machinery/light/small{ dir = 4 @@ -25460,35 +24254,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/shield_gen) -"tVV" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"tWc" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/cmo) -"tWg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) "tWn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm{ @@ -25523,6 +24288,10 @@ /obj/item/material/ashtray/glass, /turf/simulated/floor/tiled, /area/space) +"tWH" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) "tXj" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -25535,38 +24304,93 @@ }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"tYj" = ( -/turf/simulated/wall, -/area/crew_quarters/recreation_area_hallway) -"tZc" = ( -/turf/simulated/floor/wood, -/area/hallway/primary/port) +"tXw" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) +"tXx" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"tXJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) +"tYn" = ( +/obj/machinery/camera/network/research{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "tZt" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"tZx" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/flora/pottedplant/smalltree, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +"tZE" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/research/researchdivision) "tZK" = ( /obj/structure/stairs/spawner/south, /turf/simulated/floor/reinforced/airless, /area/space) +"tZY" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"uaa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/direction_bump/north, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/atmospheric_substation/security) "uad" = ( /obj/effect/floor_decal/corner/paleblue/bordercee{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) +"uaw" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"ubz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "ubH" = ( /obj/structure/cable{ icon_state = "4-8" @@ -25579,28 +24403,6 @@ }, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"uch" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"ucS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"ucX" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) "ucZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -25617,28 +24419,16 @@ /obj/machinery/atmospherics/valve/digital, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) -"ufo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Crew Cryo Bay" +"ueK" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"ufz" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"ufH" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward) +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) "ufQ" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -25649,96 +24439,49 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"ufT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/bluegrid{ - initial_gas_mix = "n2=500;TEMP=80"; - name = "Server Base" - }, -/area/server) -"ugy" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"uga" = ( +/obj/machinery/light/no_nightshift{ dir = 8 }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"ugT" = ( -/obj/machinery/newscaster{ - pixel_x = 30 +/area/main_map/maintenance/deck_two/aft/port) +"ugw" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"uhb" = ( /turf/simulated/floor/plating, -/area/maintenance/deck_two/starboard) -"uhN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"uiw" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/port_gen/pacman/mrs{ - anchored = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/component/binary/pump/fuel{ +/area/main_map/maintenance/deck_two/aft/starboard) +"uhf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"uiI" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/maintenance) +"uht" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward) -"uiK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"uiO" = ( /obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ dir = 1; name = "Service Waste Buffer"; start_pressure = 0 }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) -"ujf" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/area/main_map/maintenance/atmospheric_substation/service) +"ujj" = ( +/obj/machinery/door/firedoor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) -"ujr" = ( -/obj/machinery/door/airlock/maintenance/engi, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft) +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "ujw" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -25776,25 +24519,24 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/space) -"uku" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"ukx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) "ukE" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/wood, /area/crew_quarters/showers) -"ukG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"ulZ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_10) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "uml" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 6 @@ -25802,6 +24544,16 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) +"umt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "umZ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -25837,24 +24589,15 @@ /obj/effect/floor_decal/techfloor/orange, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"unu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"uny" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 24 +"uno" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "unL" = ( /obj/structure/railing{ dir = 8 @@ -25871,6 +24614,15 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/space) +"uoF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck2) "uoI" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 4 @@ -25889,12 +24641,28 @@ /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled, /area/space) -"upe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 +"upk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/door/firedoor/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "upo" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 10 @@ -25914,6 +24682,12 @@ }, /turf/simulated/floor/tiled/monotile, /area/space) +"upY" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "uqo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -25921,10 +24695,18 @@ }, /turf/simulated/floor/bluegrid, /area/rnd/robotics/mechbay) -"uqB" = ( -/obj/structure/closet/firecloset, +"uqO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/simulated/floor/plating, -/area/maintenance/dormitory) +/area/main_map/hallway/deck2) "uqZ" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 6 @@ -25936,90 +24718,28 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"urg" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) -"urp" = ( -/obj/structure/dispenser{ - phorontanks = 0 +"urH" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"urE" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/open, +/area/main_map/maintenance/deck_two) "usj" = ( /obj/effect/floor_decal/corner_techfloor_grid, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"usM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"utf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_8) -"utK" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/space) -"utV" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"uub" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) "uue" = ( /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/white, /area/medical/medbay2) +"uuj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/main_map/maintenance/deck_two/aft/starboard) "uuF" = ( /obj/machinery/atmospherics/component/unary/engine/biggest{ dir = 4 @@ -26027,12 +24747,9 @@ /obj/structure/railing, /turf/simulated/floor/reinforced/airless, /area/space) -"uuH" = ( -/obj/item/storage/box/donkpockets, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/monotile, -/area/space) +"uuJ" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/starboard) "uuP" = ( /obj/machinery/atmospherics/component/binary/pump{ dir = 1 @@ -26045,39 +24762,22 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"uva" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_6) "uvc" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) -"uvh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"uvG" = ( +/obj/structure/railing, +/obj/structure/railing{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/railing{ dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"uvI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) +/turf/simulated/open, +/area/space) "uvN" = ( /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ @@ -26091,15 +24791,6 @@ }, /turf/simulated/wall/r_wall, /area/engineering/atmos) -"uwq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_11) "uws" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -26116,6 +24807,25 @@ /obj/machinery/recharge_station, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/mechbay) +"uwR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) +"uwS" = ( +/obj/structure/railing, +/obj/machinery/light/small{ + dir = 1; + pixel_x = -2 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + frequency = 1379 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/underone) "uwT" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -26126,17 +24836,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_b) -"uwV" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft) -"uxu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) "uxB" = ( /obj/item/bedsheet/medical, /obj/structure/bed/padded, @@ -26157,17 +24856,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"uxG" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/atmos{ - name = "Civilian Atmospherics Backup"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) "uxJ" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass/atmos, @@ -26182,52 +24870,6 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos) -"uyq" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/structure/sign/directions/roomnum{ - dir = 4; - pixel_y = 24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"uyW" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"uzi" = ( -/obj/machinery/door/firedoor{ - dir = 1 - }, -/obj/structure/sign/department/ass{ - pixel_x = 29 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) -"uzu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/anomaly_lab) -"uzv" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "uzM" = ( /obj/machinery/portable_atmospherics/canister, /obj/effect/floor_decal/industrial/warning{ @@ -26235,39 +24877,34 @@ }, /turf/simulated/floor/plating, /area/rnd/xenobiology/xenoflora_storage) -"uzS" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/atmospheric_substation/research) "uAp" = ( /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"uAU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +"uAy" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"uBk" = ( -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"uBb" = ( +/obj/machinery/door/firedoor/glass{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Hanger 1 B" + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2/b) "uBy" = ( /obj/machinery/atmospherics/component/binary/pump{ dir = 8; @@ -26275,6 +24912,14 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) +"uBC" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 4; + name = "Command Waste Buffer"; + start_pressure = 0 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) "uBL" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -26283,23 +24928,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/quartermaster/qm) -"uBT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"uCn" = ( +/obj/machinery/atmospherics/tvalve/digital/mirrored{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/recreation_area_hallway) +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) "uCD" = ( /obj/structure/table/fancyblack, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/bar) -"uDd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) "uDq" = ( /obj/structure/cable{ icon_state = "2-4" @@ -26314,6 +24955,9 @@ /obj/structure/railing, /turf/space, /area/space) +"uEG" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/space) "uEJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -26323,13 +24967,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/cargo) -"uEO" = ( -/obj/machinery/artifact_harvester, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/anomaly_lab) "uEQ" = ( /obj/machinery/door/firedoor, /obj/structure/catwalk, @@ -26345,10 +24982,10 @@ /obj/machinery/door/window/brigdoor/eastleft, /turf/simulated/floor/plating, /area/security/brig) -"uEW" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/reinforced, -/area/space) +"uES" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) "uFd" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 6 @@ -26356,10 +24993,26 @@ /obj/machinery/meter, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"uFu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/red, -/turf/simulated/wall, -/area/space) +"uFp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/door/airlock/glass/research{ + name = "Hangar Repair Bay"; + req_one_access = list(1,29,38,47) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "uFy" = ( /obj/machinery/door/airlock/maintenance/rnd, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -26369,37 +25022,27 @@ }, /turf/simulated/floor/plating, /area/rnd/research/researchdivision) -"uFI" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"uGl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/command) +"uHa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"uFK" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"uGi" = ( -/obj/machinery/light/spot{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/wall/rshull, -/area/space) -"uGI" = ( -/turf/simulated/wall, -/area/maintenance/deck_two) +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "uHc" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -26421,15 +25064,11 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) -"uHV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"uIk" = ( +"uIg" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) +/area/main_map/maintenance/deck_two) "uIm" = ( /obj/machinery/door/airlock/glass/engineering{ name = "Engineering Hallway" @@ -26437,9 +25076,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/hallway) -"uIy" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_two/port) "uIA" = ( /obj/structure/catwalk, /obj/machinery/camera/network/outside{ @@ -26447,35 +25083,27 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"uIJ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techmaint, -/area/space) "uIR" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) +"uIW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) "uIX" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/security/brig) -"uJm" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "uJn" = ( /obj/structure/railing, /obj/structure/railing{ @@ -26483,6 +25111,16 @@ }, /turf/simulated/open, /area/security/brig) +"uJw" = ( +/obj/machinery/door/airlock/maintenance/command, +/turf/simulated/floor/plating, +/area/space) +"uJy" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) "uKe" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -26495,19 +25133,25 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor, /area/security/brig) -"uKW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"uKh" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2/starboard_fore) +"uKw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"uLJ" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/port) +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) +"uLA" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "uLV" = ( /obj/structure/bed/chair/bay/comfy{ dir = 1 @@ -26524,14 +25168,16 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/engine_smes) -"uMz" = ( -/obj/structure/bed/padded, -/obj/machinery/newscaster{ - pixel_y = 32 +"uMx" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/random/bedsheet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/space) "uMG" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -26545,20 +25191,25 @@ /obj/machinery/vending/assist, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"uMI" = ( +"uNw" = ( +/obj/machinery/atmospherics/component/trinary/filter{ + dir = 8; + filtering = "phoron" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/gas_storage) +"uNy" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, /obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Bridge Compartment"; - req_one_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) "uNG" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass/research{ @@ -26567,26 +25218,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/robotics) -"uNL" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/hallway/primary/central_two) -"uNV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "uNX" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -26604,51 +25235,21 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) -"uOg" = ( -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"uOw" = ( -/obj/machinery/door/airlock/atmos{ - name = "Civilian Atmospherics Backup"; - req_access = list(24) +"uOj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/landmark{ + name = "lightsout" }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/civilian) -"uPn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/processing) +"uOt" = ( +/obj/structure/railing{ + dir = 4 }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"uPZ" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_external" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/turf/simulated/open, +/area/main_map/hallway/deck2) "uQa" = ( /obj/structure/sink/kitchen{ dir = 8; @@ -26657,30 +25258,9 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"uQn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics) -"uQP" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"uSd" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +"uQr" = ( +/turf/simulated/wall/prepainted, +/area/storage/tech) "uSp" = ( /obj/machinery/light/no_nightshift{ dir = 8 @@ -26693,6 +25273,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) +"uSF" = ( +/obj/machinery/atmospherics/component/trinary/filter/mirrored{ + dir = 1; + filtering = "o2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/gas_storage) "uSP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -26706,69 +25293,52 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/hallway) -"uSZ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ +"uSU" = ( +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/hallway/primary/central_two) -"uTg" = ( -/obj/machinery/button/windowtint{ - id = "booth_2"; - pixel_x = -2; - pixel_y = 26 +/area/main_map/maintenance/deck_two/forward/port) +"uTM" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/bar) -"uTH" = ( -/obj/structure/stairs/spawner/west, -/obj/structure/railing, /turf/simulated/floor/plating, -/area/medical/medbay2) -"uUI" = ( -/obj/structure/bed/chair/sofa/black/corner, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"uUL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/area/main_map/maintenance/atmospheric_substation/medical) +"uUB" = ( /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/atmospheric_substation/security) -"uUY" = ( -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = -10 - }, -/obj/structure/sign/directions/cryo, -/turf/simulated/wall, -/area/hallway/primary/central_two) +/area/main_map/maintenance/deck_two/aft) "uVe" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/bridge/bunker) +"uVj" = ( +/obj/machinery/mech_recharger, +/obj/mecha/combat/fighter/pinnace/loaded{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/space) +"uVo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + id = "hanger1b"; + layer = 3.3; + name = "Hanger 1 B Shutters" + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2/b) "uVz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -26787,13 +25357,26 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"uVU" = ( -/obj/machinery/fitness/punching_bag/clown, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) -"uWo" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) +"uWe" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"uWs" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/cargo) "uWP" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 @@ -26807,15 +25390,19 @@ }, /turf/simulated/floor/plating, /area/rnd/research/researchdivision) -"uXi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 +"uXj" = ( +/obj/machinery/button/remote/blast_door{ + id = "fighterbaytransportexit"; + name = "Transport Tunnel"; + pixel_x = 26; + pixel_y = 26; + req_one_access = list(1,29,38,47) }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) "uXn" = ( /obj/item/radio/intercom{ dir = 1; @@ -26852,48 +25439,17 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"uYo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ +"uYV" = ( +/obj/machinery/light{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/machinery/shower{ +/obj/machinery/vending/coffee, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/effect/floor_decal/spline/plain{ dir = 1 }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - name = "Shower"; - req_access = list() - }, -/obj/structure/curtain/open/shower/engineering, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_1) -"uYx" = ( -/obj/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled, -/area/space) -"uYy" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/barrestroom) -"uYI" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, /turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) +/area/rift/station/fighter_bay) "uZc" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -26915,12 +25471,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"uZk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) "uZW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -26929,15 +25479,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"vab" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) +"uZZ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rift/station/fighter_bay/maintenance) "vak" = ( /obj/structure/filingcabinet/filingcabinet, /turf/simulated/floor/wood, @@ -26948,6 +25492,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) +"vao" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "var" = ( /turf/simulated/floor/plating, /area/maintenance/substation/research) @@ -26967,22 +25517,10 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"vbb" = ( -/obj/structure/sign/deck2{ - pixel_y = 32 - }, +"vaX" = ( +/obj/machinery/light/small, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"vbf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) +/area/main_map/maintenance/deck_two) "vbm" = ( /obj/structure/railing{ dir = 1 @@ -26999,18 +25537,27 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"vbz" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +"vbN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/effect/floor_decal/borderfloor{ +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) +"vcc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "vcf" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/mechanical, @@ -27027,55 +25574,33 @@ "vcx" = ( /turf/simulated/floor/plating, /area/maintenance/engineering) -"vcQ" = ( -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"vdo" = ( -/obj/machinery/conveyor{ - id = "shuttle_inbound" - }, -/obj/structure/plasticflaps, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ +"vdd" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"vea" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"vec" = ( +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_two/aft/starboard) +"vds" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) -"vej" = ( -/obj/structure/bed/chair/comfy/teal{ dir = 8 }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/Hangar_bay/deck2) +"vdY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/space) +"ved" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/robotics) +"veg" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/maintenance) "vel" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Engineering"; @@ -27100,15 +25625,36 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"veU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"veQ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/marker_beacon/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"veZ" = ( +/obj/machinery/door/airlock/maintenance/command{ + name = "Command Substation" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge_lockdown"; + name = "Bridge Lockdown"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/hallway/primary/central_two) +/area/bridge/bunker) "vfh" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -27121,22 +25667,23 @@ }, /turf/simulated/open, /area/security/brig) -"vfq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"vfp" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloorblack{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/corner/brown/border{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/sign/directions/roomnum{ - dir = 8; - pixel_y = -23 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/space/basic, +/area/space) "vfy" = ( /obj/machinery/portable_atmospherics/canister/phoron, /turf/simulated/floor/tiled/techfloor, @@ -27150,25 +25697,35 @@ }, /turf/simulated/floor/carpet, /area/medical/patient_wing) -"vgc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) -"vgM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" +"vgj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"vgw" = ( +/obj/structure/ladder/up, /turf/simulated/floor/plating, -/area/hallway/primary/central_two) +/area/main_map/maintenance/deck_two/aft/starboard) +"vgx" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/space/basic, +/area/space) +"vgE" = ( +/obj/structure/toilet{ + pixel_y = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "vgN" = ( /obj/machinery/access_button/airlock_exterior{ master_tag = "engineering_main"; @@ -27176,30 +25733,19 @@ }, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) -"vgV" = ( +"vhb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) +"vhr" = ( +/obj/structure/cable/green{ + icon_state = "2-4" }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_5) -"vhi" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) -"vhP" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/deck_two/aft) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "vic" = ( /obj/item/modular_computer/console/preset/command{ dir = 8 @@ -27212,50 +25758,42 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"vil" = ( -/obj/structure/bed/chair/comfy/teal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"viD" = ( -/obj/machinery/door/firedoor{ - dir = 2 +"vir" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) -"viP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) +"vjg" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + anchored = 1 }, -/obj/machinery/door/window/westleft{ - dir = 1 +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, -/obj/effect/floor_decal/spline/plain{ - dir = 1; - pixel_y = -15 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) "vjy" = ( /obj/spawner/window/reinforced/full/firelocks, /obj/structure/curtain/open/shower/medical, /turf/simulated/floor/plating, /area/medical/patient_b) +"vjz" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2/stairs) "vjK" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/corner/lightgrey/border{ @@ -27278,78 +25816,111 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/reinforced/airmix, /area/engineering/atmos/gas_storage) +"vld" = ( +/obj/machinery/door/airlock/maintenance/rnd{ + req_access = list(29,47) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/robotics) "vlr" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, /area/crew_quarters/recreation_area_hallway) -"vlT" = ( -/obj/machinery/atmospherics/tvalve/digital{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) -"vmY" = ( -/obj/machinery/power/apc/direction_bump/west, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/medical) -"vnd" = ( -/turf/simulated/wall, -/area/hallway/primary/central_two) -"vnr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"vls" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) +"vlS" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) +"vmh" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"vnE" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/space/basic, +/area/space) +"vnG" = ( +/obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"vnF" = ( -/obj/structure/ladder/up, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) -"vnQ" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/port) -"vnR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/structure/handrail, -/obj/machinery/airlock_sensor{ - pixel_y = 28 +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "medivac_docker_pump_out_external" +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"vof" = ( -/obj/item/flashlight/lamp, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/monotile, -/area/space) +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "vok" = ( /obj/machinery/turretid/lethal{ pixel_y = 30 }, /turf/simulated/floor/plating, /area/space) -"vpe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"voJ" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/rift/station/fighter_bay/maintenance) +"voM" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"vpR" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "fighterbaytransportexit"; + name = "Transport Tunnel Exit" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/hangar) +"vqh" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 1; + name = "Civilian Waste Buffer"; + start_pressure = 0 + }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) -"vpH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) +/area/main_map/maintenance/atmospheric_substation/civilian) "vqH" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -27379,39 +25950,41 @@ }, /turf/simulated/floor/plating, /area/space) -"vrf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/tiled/dark, -/area/space) "vrk" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"vrx" = ( -/obj/structure/sign/deck2{ - pixel_y = -32 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/port) "vrI" = ( /obj/machinery/door/airlock/maintenance/engi, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/engineering/hallway) -"vsD" = ( +"vsd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"vsg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/blue{ dir = 5 }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) +/area/main_map/maintenance/atmospheric_substation/command) "vsH" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -27428,11 +26001,12 @@ "vtG" = ( /turf/simulated/wall/r_wall, /area/bridge/bunker) -"vum" = ( -/obj/structure/catwalk, -/obj/structure/ladder/up, -/turf/simulated/open, -/area/maintenance/deck_two/aft) +"vuh" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -5 + }, +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/quartermaster/qm) "vuF" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 9 @@ -27453,33 +26027,32 @@ /obj/machinery/atmospherics/component/binary/pump/on, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"vuW" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 +"vuM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 9 +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) +"vuP" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_two) +"vvd" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/bed/chair/shuttle{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"vuZ" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) "vvp" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -27493,19 +26066,6 @@ /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) -"vvr" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"vvY" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward) "vwk" = ( /turf/simulated/floor/tiled, /area/crew_quarters/recreation_area_hallway) @@ -27533,6 +26093,13 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) +"vwy" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/high/east_bump, +/turf/simulated/floor/plating, +/area/space) "vwz" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/brflowers, @@ -27541,15 +26108,6 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/medical/patient_wing) -"vwG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) "vxl" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 6 @@ -27558,30 +26116,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/storage) -"vxK" = ( +"vxt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"vxM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics) +"vxW" = ( +/obj/machinery/door/airlock/atmos{ + name = "Security Atmospherics Backup"; + req_access = list(24) }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"vxX" = ( -/turf/simulated/wall/r_wall, -/area/engineering/storage) +/area/main_map/maintenance/atmospheric_substation/security) "vym" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -27592,10 +26142,54 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) +"vyv" = ( +/obj/structure/closet/crate/trashcart, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "vyK" = ( /obj/machinery/atmospherics/component/binary/pump, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) +"vzd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/space) +"vzj" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/maintenance/substation/civilian) +"vzk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "vzp" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 @@ -27605,43 +26199,43 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"vzG" = ( -/obj/structure/railing, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) "vzY" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 5 }, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) -"vAy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"vAi" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/barrestroom) +"vAI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) -"vAF" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) -"vBW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ +/obj/effect/floor_decal/borderfloor/corner2{ dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"vAU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/rift/station/fighter_bay/maintenance) "vBY" = ( /obj/structure/catwalk, /obj/machinery/power/pointdefense{ @@ -27649,6 +26243,18 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) +"vCf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "vCl" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -27664,16 +26270,28 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"vDm" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward) -"vDJ" = ( -/obj/structure/railing{ +"vCt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) +"vDW" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/engineering, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/engine_smes) "vEj" = ( /obj/structure/railing{ dir = 4 @@ -27686,30 +26304,36 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"vEH" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/space) "vFn" = ( /obj/machinery/atmospherics/pipe/tank, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"vFA" = ( -/obj/machinery/holopad, -/turf/simulated/floor/tiled/monotile, -/area/space) -"vFQ" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/atmospheric_substation/security) +"vFD" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "hangar_lockdown"; + name = "Hangar Lockdown Control"; + pixel_x = -24; + pixel_y = -39; + req_one_access = list(19,29,38,43,47,63,67) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "hangar_pad"; + name = "Hangar Bay Blast Door Control"; + pixel_x = -24; + pixel_y = -25; + req_one_access = list(19,29,38,43,47,63,67) + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) +"vFK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) "vFV" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, @@ -27720,9 +26344,16 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"vFX" = ( -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) +"vFZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "vGb" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate, @@ -27731,39 +26362,43 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/storage) -"vGd" = ( -/obj/effect/floor_decal/techfloor/orange{ +"vGh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) -"vGg" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"vGt" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"vGv" = ( -/obj/structure/stairs/spawner/east, -/turf/simulated/floor/tiled, -/area/space) +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "vGw" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/medical/patient_wing) +"vGH" = ( +/obj/structure/table/rack, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) +"vGL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "vHa" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Service Substation Bypass" @@ -27789,18 +26424,32 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) +"vHM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"vHR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"vIf" = ( +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "vIh" = ( /obj/structure/handrail{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"vIs" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_6) "vIx" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 5 @@ -27816,53 +26465,24 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) -"vIW" = ( -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) "vJi" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) -"vJA" = ( -/turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) -"vJF" = ( -/obj/structure/table/standard, -/obj/item/pen, -/obj/item/clothing/glasses/omnihud/rnd, -/obj/item/hand_labeler, -/obj/item/clothing/gloves/sterile/latex, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 +"vKf" = ( +/obj/machinery/mech_recharger, +/obj/mecha/combat/fighter/pinnace/loaded{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"vJJ" = ( -/obj/structure/table/standard, -/obj/item/anodevice, -/obj/item/anodevice{ - pixel_x = 3; - pixel_y = 3 +/obj/machinery/atmospherics/portables_connector{ + dir = 1 }, -/obj/item/tool/crowbar, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"vKl" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/hangar) +"vKw" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "vKx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -27871,35 +26491,12 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"vKV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"vLa" = ( -/obj/structure/cable/green{ - icon_state = "32-8" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/open, -/area/maintenance/deck_two) +"vLe" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "vLg" = ( /obj/structure/window/reinforced{ dir = 4 @@ -27907,6 +26504,17 @@ /obj/machinery/space_heater, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) +"vLo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "hangar_maint"; + name = "Hangar Maintenance Shutter" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay) "vLN" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/border_only, @@ -27932,12 +26540,16 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/mechbay) -"vNf" = ( -/turf/simulated/wall, -/area/crew_quarters/kitchen) -"vNs" = ( -/turf/simulated/floor/wood, -/area/space) +"vMB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) "vNA" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -27987,29 +26599,22 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"vNV" = ( -/obj/machinery/atmospherics/component/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "nitrous_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - on = 1 +"vOl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos/gas_storage) -"vOI" = ( -/obj/structure/closet/secure_closet/guncabinet/excursion, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) +"vOB" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward) "vPn" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 @@ -28019,31 +26624,29 @@ }, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) -"vPp" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +"vPo" = ( +/obj/machinery/light/small/emergency{ + dir = 8 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"vQa" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 +/obj/structure/table/rack, +/obj/item/stack/material/phoron{ + amount = 25 }, -/obj/machinery/door/window/southright{ - dir = 8; - name = "Jetpack Storage"; - req_one_access = list(11,24) +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) +"vQc" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/obj/item/flashlight/maglight, +/obj/item/flashlight/maglight, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) "vQe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -28052,12 +26655,9 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"vQp" = ( -/obj/structure/railing{ - dir = 4 - }, +"vQk" = ( /turf/simulated/open, -/area/maintenance/deck_two/forward/starboard) +/area/main_map/hallway/deck2) "vQt" = ( /obj/structure/sign/deck/second{ pixel_y = 32 @@ -28090,6 +26690,13 @@ /obj/structure/bed/padded, /turf/simulated/floor/carpet/tealcarpet, /area/medical/patient_d) +"vRr" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hallway) "vRu" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -28098,75 +26705,23 @@ }, /turf/simulated/floor/plating, /area/medical/patient_b) -"vRx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ +"vSf" = ( +/obj/effect/floor_decal/techfloor/orange{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"vRT" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "fuel_go_round" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/processing) -"vSj" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"vSR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"vSV" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/computer/timeclock/premade/north, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"vSq" = ( +/obj/effect/floor_decal/spline/plain, /turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) +/area/rift/station/fighter_bay) "vTf" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) -"vTl" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) -"vTE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/button/remote/airlock{ - id = "dorm11"; - name = "Room 11 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) "vTG" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -28179,9 +26734,16 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"vUq" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/starboard) +"vUt" = ( +/obj/structure/railing, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/main_map/hallway/deck2) "vUB" = ( /obj/effect/floor_decal/industrial/danger{ dir = 8 @@ -28197,24 +26759,33 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/wood, /area/space) -"vUI" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"vUL" = ( -/obj/structure/stairs/spawner/west, -/turf/simulated/floor/plating, -/area/medical/medbay2) "vUV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) +"vUW" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait, +/obj/machinery/door/firedoor/multi_tile, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) +"vUY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) "vVb" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Service Subgrid"; @@ -28242,42 +26813,20 @@ }, /turf/simulated/floor/reinforced/carbon_dioxide, /area/engineering/atmos/gas_storage) -"vWO" = ( -/obj/effect/floor_decal/techfloor/orange{ +"vXb" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"vXr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/rshull, -/area/space) -"vXt" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward) +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "vXA" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/robotics) -"vXP" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - name = "Emergency Bunker" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/panic_bunker) "vXT" = ( /obj/machinery/air_sensor{ frequency = 1443; @@ -28286,38 +26835,56 @@ }, /turf/simulated/floor/reinforced/airmix, /area/engineering/atmos/gas_storage) -"vYv" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ +"vXV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/service) +"vXZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/airlock/voidcraft{ + name = "Emergency Bunker" }, -/obj/machinery/door/airlock{ - id_tag = "dorm6"; - name = "Dorm 6" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"vZf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"vZL" = ( +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker/two) +"vYd" = ( /turf/simulated/wall/r_wall, -/area/quartermaster/hallway) +/area/main_map/maintenance/deck_two/forward) +"vYK" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/crew_quarters/barrestroom) +"vYS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"vZk" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) +"vZo" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) +"vZE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2/stairs) "vZN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -28326,44 +26893,38 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/engineering/shield_gen) -"vZQ" = ( -/obj/structure/cryofeed, -/obj/effect/floor_decal/corner_techfloor_grid{ +"vZW" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two) +"waB" = ( +/obj/effect/spider/stickyweb/dark, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) +"waE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"vZU" = ( -/turf/simulated/wall, -/area/maintenance/substation/research) -"wap" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/vacant/vacant_office) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) "waS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/atmos) -"wbi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) +"wbh" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/hydroponics) "wbl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -28372,24 +26933,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"wbv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"wbL" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/space) "wbN" = ( /obj/structure/table/reinforced, /turf/simulated/floor/tiled/techfloor, @@ -28401,18 +26944,6 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"wco" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) "wcM" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized/full{ @@ -28422,13 +26953,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"wdg" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_two) "wdx" = ( /obj/structure/catwalk, /obj/machinery/door/firedoor{ @@ -28456,6 +26980,15 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/medical/medbay2) +"wen" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck2) "weG" = ( /obj/machinery/air_sensor{ frequency = 1441; @@ -28463,10 +26996,12 @@ }, /turf/simulated/floor/reinforced/n20, /area/engineering/atmos/gas_storage) -"wfE" = ( -/obj/structure/closet/excavation, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) +"wfd" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) "wfV" = ( /obj/machinery/atmospherics/component/binary/pump/on{ dir = 8; @@ -28489,27 +27024,16 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"whh" = ( -/obj/structure/cable{ - icon_state = "4-8" +"wgQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"whp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/light/no_nightshift{ + dir = 4 }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/storage) +/area/engineering/atmos/processing) "whq" = ( /obj/structure/catwalk, /obj/machinery/door/firedoor{ @@ -28518,15 +27042,6 @@ /obj/machinery/door/window/brigdoor/westright, /turf/simulated/floor/plating, /area/security/brig) -"whA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_10) "whG" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 10 @@ -28574,10 +27089,12 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos) -"win" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +"wii" = ( +/obj/machinery/door/airlock/command{ + name = "Forward Point Defense Control Room" + }, +/turf/simulated/floor/reinforced, +/area/space) "wiv" = ( /obj/structure/railing{ dir = 1 @@ -28585,38 +27102,20 @@ /obj/structure/railing, /turf/simulated/open, /area/quartermaster/warehouse) -"wiF" = ( -/obj/structure/railing{ - dir = 4 +"wiN" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 }, -/obj/structure/railing{ - dir = 8 +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 }, -/turf/simulated/open, -/area/engineering/hallway) -"wje" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/atmos{ - name = "Cargo Atmospherics Backup"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) -"wjf" = ( -/obj/structure/sign/deck2{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/port) +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/maintenance) +"wjd" = ( +/obj/structure/sign/deck/second, +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/bar) "wji" = ( /obj/machinery/power/terminal{ dir = 1 @@ -28635,30 +27134,24 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"wjq" = ( -/obj/machinery/door/airlock/atmos{ - name = "Security Atmospherics Backup"; - req_access = list(24) - }, +"wjP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/bunker) +"wjX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "2-4" }, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/atmospheric_substation/security) -"wjF" = ( -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/machinery/fitness/heavy/lifter, -/turf/simulated/floor/wood, -/area/crew_quarters/fitness) +/area/main_map/maintenance/deck_two/port) "wkn" = ( /obj/machinery/atmospherics/component/unary/outlet_injector{ dir = 8; @@ -28668,18 +27161,15 @@ }, /turf/simulated/floor/reinforced/airmix, /area/engineering/atmos/gas_storage) -"wkM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"wkW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 5 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) "wld" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -28696,40 +27186,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos) -"wmh" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm8"; - name = "Dorm 8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"wmp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos{ - name = "Service Atmospherics Backup"; - req_access = list(24) - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) "wmv" = ( /obj/structure/bed/chair/office/light, /obj/landmark/spawnpoint/job/chief_medical_officer, @@ -28742,37 +27198,21 @@ /obj/structure/railing, /turf/simulated/open, /area/maintenance/cargo) -"wmL" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"wmO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/xenoflora_storage) -"wmR" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) "wmT" = ( /obj/structure/table/hardwoodtable, /obj/item/storage/pill_bottle/dice, /turf/simulated/floor/wood, /area/medical/patient_wing) +"wmU" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) "wmZ" = ( /obj/structure/railing{ dir = 1 @@ -28782,36 +27222,19 @@ }, /turf/simulated/open, /area/rnd/research/researchdivision) -"wnj" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_10) -"wnw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"wnS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 9 +"wnR" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"woy" = ( +/obj/machinery/atmospherics/tvalve/digital/mirrored{ + dir = 8 }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"wnT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/starboard) -"wox" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) +/area/main_map/maintenance/atmospheric_substation/service) "woz" = ( /obj/machinery/door/airlock{ name = "Hydroponics"; @@ -28839,23 +27262,6 @@ /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"woN" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/glasses/welding, -/obj/item/storage/belt/utility, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "woS" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 @@ -28872,32 +27278,29 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"wqs" = ( -/obj/machinery/button/windowtint{ - id = "booth_1"; - pixel_x = -2; - pixel_y = 26 +"wpA" = ( +/obj/structure/railing{ + dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) +"wqV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/carpet, -/area/crew_quarters/bar) -"wqK" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "wqW" = ( /obj/structure/window/reinforced{ dir = 8 @@ -28908,6 +27311,17 @@ /obj/item/storage/briefcase/inflatable, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) +"wrf" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/conveyor{ + dir = 5 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "fuel_belt"; + name = "Fuel Belt" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/processing) "wri" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -28918,15 +27332,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"wrp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/dormitory) "wrq" = ( /obj/machinery/button/remote/airlock{ id = "bathroomlock15"; @@ -28971,36 +27376,16 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"wry" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) "wrH" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/plating, /area/rnd/robotics/mechbay) -"wsc" = ( -/obj/structure/cable{ - icon_state = "1-8" +"wrW" = ( +/obj/machinery/atmospherics/tvalve/digital{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"wsv" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"wsH" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) "wsO" = ( /obj/effect/floor_decal/industrial/danger{ dir = 4 @@ -29008,6 +27393,10 @@ /obj/machinery/atmospherics/pipe/manifold/visible/cyan, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) +"wtk" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/starboard) "wtp" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -29037,6 +27426,40 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/gas_storage) +"wuo" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/structure/sign/department/ass{ + pixel_x = 29 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) +"wuv" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Flight Deck"; + cur_coils = 2; + output_attempt = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/space) +"wuG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) "wvw" = ( /obj/structure/sign/warning/hot_exhaust, /turf/simulated/wall/r_wall, @@ -29047,6 +27470,11 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) +"wvD" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "wvW" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -29062,26 +27490,25 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"wwg" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Cargo Compartment"; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "wwj" = ( /obj/machinery/camera/network/outside{ dir = 1 }, /turf/simulated/floor/reinforced/airless, /area/space) +"wwm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck2) "wwF" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -29106,14 +27533,9 @@ }, /turf/simulated/floor/plating, /area/space) -"wxk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) +"wxj" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/bridge/bunker) "wxo" = ( /obj/machinery/power/apc/direction_bump/south, /obj/structure/cable/green{ @@ -29121,28 +27543,28 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/rdoffice) -"wxr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ +"wxx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/port) +"wyl" = ( +/obj/machinery/light{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 +/obj/effect/floor_decal/borderfloor{ + dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"wyg" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 }, -/obj/machinery/door/airlock/atmos{ - name = "Science Atmospherics Backup"; - req_access = list(24) - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "wyz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -29180,13 +27602,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/storage) -"wzg" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/port) "wzB" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -29208,39 +27623,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"wzU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) -"wAJ" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/sleep/Dorm_11) -"wAM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/space) -"wBu" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) "wBB" = ( /obj/machinery/door/airlock/glass/engineeringatmos{ name = "Damage Control Storage" @@ -29254,27 +27636,16 @@ }, /turf/simulated/floor/reinforced, /area/space) -"wBQ" = ( -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/structure/table/reinforced, -/obj/item/storage/briefcase/inflatable, -/obj/structure/window/reinforced{ +"wCb" = ( +/obj/structure/bed/chair/sofa/black/corner, +/obj/machinery/light/no_nightshift{ dir = 1 }, -/turf/simulated/floor/tiled/steel_ridged, -/area/space) -"wCB" = ( -/obj/machinery/camera/network/engineering, -/turf/simulated/floor/tiled/steel_dirty, -/area/space) -"wDo" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) +/turf/simulated/floor/tiled/monotile, +/area/security/observation) +"wCD" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/quartermaster/qm) "wDx" = ( /obj/machinery/power/terminal{ dir = 1 @@ -29288,34 +27659,35 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_smes) -"wDB" = ( -/obj/effect/debris/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/starboard) -"wDS" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/deck_two) -"wEa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"wDP" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) +/turf/simulated/floor/reinforced, +/area/space) "wEF" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) +"wEL" = ( +/obj/machinery/power/apc/direction_bump/south, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/port_fore) +"wEO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) "wEX" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -29328,31 +27700,16 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"wFk" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "shuttle_hatch"; - name = "Shuttle Rear Hatch" +"wFo" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4 }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "shuttle_hatch"; - name = "Shuttle Rear Hatch"; - pixel_x = -25 +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"wFm" = ( -/turf/simulated/wall/r_wall, -/area/engineering/hallway) -"wFw" = ( -/obj/structure/stairs/spawner/west, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/medical/medbay2) +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/processing) "wFz" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 @@ -29368,25 +27725,6 @@ }, /turf/simulated/floor/carpet/tealcarpet, /area/medical/patient_a) -"wFN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/space) -"wGa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "wGn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -29397,6 +27735,16 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenobiology/xenoflora_storage) +"wGq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/obj/machinery/camera/network/engineering, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/civilian) "wHw" = ( /obj/machinery/door/airlock/engineering{ name = "Science Substation"; @@ -29416,43 +27764,87 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/engine_gas) +"wHB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rift/station/fighter_bay/hangar) +"wHJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "wHS" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"wIB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"wHW" = ( +/obj/machinery/mech_recharger, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/hangar) +"wIF" = ( +/obj/structure/table/steel, +/obj/machinery/ai_status_display{ + pixel_x = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_9) +/turf/simulated/floor/tiled/monotile, +/area/security/observation) "wIJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) -"wIP" = ( -/obj/machinery/door/firedoor{ - dir = 2 +"wIK" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_two) +/turf/simulated/floor/reinforced/phoron, +/area/engineering/atmos/gas_storage) "wIX" = ( /obj/machinery/atmospherics/component/binary/pump{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/processing) +"wJc" = ( +/obj/structure/stairs/spawner/west, +/turf/space, +/area/main_map/hallway/deck2/stairs) "wJE" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/glass/reinforced, @@ -29475,12 +27867,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"wKb" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft/starboard) "wKl" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -29500,44 +27886,43 @@ }, /turf/simulated/floor/reinforced, /area/space) -"wLX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"wLq" = ( +/obj/landmark{ + name = "lightsout" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/button/remote/airlock{ - id = "dorm4"; - name = "Room 4 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"wLY" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) +/turf/simulated/floor/tiled/techmaint, +/area/quartermaster/warehouse) "wMe" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/carpet/tealcarpet, /area/medical/patient_d) -"wMm" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 4; - name = "Command Waste Buffer"; - start_pressure = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) "wMs" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) +"wMH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) +"wMZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "wNj" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable{ @@ -29551,6 +27936,19 @@ }, /turf/simulated/floor/tiled/techmaint, /area/crew_quarters/bar) +"wNo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) +"wNv" = ( +/obj/structure/railing, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2/stairs) "wNw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -29563,6 +27961,22 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) +"wNx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"wNB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) "wNI" = ( /obj/structure/cable{ icon_state = "0-8" @@ -29582,6 +27996,23 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) +"wOR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "wOV" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -29623,8 +28054,23 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"wQp" = ( -/turf/simulated/wall/rshull, +"wPV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"wQo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, /area/space) "wQt" = ( /obj/structure/bed/chair/office/light, @@ -29636,10 +28082,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"wQV" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) "wQZ" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -29652,6 +28094,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) +"wRy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) "wRF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -29667,30 +28117,6 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool/changing_room) -"wSc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) -"wSd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) "wSH" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -29705,94 +28131,78 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/atmos/storage) -"wSY" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_eva) +"wSR" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/security) "wTg" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_smes) -"wTi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) "wTj" = ( /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) +"wTr" = ( +/obj/machinery/computer/timeclock/premade/east, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) "wTx" = ( /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) -"wUj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"wUx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) -"wUB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/sign/directions/roomnum{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "wUD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/plating, /area/space) -"wVg" = ( -/obj/machinery/atmospherics/component/trinary/filter/mirrored{ - dir = 1; - filtering = "n2" +"wUU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/gas_storage) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "wVi" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 6 }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"wVm" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"wVB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "wVC" = ( /turf/simulated/floor/plating, /area/engineering/hallway) +"wVH" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2/b) +"wVK" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) +"wVX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) +"wWg" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "wWo" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -29805,17 +28215,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) -"wWu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) "wWB" = ( /obj/structure/railing{ dir = 8 @@ -29836,12 +28235,6 @@ /obj/map_helper/airlock/door/int_door, /turf/simulated/floor/plating, /area/engineering/engine_eva) -"wXq" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) "wXN" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -29850,6 +28243,25 @@ /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) +"wXO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"wXY" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar_backroom) "wXZ" = ( /obj/structure/bed/chair/sofa/black/left, /obj/effect/floor_decal/spline/fancy/wood{ @@ -29866,34 +28278,16 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"wYE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) "wYV" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"wZj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"wZZ" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_two) +"wZn" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) "xak" = ( /obj/structure/cable/green, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -29909,29 +28303,15 @@ /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/tiled/white, /area/medical/patient_b) -"xbb" = ( -/obj/machinery/door/airlock/glass/security{ - name = "Observation"; - req_access = list(2) +"xbe" = ( +/obj/mecha/combat/fighter/pinnace/loaded{ + dir = 1 }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/portables_connector{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) -"xbc" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) "xbl" = ( /obj/machinery/atmospherics/component/unary/heat_exchanger{ dir = 4 @@ -29955,63 +28335,20 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) -"xca" = ( +"xbV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" + dir = 9 }, /turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"xci" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/command) +/area/main_map/maintenance/atmospheric_substation/medical) "xcp" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, /area/crew_quarters/pool/changing_room) -"xcA" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/toilet) -"xdI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"xdO" = ( -/turf/simulated/wall, -/area/maintenance/deck_two/starboard) -"xef" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/deck2{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/starboard) "xeg" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -30022,79 +28359,27 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/space) -"xeh" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"xeG" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"xev" = ( +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/deck_two/aft/starboard) +"xeW" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/effect/spider/stickyweb/dark, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) +"xfh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) +"xgk" = ( +/obj/structure/sign/deck2{ + pixel_x = 32 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"xeV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) -"xfi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"xgd" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"xgg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techmaint, -/area/space) -"xgj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/camera/network/engineering, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/central_two) +/area/main_map/maintenance/deck_two) "xgn" = ( /obj/structure/curtain/open/shower, /obj/structure/window/reinforced{ @@ -30126,9 +28411,15 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"xgT" = ( -/turf/simulated/floor/glass/reinforced, -/area/hallway/primary/central_two) +"xgP" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "hangar_pad"; + name = "Hangar Bay Blast Door" + }, +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) "xhx" = ( /obj/structure/closet/secure_closet/CMO, /obj/item/cmo_disk_holder, @@ -30156,14 +28447,43 @@ /obj/item/retail_scanner/medical, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/cmo) -"xhJ" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_two/forward/port) -"xhQ" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) +"xhy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft/starboard) +"xhH" = ( +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck2) +"xhI" = ( +/obj/machinery/button/windowtint{ + id = "booth_1"; + pixel_x = -2; + pixel_y = 26 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/carpet, +/area/crew_quarters/bar) +"xhN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) "xhY" = ( /obj/structure/table/reinforced, /obj/item/storage/box/lights/mixed, @@ -30186,16 +28506,15 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/hallway) -"xiE" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm1"; - name = "Room 1 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 +"xjy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/starboard) "xjK" = ( /turf/simulated/floor/carpet, /area/medical/patient_wing) @@ -30205,6 +28524,15 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/gas_storage) +"xke" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/flight_deck) "xlg" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 8 @@ -30214,15 +28542,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"xlD" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"xlx" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/structure/table/woodentable, -/obj/structure/flora/pottedplant/largebush, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hallway) "xlM" = ( /obj/machinery/computer/power_monitor, /obj/effect/floor_decal/corner/yellow{ @@ -30242,15 +28572,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/open, /area/security/brig) -"xmg" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft) "xmh" = ( /obj/structure/railing{ dir = 1 @@ -30260,18 +28581,9 @@ }, /turf/simulated/open, /area/security/brig) -"xmB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) +"xmm" = ( +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft) "xmG" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 4 @@ -30286,6 +28598,17 @@ "xmY" = ( /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) +"xna" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) "xnp" = ( /obj/structure/window/reinforced{ dir = 8 @@ -30305,19 +28628,12 @@ /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"xnM" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/bar) "xob" = ( /obj/machinery/camera/network/research{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"xoe" = ( -/obj/structure/catwalk, -/turf/simulated/open, -/area/maintenance/deck_two/forward/starboard) "xof" = ( /obj/machinery/computer/ship/navigation/telescreen{ pixel_y = -37 @@ -30330,6 +28646,15 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) +"xoo" = ( +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/fitness) "xos" = ( /obj/machinery/atmospherics/component/unary/heat_exchanger{ dir = 8 @@ -30342,17 +28667,16 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/atmos) -"xoM" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ +"xoy" = ( +/obj/structure/railing{ dir = 8 }, -/obj/machinery/airlock_sensor{ - dir = 8; - id_tag = "deck1_airlock2"; - pixel_x = 22 +/obj/structure/catwalk, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/hangar) "xpa" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -30361,9 +28685,35 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/gas_storage) +"xpc" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/aft/starboard) "xph" = ( /turf/simulated/wall/r_wall, /area/engineering/atmos/processing) +"xpt" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/conveyor{ + dir = 9 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "fuel_belt"; + name = "Fuel Belt" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/processing) "xpI" = ( /obj/machinery/holopad, /obj/structure/cable/cyan{ @@ -30389,27 +28739,12 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/showers) -"xqF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 +"xrg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/wall/rshull, +/turf/simulated/floor/tiled/techfloor, /area/space) -"xqR" = ( -/turf/simulated/open, -/area/maintenance/deck_two/aft/port) -"xrj" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "xrk" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/steel_grid, @@ -30439,28 +28774,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"xsK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"xtB" = ( /obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/research) -"xsS" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"xtg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/aft) "xtI" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 @@ -30468,12 +28790,6 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"xtQ" = ( -/obj/structure/sign/deck2{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/forward/port) "xul" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -30493,12 +28809,38 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"xuV" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 +"xuL" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) +"xuZ" = ( +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/space/basic, /area/space) +"xvb" = ( +/obj/structure/stairs/spawner/west, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) +"xvv" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/aft/starboard) "xvA" = ( /obj/structure/railing{ dir = 8 @@ -30508,6 +28850,10 @@ }, /turf/simulated/open, /area/security/brig) +"xvV" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/forward/port) "xws" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/lime/border, @@ -30517,38 +28863,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xww" = ( -/obj/machinery/door/airlock{ - name = "Secondary Janitorial Closet"; - req_access = list(26) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"xwJ" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/stairs/spawner/west, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) "xwX" = ( /obj/structure/noticeboard, /turf/simulated/wall, /area/space) -"xxg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, +"xxd" = ( +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) +/area/main_map/maintenance/deck_two/aft) "xxt" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ @@ -30569,20 +28891,31 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"xxV" = ( -/obj/structure/catwalk, -/obj/structure/ladder/updown, -/turf/simulated/open, -/area/maintenance/deck_two/aft) +"xxR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"xyr" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck2) "xyA" = ( /turf/simulated/floor/reinforced/airmix, /area/engineering/atmos/gas_storage) -"xyC" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward) "xyL" = ( /obj/machinery/door/airlock/glass_external, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -30606,71 +28939,33 @@ "xyQ" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) +"xyS" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two) "xyV" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/shield_gen) -"xzy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) "xzC" = ( /obj/structure/railing, /turf/simulated/open, /area/crew_quarters/recreation_area_hallway) -"xzH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"xzO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/starboard) -"xAi" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/flashlight/maglight, -/obj/item/flashlight/maglight, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/monotile, -/area/space) +"xAn" = ( +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/panic_bunker) "xAr" = ( /turf/simulated/floor/tiled/monotile, /area/space) -"xAH" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/steel_ridged, -/area/space) -"xAQ" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/bio_suit/anomaly, -/obj/item/clothing/head/bio_hood/anomaly, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) "xAU" = ( /obj/structure/table/reinforced, /obj/machinery/photocopier/faxmachine{ @@ -30686,28 +28981,6 @@ /obj/structure/railing, /turf/simulated/open, /area/rnd/rdoffice) -"xBi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/aft/starboard) -"xCn" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) "xCL" = ( /obj/machinery/door/firedoor{ dir = 8 @@ -30718,27 +28991,12 @@ /obj/machinery/door/airlock/hatch, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"xCT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ +"xDB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"xDe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/turf/simulated/floor/wood, +/area/rift/station/fighter_bay) "xDN" = ( /obj/structure/cable/yellow{ icon_state = "0-2" @@ -30761,31 +29019,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/gas_storage) -"xEs" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "dorm11"; - name = "Dorm 11" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_11) -"xEx" = ( -/obj/machinery/disposal, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/storage) "xEG" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 @@ -30808,23 +29041,22 @@ }, /turf/simulated/floor/carpet/tealcarpet, /area/medical/patient_b) -"xGD" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two/forward/port) -"xGO" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_8) +"xGo" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/main_map/maintenance/deck_two/aft/starboard) "xGQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/space) +"xHm" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck2/port_fore) "xHy" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/reinforced/airless, @@ -30846,43 +29078,51 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"xHR" = ( -/obj/machinery/suspension_gen, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"xIe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/cargo) "xIk" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 9 }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) -"xIm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue, +"xIl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/service) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "xJo" = ( /obj/structure/stairs/spawner/east, /obj/structure/railing, /turf/simulated/floor/plating, /area/medical/medbay2) -"xKx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 +"xJE" = ( +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/space) +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward/starboard) +"xJS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) +"xKM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) +"xLb" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) "xLn" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -30910,12 +29150,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"xLG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "xLZ" = ( /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 @@ -30924,20 +29158,23 @@ /obj/machinery/power/apc/direction_bump/west, /turf/simulated/floor/tiled, /area/crew_quarters/fitness) -"xMj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/techmaint, +"xMe" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, /area/space) "xMk" = ( /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) +"xMr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/forward/port) "xMu" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -30945,6 +29182,9 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/engineering/hallway) +"xMv" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/medbay2) "xMW" = ( /obj/machinery/computer/security/mining{ dir = 4 @@ -30961,27 +29201,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"xNT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) "xNW" = ( /obj/structure/closet/crate/nanotrasen, /turf/simulated/floor/tiled/techmaint, @@ -31028,31 +29247,15 @@ /obj/machinery/power/apc/super/critical/north_bump, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"xOL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"xPj" = ( +/obj{ + name = "---Merge conflict marker---" }, -/obj/structure/mirror{ - pixel_x = -28 +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"xPi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/space/basic, /area/space) "xPl" = ( /obj/structure/closet/secure_closet/freezer/fridge{ @@ -31060,15 +29263,6 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"xPm" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) "xPo" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -31094,13 +29288,12 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/atmos/gas_storage) -"xPM" = ( +"xPN" = ( /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/storage) +/turf/simulated/floor/plating, +/area/maintenance/substation/flight_deck) "xPY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -31118,39 +29311,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/hallway) -"xQe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 - }, +"xQB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/atmospheric_substation/security) -"xQH" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck2) +"xQE" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/main_map/maintenance/atmospheric_substation/medical) "xQM" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/reinforced/airless, /area/space) -"xQN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_two) "xQO" = ( /obj/machinery/atmospherics/component/unary/vent_pump{ dir = 4; @@ -31172,18 +29346,6 @@ }, /turf/simulated/open, /area/engineering/hallway) -"xRd" = ( -/obj/machinery/door/airlock/maintenance/sec, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/space) "xRi" = ( /turf/simulated/floor/reinforced, /area/space) @@ -31198,6 +29360,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) +"xRz" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) "xRG" = ( /obj/structure/railing{ dir = 8 @@ -31207,14 +29372,16 @@ }, /turf/simulated/open, /area/quartermaster/hallway) -"xSt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "2-8" +"xRU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/area/rift/station/fighter_bay/hangar) "xSH" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/medical{ @@ -31229,14 +29396,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) -"xTp" = ( -/obj/machinery/camera/network/engineering, -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "Reserve Fuel" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) "xUs" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 10 @@ -31255,12 +29414,33 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/engineering/storage) -"xUN" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 +"xUS" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "mix_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/sleep/Dorm_6) +/turf/simulated/floor/reinforced/airless, +/area/engineering/atmos/processing) +"xVc" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_two/forward) "xVE" = ( /obj/structure/cable{ icon_state = "4-8" @@ -31273,14 +29453,31 @@ }, /turf/simulated/floor/tiled, /area/maintenance/tool_storage) -"xXe" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 +"xWA" = ( +/obj{ + name = "---Merge conflict marker---" }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_10) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/catwalk, +/turf/space/basic, +/area/space) +"xWO" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "xXi" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -31300,9 +29497,24 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"xXx" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_two/forward/starboard) +"xXG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "xXH" = ( /obj/structure/bed/chair/sofa/black/right{ dir = 1 @@ -31310,19 +29522,33 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"xXZ" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/space) "xYo" = ( /obj/structure/catwalk, /turf/simulated/open, /area/space) +"xYr" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) +"xYZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/cargo) +"xZp" = ( +/obj/item/flashlight/lamp, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/monotile, +/area/security/observation) "xZu" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -31350,10 +29576,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) -"yal" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_1) "yao" = ( /turf/simulated/floor/plating, /area/space) @@ -31363,12 +29585,21 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_gas) -"yaS" = ( -/obj/structure/railing{ - dir = 1 +"yaA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/turf/simulated/open, -/area/maintenance/deck_two/aft/starboard) +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/rift/station/fighter_bay) "yaZ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -31377,28 +29608,17 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"ybg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"ybR" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 +/obj/structure/catwalk, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/fitness) -"ybB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/turf/simulated/floor/plating, +/area/rift/station/fighter_bay/maintenance) "ycI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -31407,6 +29627,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research/researchdivision) +"ycY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two/starboard) "ydb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -31419,12 +29645,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/hallway) -"ydl" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area_hallway) "ydn" = ( /obj/machinery/camera/network/engineering{ dir = 4 @@ -31440,6 +29660,33 @@ /obj/machinery/mech_recharger, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/mechbay) +"yev" = ( +/obj/structure/sign/deck/second{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/lab) +"yez" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rift/station/fighter_bay/transport_tunnel) +"yeQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_two) "yeW" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/door/firedoor/glass, @@ -31452,29 +29699,10 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"yfw" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - id = "dorm3"; - name = "Room 3 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"yfC" = ( -/obj/effect/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"yfD" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) +"yfF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/research) "yfI" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -31490,14 +29718,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"yfN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "2-8" +"yfW" = ( +/obj/machinery/air_alarm{ + pixel_y = 24 }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/underone) "yfZ" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/light/no_nightshift{ @@ -31505,52 +29731,29 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_gas) -"ygK" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_two) -"ygL" = ( -/obj/machinery/door/firedoor, +"ygP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/ai) +"yhH" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/door/airlock/voidcraft{ - name = "Emergency Bunker" - }, -/turf/simulated/floor/reinforced, -/area/maintenance/panic_bunker/two) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_two/port) "yhN" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/reinforced/oxygen, /area/engineering/atmos/gas_storage) -"yhU" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"yiG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +"yiy" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "hangar_maint"; + name = "Hangar Maintenance Shutter" }, /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/rift/station/fighter_bay/maintenance) "yiN" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 4 @@ -31560,20 +29763,19 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) -"yjj" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "shuttle_outbound" +"yiW" = ( +/obj/machinery/door/airlock/atmos{ + name = "Medical Atmospherics Backup"; + req_access = list(24) }, -/obj/structure/plasticflaps, -/obj/effect/floor_decal/spline/plain{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "yjG" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -31589,6 +29791,9 @@ }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos) +"ykb" = ( +/turf/simulated/wall/prepainted/civilian, +/area/hydroponics) "yke" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 6 @@ -31610,58 +29815,18 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/recreation_area_hallway) -"ykz" = ( -/obj/machinery/camera/network/research{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/space) -"ykB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, +"ymh" = ( /obj/structure/cable{ - icon_state = "2-8" + icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"ylk" = ( -/obj/structure/inflatable/door, -/turf/simulated/floor/plating, -/area/maintenance/deck_two/aft) -"ylq" = ( -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"ylC" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/tiled/techmaint, -/area/space) -"ylF" = ( -/obj/item/coin/silver, -/obj/item/coin/silver, -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/cartridge/quartermaster, -/obj/structure/table/hardwoodtable, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) +/area/main_map/maintenance/deck_two/starboard) (1,1,1) = {" hts @@ -31739,19 +29904,19 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -31933,19 +30098,19 @@ hts hts hts hts -hts -hts -rHE -rHE -rHE -rHE -aIQ -rHE -mRB -rXp -bih -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -32118,28 +30283,28 @@ hts hts hts hts -bxC -iga -hSI -aDB -hSI -hSI -tCt -hts -hts -hts -hts -rHE -gXI -gXI -bek -mEE -akZ -mRB -jhp -jDS +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -32312,28 +30477,28 @@ hts hts hts hts -eNa -mRB -bQO -rfd -pxq -mRB -mRB -hts -hts -hts -hts -rHE -wCB -fAe -fAe -poa -kDW -mRB -jYr -cVU +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -32416,21 +30581,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +dWc +dWc +qCr +bvd +bvd +bvd +xgP +xgP +xgP +jxf +bvd +bvd +bvd +qCr +qcD hts hts hts @@ -32506,28 +30671,28 @@ hts hts hts hts -mRB -mRB -hEB -uzv -msD -mRB -mRB -hts -hts -hts -hts -rHE -lmB -fAe -fAe -ufz -uHV -uHV -nab -cVU +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -32610,21 +30775,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +dWc +dWc +dWc +bvd +oXS +gcE +pBP +wHB +wuG +mBU +dwf +lHC +bvd +qcD +qcD hts hts hts @@ -32700,28 +30865,13 @@ hts hts hts hts -mRB -lSL -xfi -vPp -vea -fBZ -mRB -hts -hts -hts -hts -rHE -jeR -jeR -jeR -sBf -sBf -hpE -lSq -cVU -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts qVH @@ -32739,16 +30889,31 @@ qVH qVH hts hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -32804,21 +30969,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +dWc +dWc +dWc +bvd +wHW +nby +lxY +gPE +bao +mYC +nby +kYq +bvd +qcD +qcD hts hts hts @@ -32894,28 +31059,13 @@ hts hts hts hts -mRB -lSL -guM -elX -uzv -fBZ -mRB -hts -hts -hts -hts -rHE -gIR -urp -oXt -sBf -sBf -bwG -pwI -cVU -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts qVH @@ -32933,16 +31083,31 @@ qVH qVH hts hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -32998,21 +31163,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +dWc +dWc +dWc +bvd +myB +tHq +owg +qbv +eUr +mFO +tHq +iKZ +bvd +ngt +jov hts hts hts @@ -33088,28 +31253,13 @@ hts hts hts hts -mRB -mRB -xTp -iso -elX -mRB -mRB -hts -hts -hts -hts -rHE -sBf -sBf -sBf -jHJ -sBf -mld -vgc -cVU -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts qVH @@ -33127,16 +31277,31 @@ qVH qVH hts hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -33192,21 +31357,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +dWc +dWc +dWc +bvd +fqW +dlw +veQ +mWX +pmc +tbN +pGD +wpA +bvd +smm +pgv hts hts hts @@ -33282,28 +31447,28 @@ hts hts hts hts -amW -mRB -lwv -snI -msD -mRB -hts -hts -hts -hts -hts -rHE -hfM -sBf -rcy -dAR -tMX -lmH -jbQ -tnt +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts +qVH +qVH +qVH +ihZ +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts qVH @@ -33320,35 +31485,35 @@ qVH qVH qVH hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -mRB -mRB -mRB -mRB -mRB -mRB -mRB +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -33386,21 +31551,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +dWc +dWc +dWc +bvd +wHW +cde +lxY +fRq +bao +mYC +nby +vKf +bvd +ayD +aWG hts hts hts @@ -33485,19 +31650,19 @@ hts hts hts hts -hts -hts -kcH -sBf -xuV -qNq -frI -xzH -xAH -cRQ -cQY -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts qVH @@ -33514,35 +31679,35 @@ qVH qVH qVH hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -onu -gnq -qkh -qfB -qCm -eud -sCO +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -33580,21 +31745,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +dWc +dWc +dWc +bvd +iKZ +tHq +owg +qbv +eUr +mFO +tHq +iKZ +bvd +uwS +osk hts hts hts @@ -33679,19 +31844,19 @@ hts hts hts hts -hts -hts -eov -lJn -dxg -qNq -frI -xzH -xAH -uFu -aNp -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts qVH @@ -33708,35 +31873,35 @@ qVH qVH qVH hts -hts -hts -hts -hts -hts -fme -mRB -mRB -mRB -mRB -mRB -mRB -mRB -hts -hts -hts -hts -hts -hts -hts -hts -hts -iIg -uDd -urg -sRD -aSL -nMV -mRB +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -33774,21 +31939,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +mRM +mRM +mRM +bvd +fqW +fuz +aaX +xRU +mwX +oaA +bPl +wpA +bvd +ngt +oKI hts hts hts @@ -33873,19 +32038,19 @@ hts hts hts hts -hts -hts -kcH -sBf -ylC -wBQ -nLH -jJb -qXT -rlN -yao -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts qVH @@ -33902,35 +32067,35 @@ qVH qVH qVH hts -hts -hts -hts -hts -hts -oTS -izt -uSd -eop -sVE -xPi -iOh -aoe -hts -hts -hts -hts -hts -hts -hts -hts -hts -mRB -fTc -tFw -vSj -aSL -xDe -sCO +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +vgx +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -33968,21 +32133,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +kSL +yez +iAD +dvw +iGM +gEs +gEs +vUY +bao +mYC +nby +eKD +bvd +awU +iaK hts hts hts @@ -34067,19 +32232,19 @@ hts hts hts hts -hts -hts -rHE -jFm -sBf -qNq -frI -xzH -xAH -uFu -blv -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts qVH @@ -34101,30 +32266,30 @@ hts hts hts hts -dKh -sBf -dyD -knd -pfL -xoM -qQD -amW -hts -hts -hts -hts -hts -hts -hts -hts -hts -mRB -dEj -iQK -wnS -iml -kwT -mRB +qfO +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -34162,21 +32327,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +kDH +kDH +akU +vpR +uXj +eUr +eUr +eVH +eUr +mFO +tHq +iKZ +bvd +yfW +iaK hts hts hts @@ -34257,21 +32422,21 @@ qVH hts hts hts -kLI +frk hts hts hts hts hts -rHE -sEG -sBf -qNq -frI -nrH -xAH -cQY -vzG +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -34295,30 +32460,30 @@ hts hts hts hts -oCa -sBf -gVQ -eaU -mRB -mRB -mRB -ddA -hts -hts -hts -hts -hts -hts -hts -hts -hts -mRB -mRB -sCO -mRB -sCO -mRB -mRB +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -34347,22 +32512,7 @@ qVH qVH qVH hts -kLI -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +frk hts hts hts @@ -34371,6 +32521,21 @@ hts hts hts hts +mRM +mRM +mRM +bvd +nLn +plR +rHG +iiE +pmc +gwA +xoy +nnE +bvd +awU +ttq hts hts hts @@ -34457,15 +32622,15 @@ hts hts hts hts -rHE -apF -sBf -xLG -rRD -rRD -xLG -iTX -rUJ +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -34489,30 +32654,30 @@ hts hts hts hts -vQa -urp -pBA -pcx -mRB -rTg -mmU -ddA -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -34550,21 +32715,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +lcQ +oNB +jjh +tLr +tLr +tLr +tLr +iXF +ijz +tLr +tLr +tLr +tLr +tLr +fKt hts hts hts @@ -34651,15 +32816,15 @@ hts hts hts hts -rHE -htH -htH -sBf -sBf -iUN -hdc -rHE -kqg +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -34744,21 +32909,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +uYV +xDB +vSq +oQe +yaA +cZF +fXG +pJQ +vFD +dLD +oXz +vGh +vnG +vAI +iKu hts hts hts @@ -34845,15 +33010,15 @@ hts hts hts hts -rHE -htH -htH -aXH -aXH -hwo -jUz -rHE -yao +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -34938,21 +33103,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +npU +jHU +fmB +kyD +xXG +qHT +vsd +jPS +xIl +vzk +axI +tAl +wOR +kiL +fFJ hts hts hts @@ -35039,15 +33204,15 @@ hts hts hts hts -rHE -rHE -rHE -mRB -mRB -rHE -rHE -rHE -yao +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -35111,12 +33276,12 @@ qVH qVH qVH qVH -qVH -qVH -qVH -qVH -qVH -qVH +xMe +bjK +uVj +snA +bjK +uVj qVH qVH qVH @@ -35132,21 +33297,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +eaY +dbf +oUq +tLr +tLr +iKu +iKu +hRJ +vLo +iKu +uFp +tLr +upk +pzv +iKu hts hts hts @@ -35305,12 +33470,12 @@ qVH qVH qVH qVH -qVH -qVH -qVH -qVH -qVH -qVH +xMe +xRi +xRi +snA +xRi +xRi qVH qVH qVH @@ -35326,21 +33491,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +ceU +jdk +iPI +txB +uZZ +dUW +voJ +uhf +fCj +fCj +mWL +yiy +rpp +uHa +rrT hts hts hts @@ -35499,12 +33664,12 @@ qVH qVH qVH hts -hts -hts -hts -hts -hts -hts +wDP +gCz +gCz +mhr +gCz +gCz hts hts hts @@ -35520,21 +33685,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +ffE +tcR +ueK +iKb +uZZ +oYb +vAU +oWO +pCl +pCl +nmd +yiy +sRI +rFF +rrT hts hts hts @@ -35650,9 +33815,9 @@ pIA pIA mDY mDY -pIA -pIA -baI +fPv +fPv +drF syq noL noL @@ -35668,9 +33833,9 @@ noL noL noL syq -bgG -bgG -bgG +rff +rff +rff qWl qWl mRB @@ -35714,21 +33879,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +oNi +fmj +qTs +pZT +uZZ +rOH +kDj +pFc +ihO +nzx +ybR +uZZ +dBx +bwo +fKt hts hts hts @@ -35819,9 +33984,9 @@ hts hts hts hts -uIJ -fGm -xSt +qVH +qVH +qVH hts hts hts @@ -35841,10 +34006,10 @@ pIA pIA mDY mDY -pIA -pIA -pIA -pIA +fPv +fPv +fPv +fPv vfy lXk syq @@ -35864,10 +34029,10 @@ noL syq nbh nbh -bgG -bgG -bgG -bgG +rff +rff +rff +rff qWl qWl mRB @@ -35908,21 +34073,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +tLr +tLr +iid +tLr +uZZ +okh +bFA +lQf +fCj +nPa +lKT +uZZ +wyl +oGf +fKt hts hts hts @@ -36013,9 +34178,9 @@ hts hts hts hts -nDc -qAV -jFY +qVH +qVH +qVH hts hts hts @@ -36034,8 +34199,8 @@ mDY mDY pIA pIA -pIA -pIA +fPv +fPv tFj omT tFj @@ -36061,10 +34226,10 @@ nbh nbh nbh nbh -bgG -bgG -bgG -bgG +rff +rff +rff +rff qWl qWl mRB @@ -36102,21 +34267,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +tLr +vgE +pJJ +oHN +uZZ +nYh +oUw +nel +wiN +veg +veg +uZZ +tLr +tLr +fKt hts hts hts @@ -36207,9 +34372,9 @@ hts hts hts hts -jVs -uKW -lxB +qVH +qVH +qVH hts hts hts @@ -36223,12 +34388,12 @@ xph xph mDY mDY -pIA -pIA -pIA -pIA -pIA -pIA +fPv +fPv +fPv +fPv +fPv +fPv xmY iit mvU @@ -36255,13 +34420,13 @@ nbh nbh nbh uIX -bgG +rff uIX uIX -bgG -bgG -bgG -bgG +rff +rff +rff +rff qWl qWl mRB @@ -36296,21 +34461,21 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +tLr +tLr +tLr +tLr +uZZ +uZZ +uZZ +uZZ +uZZ +uZZ +uZZ +uZZ +nju +hKW +uQr hts hts hts @@ -36388,22 +34553,22 @@ hts hts kLI kLI -mRB -mRB -mRB -mRB -mRB -mRB -mRB +oXy +oXy +oXy +oXy +oXy +oXy +oXy kLI kLI hts hts hts hts -rVF -pCa -pNv +qVH +qVH +qVH hts hts hts @@ -36415,9 +34580,9 @@ xph dCI dCI xph -pIA -pIA -pIA +fPv +fPv +fPv qKz sSn gRY @@ -36455,10 +34620,10 @@ jPY jPY jPY cLh -bgG -bgG -bgG -bgG +rff +rff +rff +rff qWl qWl mRB @@ -36478,13 +34643,13 @@ hts hts kLI kLI -lft -lft -lft -lft -lft -lft -lft +rkw +xGo +hfU +hfU +hfU +hfU +hfU kLI kLI hts @@ -36582,14 +34747,14 @@ kLI kLI kLI kLI -mRB -yao -yao -bRO -bRO -bRO -mRB -mRB +oXy +dbv +dbv +ePY +ePY +ePY +oXy +oXy kLI kLI kLI @@ -36605,11 +34770,11 @@ xph xph dCI dCI -xph -xph -xph -xph -pIA +cRq +cRq +cRq +cRq +fPv tid woS iLu @@ -36621,7 +34786,7 @@ jXq jXq jXq iLO -pIA +fPv gQA syq noL @@ -36643,7 +34808,7 @@ nbh nbh foH jPY -bgG +rff lYw lYw lYw @@ -36652,10 +34817,10 @@ wdx jPY axH nbh -bgG -bgG -bgG -bgG +rff +rff +rff +rff qWl qWl mRB @@ -36668,17 +34833,17 @@ gCv hts hts gCv -kLI -kLI -kLI -lft -lft -vJA -vJA -vJA -nqQ -nqQ -lft +vdY +clM +clM +smB +smB +xGo +nus +nus +aZS +aZS +hfU kLI kLI kLI @@ -36776,15 +34941,15 @@ kLI kLI kLI kLI -mRB -bRO -bRO -bRO -bRO -bRO -bRO -mRB -mRB +oXy +ePY +ePY +ePY +ePY +ePY +ePY +oXy +oXy kLI kLI kLI @@ -36796,14 +34961,14 @@ kLI xph dCI dCI -xph -xph -xph -xph +cRq +cRq +cRq +cRq kao snU kao -pIA +fPv tid niu gpN @@ -36837,22 +35002,22 @@ nbh nbh foH jPY -bgG +rff nbh nbh nbh nbh -bgG +rff jPY axH nbh nbh nbh -bgG -bgG -bgG -bgG -bgG +rff +rff +rff +rff +rff qWl qWl mRB @@ -36862,17 +35027,17 @@ kLI kLI kLI kLI -kLI -kLI -lft -lft -vJA -vJA -vJA -vJA -rbs -cTQ -lft +vdY +xrg +pWd +pWd +fPt +xGo +nus +nus +ncT +rvh +hfU kLI kLI kLI @@ -36970,16 +35135,16 @@ kLI kLI kLI kLI -mRB -bRO -bRO -bRO -bRO -bRO -bRO -bRO -mRB -mRB +oXy +ePY +ePY +ePY +ePY +ePY +ePY +ePY +oXy +oXy kLI kLI kLI @@ -36987,17 +35152,17 @@ kLI kLI kLI kLI -xph -xph -xph -xph +cRq +cRq +cRq +cRq kao kao kao eFZ tUW pAg -pIA +fPv tid niu xul @@ -37031,24 +35196,24 @@ nbh nbh foH fuY -bgG +rff nbh nbh nbh nbh -bgG +rff jPY axH nbh nbh nbh -bgG +rff nbh nbh nbh -bgG -bgG -bgG +rff +rff +rff mRB kLI kLI @@ -37056,17 +35221,17 @@ kLI kLI kLI kLI -kLI -lft -lft -vJA -vJA -vJA -vJA -vJA -ffp -cTQ -lft +vdY +esP +esP +esP +esP +xGo +nus +nus +xvv +rvh +hfU kLI kLI kLI @@ -37164,34 +35329,34 @@ kLI kLI kLI kLI -mRB -mRB -ftQ -sBf -sBf -ftQ -mRB -mRB -mRB -mRB -mRB -mRB -mRB -mRB -xph -xph -xph -xph +oXy +oXy +iuS +cVE +cVE +iuS +oXy +oXy +oXy +oXy +oXy +oXy +oXy +oXy +cRq +cRq +cRq +cRq qBx qBx -xph +cRq gun uSB aUT bTC dDV wIJ -pIA +fPv tid iLu roN @@ -37225,42 +35390,42 @@ nbh nbh foH jPY -bgG +rff nbh nbh nbh nbh -bgG +rff jPY axH -bgG +rff nbh nbh -bgG +rff nbh nbh nbh nbh nbh -bgG -lft -lft -lft -lft -lft -lft -lft -lft -lft -lft -lft -lft -lft -lft -lft -lft -eHb -lft +rff +hfU +hfU +hfU +hfU +hfU +hfU +xGo +xGo +esP +esP +esP +dPW +xGo +xGo +xGo +hfU +ujj +hfU kLI kLI kLI @@ -37358,34 +35523,34 @@ kLI kLI kLI kLI -mRB -sBf -sBf -sBf -sBf -sBf -sBf -sBf -sBf -sBf -sBf -sBf -sBf -sNM -xph +oXy +cVE +cVE +cVE +cVE +cVE +cVE +cVE +cVE +cVE +cVE +cVE +cVE +hrE +cRq lve rlo lve kEj mTI -xph +cRq pHj bTC -nXu +uOj mqg wIX -odO -pIA +wFo +fPv geQ iaC hWE @@ -37419,42 +35584,42 @@ nbh nbh foH jPY -bgG +rff nbh nbh nbh nbh -bgG +rff jPY lLw -bIO +huz uIX uIX -bgG +rff uIX nbh nbh nbh nbh -bgG -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -lft -qHi -qHi -qHi -nqQ -lft +rff +shT +shT +shT +shT +shT +shT +xGo +esP +esP +esP +esP +bFQ +aYx +xbe +xGo +shT +aZS +hfU kLI kLI kLI @@ -37552,20 +35717,20 @@ kLI kLI kLI wwj -mRB -sBf -sBf -sBf -sBf -sBf -sBf -sBf -sBf -sBf -sBf -sBf -sBf -sBf +oXy +lrZ +lrZ +lrZ +lrZ +lrZ +lrZ +lrZ +lrZ +lrZ +lrZ +lrZ +lrZ +cVE bbH lve lve @@ -37573,13 +35738,13 @@ lve gnl fVM rnN -bTC -bTC -wIX -odO +pwZ +pwZ +ehX +aHa dDV pAg -pIA +fPv dKT oqD vyK @@ -37613,12 +35778,12 @@ nbh nbh foH jPY -bgG +rff nbh nbh nbh nbh -bgG +rff jPY jPY jPY @@ -37630,25 +35795,25 @@ axH nbh nbh nbh -bgG -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -lft -qHi -qHi -qHi -nqQ -lft +rff +shT +shT +shT +shT +shT +shT +xGo +esP +esP +esP +esP +bFQ +aZS +aZS +xGo +shT +aZS +hfU kLI kLI kLI @@ -37746,46 +35911,46 @@ kLI kLI kLI kLI -mRB -sBf -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -sBf -xph -lve -qtS +ryc +bUF +pSb +ryc +ryc +flL +flL +flL +flL +ryc +ryc +ryc +lrZ +cVE +cRq lve +ksF +kWl lEK lEK -xph -bTC +cRq +gcG tFZ nXu -jHV -oct -mqg -rJx -qzN -gpN -gpN -lNG -lNG -gZA +wgQ +gvq +skY +tDB +ajq +dpw +dpw +dhN +dhN +fsp efa jXq jXq cGZ uvN -pIA +fPv tjj syq noL @@ -37802,47 +35967,47 @@ noL noL noL syq -bgG -bgG -bgG -bgG +rff +rff +rff +rff bfJ -bgG +rff nbh nbh nbh nbh -bgG +rff jPY xvA lYw lYw lYw -bgG +rff jPY axH nbh nbh nbh -bgG -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -lft -qHi -qHi -qHi -nqQ -lft +rff +shT +shT +shT +shT +shT +shT +xGo +esP +esP +esP +esP +nOs +hIq +hIq +xGo +shT +aZS +hfU kLI kLI kLI @@ -37940,31 +36105,31 @@ kLI kLI kLI kLI -mRB -hQE -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -sBf -xph -sDu -hMz -qmn -qmn -qmn -qmn -qmn +ryc +icy +nEZ +ryc +drT +drT +drT +drT +drT +drT +drT +ryc +lrZ +cVE +cRq +arZ +lia +auf +auf +auf +auf +auf mmI syd -rMR +lVX flT nXu abD @@ -37973,9 +36138,9 @@ vyK gRY iLu wic -gpN +dpw nTa -xmY +bWt xmY kCU xmY @@ -37996,7 +36161,7 @@ noL noL noL syq -bgG +rff nbh nbh foH @@ -38006,37 +36171,37 @@ nbh nbh nbh uIX -bgG +rff jPY axH nbh nbh nbh -bgG +rff jPY axH nbh nbh nbh -bgG -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -lft -qHi -qHi -qHi -nqQ -lft +rff +shT +shT +shT +shT +shT +shT +xGo +esP +esP +esP +esP +bFQ +aYx +xbe +xGo +shT +aZS +hfU kLI kLI kLI @@ -38134,40 +36299,40 @@ kLI kLI kLI kLI -mRB -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -fTL -xph -kAw -vRT -qmn +ryc +mHn +drT +drT +drT +drT +drT +drT +drT +drT +drT +bFb +lrZ +kXs +cRq +oRu +gsz +auf hlv fWB hlv meZ dYW -bHn +xUS mmI wIX odO -pIA +fPv qzN gpN gpN gpN aEF -gpN +dpw gNi udt xMk @@ -38175,22 +36340,22 @@ ken dmu vTf hNA -pUn -pUn +omU +omU jne jne jne -pUn +omU xCL hvD lBV -pUn +omU jne jne jne -pUn -pUn -bgG +omU +omU +rff nbh nbh foH @@ -38203,34 +36368,34 @@ jPY wdx jPY axH -bgG +rff nbh nbh -bgG +rff jPY axH nbh nbh nbh -bgG -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -qHi -lft -qHi -qHi -qHi -nqQ -lft +rff +shT +shT +shT +xGo +xGo +xGo +xGo +vdd +esP +esP +esP +bFQ +aZS +aZS +xGo +shT +aZS +hfU kLI kLI kLI @@ -38328,40 +36493,40 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -fTL -xph -plY -czv -qmn +qwl +drT +drT +drT +drT +drT +drT +drT +drT +drT +drT +bFb +lrZ +kXs +cRq +cUO +mvu +auf hlv qFA -tsU +wIK meZ dYW dYW mmI dDV ejQ -pIA +fPv aEF gpN gpN eCO gpN -gpN +dpw nTa xmY xmY @@ -38369,7 +36534,7 @@ xos fBh eJd hNA -pUn +omU rUM rbI rbI @@ -38383,48 +36548,48 @@ hxh rbI rbI iSI -pUn -bgG -bgG -bgG -bgG +omU +rff +rff +rff +rff sNe -bgG -bgG -bgG -bgG +rff +rff +rff +rff whq -bgG +rff lYw nbh -bgG +rff nbh nbh -bgG +rff jPY axH nbh nbh nbh -bgG -qHi -qHi -qHi -qHi -hLm -hLm -hLm -hLm -hLm -hLm -hLm -hLm -hLm -qHi -qHi -qHi -qHi -lft +rff +shT +shT +shT +xGo +jsE +kwJ +rhD +qvm +esP +esP +esP +nOs +hIq +hIq +xGo +shT +aZS +hfU kLI kLI kLI @@ -38509,7 +36674,7 @@ hts hts hts hts -kLI +frk tAx xHy mRB @@ -38522,24 +36687,24 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -xph -plY -czv -qmn +qwl +drT +drT +drT +drT +drT +drT +drT +drT +drT +drT +bFb +lrZ +tsq +cRq +cUO +mvu +auf ksy jJc tkb @@ -38549,13 +36714,13 @@ dYW mmI odO hxr -pIA -pIA +fPv +fPv mSY mSY -pIA +fPv uVz -gpN +dpw gNi tRL val @@ -38563,7 +36728,7 @@ iko enT xbl hNA -pUn +omU pAl xEQ kRZ @@ -38577,7 +36742,7 @@ myX kts vNN pAl -pUn +omU aTO gyB slv @@ -38588,37 +36753,37 @@ tgr uIX hlp fuY -bgG +rff uIX uIX nbh nbh nbh -bgG +rff jPY axH nbh nbh nbh -bgG -qHi -qHi -qHi -qHi -hLm -uEO -sxi -oIY -dzN -nfW -qcg -nfW -hLm -qHi -qHi -qHi -qHi -lft +rff +shT +shT +shT +xGo +rhD +rhD +rhD +qvm +esP +esP +esP +bFQ +aYx +xbe +xGo +shT +aZS +hfU ddu kLI kLI @@ -38631,7 +36796,7 @@ mRB mRB xHy xQM -kLI +frk hts hts hts @@ -38716,24 +36881,24 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -xph -iJx -czv -qmn +qwl +drT +drT +drT +drT +drT +drT +drT +drT +drT +oUP +ryc +lrZ +tsq +cRq +pms +mvu +auf hlv jJc tkb @@ -38747,9 +36912,9 @@ yeW aKT aKT xjR -qmn +auf ntf -fOC +fZe nTa xmY jAz @@ -38771,7 +36936,7 @@ kyt fPr vNN pAl -pUn +omU psS dth rnJ @@ -38788,31 +36953,31 @@ iLm axH nbh nbh -bgG +rff jPY axH nbh nbh nbh -bgG -iPi -edJ -iPi -iPi -hLm -qSx -sxi -vJJ -sxi -uzu -uzu -uzu -hLm -qHi -qHi -qHi -qHi -lft +rff +rnV +wvD +rnV +uuj +qNn +rhD +rhD +qvm +esP +esP +esP +bFQ +aZS +aZS +xGo +shT +aZS +hfU kLI kLI kLI @@ -38910,48 +37075,48 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -xph -kzB -kSu -qmn +qwl +drT +drT +drT +drT +drT +drT +drT +drT +drT +dOX +gwE +lrZ +tsq +cRq +xpt +wrf +auf hlv jJc tkb -qmn -qmn -qmn -qmn -qmn -qmn -qmn +auf +auf +auf +auf +auf +auf +auf nvK pTH tuY -qmn +auf jtl -gpN +dpw gNi uuP xIk -pIA -pIA -pIA +fPv +fPv +fPv tjj -pUn +omU eDq pYr qJE @@ -38965,48 +37130,48 @@ kyt kts cYe eqp -pUn +omU tJA cPJ tJA -bgG +rff nbN eEO xmh lYw lYw lYw -bgG +rff ahX sVs axH nbh nbh -bgG +rff jPY axH nbh nbh nbh -bgG -qHi -nqQ -qHi -qHi -hLm -qWc -sxi -sTZ -sxi -sxi -sxi -kPH -hLm -qHi -qHi -qHi -qHi -lft +rff +shT +aZS +iqj +xGo +rhD +rhD +rhD +qvm +esP +esP +esP +cqf +pWd +pWd +xGo +shT +aZS +hfU kLI kLI kLI @@ -39104,48 +37269,48 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -xgg -xph -xph -xph -qmn +qwl +drT +drT +drT +drT +drT +drT +drT +drT +drT +dOX +gwE +lrZ +dEg +cRq +cRq +cRq +auf meZ vuH gOV -qmn +auf qsx weG -qmn +auf qvC vWN -qmn +auf hBb wua tuY -qmn +auf sUy -klt +xhN tAC pCT ndd -pIA +fPv ujx wxe jOK -nvt +mTs izw yau eaA @@ -39159,48 +37324,48 @@ ncv aZv fPr wgu -nvt -bgG -bgG -bgG -bgG +mTs +rff +rff +rff +rff bxa -bgG -bgG -bgG -bgG -bgG -bgG -bgG +rff +rff +rff +rff +rff +rff +rff gkt -bgG -mRB -nnS -mRB -baz -nnS -nnS -mRB -mRB -mRB -qHi -nqQ -nqQ -tnX -bVy -rgB -rgB -uxu -sDj -sDj -pLo -qSP -hLm -qHi -qHi -qHi -qHi -lft +rff +jkA +sYV +jkA +ljt +sYV +sYV +jkA +jkA +jkA +shT +aZS +aZS +xGo +qsE +rhD +rhD +qvm +esP +esP +esP +esP +esP +esP +qst +shT +aZS +hfU kLI kLI kLI @@ -39298,48 +37463,48 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -aoJ -bRO -bRO -qmn +qwl +drT +drT +drT +drT +drT +drT +drT +drT +drT +mRo +bMO +gvd +fCO +ndc +ePY +ePY +auf qTz nmh tkp -qmn +auf thK -vNV -qmn +rjR +auf goH -kQJ -qmn +pAF +auf rOQ xDQ tuY -qmn +auf uxJ -rqk -pIA +apO +fPv xmY sOR kmO wUD iFi jbW -pUn +omU gUL leE kRZ @@ -39353,48 +37518,48 @@ ncv aZv kts dvx -pUn -lpu -lpu -lpu -lpu -sej -iqv -lpu -lpu -jLs -bIw -bgG +omU +jAi +jAi +jAi +jAi +dzO +qhn +jAi +jAi +qDR +rwQ +rff foH sVs axH -nnS -vof -xAi -xAr -hBc -tzW -mRB -osX -mRB -qHi -qHi -nqQ -oQp -hLm -cAv -sxi -mdy -sxi -sxi -aDj -ylq -hLm -qHi -qHi -qHi -qHi -lft +sYV +xZp +vQc +lue +qSw +lGM +jkA +rLB +jkA +hwK +shT +aZS +xGo +efP +rhD +rhD +xGo +shT +shT +xGo +xev +xev +xev +xGo +shT +aZS +hfU kLI kLI kLI @@ -39492,48 +37657,48 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -aoJ -bRO -bRO -qmn +qwl +drT +drT +drT +drT +drT +drT +drT +drT +drT +ddR +ryc +lrZ +tsq +ndc +ePY +ePY +auf rlc isT ilk -iMf +lud vuH gOV -qmn +auf vuH gOV -qmn +auf jAS eec tuY -qmn +auf xif -ixz -wFm -wFm -wFm -wFm -wFm -wFm +gWV +pjR +pjR +pjR +pjR +pjR +pjR vrI -pUn +omU pAl fZM xDN @@ -39548,47 +37713,47 @@ fZM fZM pAl bgx -sej -sej -sej -sej -sej -iqv -lpu -lpu -jLs -ylk -bgG +dzO +dzO +dzO +dzO +dzO +qhn +jAi +jAi +qDR +dVh +rff foH sVs axH -nnS -pnR -xAr -vFA -dWi -xXZ -mRB -xAr -mRB -qHi -qHi -nqQ -oQp -hLm -mWW -sxi -sxi -sJs -dWy -sxi -xAQ -hLm -qHi -qHi -qHi -qHi -lft +sYV +cHr +lue +dxu +eLZ +iDq +jkA +lue +jkA +ovL +shT +aZS +xGo +oEw +rhD +rhD +xGo +fhh +fhh +xGo +xev +xev +xev +xGo +shT +aZS +hfU kLI kLI kLI @@ -39686,24 +37851,24 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -mRB -jJp -jJp -qmn +qwl +drT +drT +drT +drT +drT +drT +drT +drT +drT +drT +bFb +lrZ +tsq +oXy +dLj +dLj +auf mhV dxM eMR @@ -39713,21 +37878,21 @@ aZy hZM idO jQA -cXS +sTs hNu tMI ghw meZ lhz -tbY -wFm -wFm +lif +pjR +pjR rOI -wFm +pjR jQI jQI iKN -pUn +omU kYR cjl iHp @@ -39741,48 +37906,48 @@ cjy iAz lTE rGD -pUn -bxr -bxr -bxr -iqv -sej -iqv -lpu -lpu -lpu -ylk -bgG +omU +kJt +kJt +kJt +jld +dzO +qhn +jAi +jAi +jAi +dVh +rff foH sVs axH -nnS -ooi -uuH -qgo -bjU -xAr -gtv -hEn -xRd -qHi -qHi -nqQ -oQp -hLm -wqK -sxi -sxi -faX -sIC -oOp -xAQ -hLm -qHi -qHi -qHi -qHi -lft +sYV +spv +rwS +iYp +vgj +lue +rpI +sJz +tHF +shT +shT +aZS +xGo +xGo +nZz +xGo +xGo +xGo +xGo +xGo +xGo +xGo +xGo +xGo +shT +aZS +hfU kLI kLI kLI @@ -39852,25 +38017,25 @@ hts hts hts hts -ivJ -hma -xKx -vrf -bin -xsS -hma -hGz -viP -fgo -fgo -vbz -fgo -isH -fgo -fgo -fgo -fgo -vbz +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts uDM gZu @@ -39880,23 +38045,23 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -nCj -sBf -sBf +qwl +drT +drT +drT +drT +drT +drT +drT +drT +drT +drT +bFb +lrZ +tsq +dNh +cVE +cVE pan rlc isT @@ -39913,7 +38078,7 @@ lOr dkK tgk kJz -fnt +xlx mJP bfR mJP @@ -39923,7 +38088,7 @@ nAL nAL mXz iCx -iCx +tyE iCx iCx iCx @@ -39939,44 +38104,44 @@ vKx hBq iVk mNW -iqv -sej -bgG -bgG -bgG -bgG -bgG -bgG -bgG +jld +dzO +rff +rff +rff +rff +rff +rff +rff uEQ -bgG -mRB -uUI -cTN -isB -xAr -lMK -mRB -mRB -mRB -iPi -pQS -nqQ -oQp -hLm -xHR -sxi -sxi -fNi -fNi -sxi -csS -hLm -qHi -qHi -qHi -qHi -lft +rff +jkA +wCb +dab +cru +lue +ryw +jkA +jkA +jkA +pXJ +jlk +aZS +shT +shT +shT +shT +shT +shT +shT +shT +shT +shT +shT +shT +shT +aZS +hfU kLI kLI kLI @@ -40046,25 +38211,25 @@ hts hts hts hts -rAI -gIb -xRi -xRi -mqY -wQp -wQp -wQp -wQp -pFk -vdo -xgd -krn -vXr -wQp -wQp -wQp -wQp -qHI +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts uDM gZu @@ -40074,24 +38239,24 @@ kLI kLI kLI kLI -mRB -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -sBf -sBf -sBf -qmn +ryc +pSb +pSb +ryc +drT +drT +drT +drT +drT +drT +drT +bFb +lrZ +tsq +cVE +cVE +cVE +auf rOd isT xUs @@ -40117,7 +38282,7 @@ wVC wVC ply vTY -dzY +dEW dzY dzY dzY @@ -40133,44 +38298,44 @@ wJT bYT lfF mNW -iqv -sej -bgG +jld +dzO +rff nbh nbh uIX -bgG +rff nbh foH sVs axH -mRB -kGG -tyK -tDz -rYw -azM -mRB +jkA +sWc +aKv +lta +cJY +wIF +jkA kbd aJt wHw -awb -dct -oQp -hLm -xHR -pSh -loo -wfE -wfE -jEz -uny -hLm -qHi -qHi -qHi -qHi -lft +soX +lqW +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +hfU kLI kLI kLI @@ -40240,25 +38405,25 @@ hts hts hts hts -eYG -xRi -ipJ -wQp -wQp -jdv -jdv -kBZ -wQp -wQp -wQp -eCf -xqF -rMm -jsm -fZx -amm -wQp -wQp +qVH +qVH +qVH +qVH +qVH +qVH +qVH +hUP +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts uDM gZu @@ -40268,32 +38433,32 @@ kLI kLI kLI wwj -mRB -hQE -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -mRB -cUQ -cUQ -qmn +oXy +peC +cVE +ryc +drT +drT +drT +drT +drT +drT +drT +ryc +lrZ +tsq +oXy +buy +buy +auf njl wjl qFk uFd -gOt +afW aAZ cnH -dqQ +ows hGp jIE vuK @@ -40302,18 +38467,18 @@ jEj hha kfE bjD -wFm -wFm +nrV +nrV rru -wFm +nrV oXm paQ pHd -pUn +omU xOH -pcU +gAE sjh -nAg +jKM nAg wXk oIq @@ -40323,48 +38488,48 @@ hrw dmG mfL mfL -bxr +kJt xST hzI bxr -iqv -sej -bgG +jld +dzO +rff nbh foH jPY -bgG +rff uIX hlp sVs tgr -mRB -mRB -mRB -xbb -mRB -mRB -mRB +jkA +jkA +jkA +fOI +jkA +jkA +jkA lRb abe -vZU -djh -lzs -oQp -lNb -lNb -lNb -lNb -lNb -lNb -lNb -lNb -lNb -qHi -qHi -qHi -qHi -lft +fln +ngr +kdF +shT +aCf +aCf +aCf +aCf +aCf +aCf +aCf +aCf +aCf +shT +shT +shT +shT +hfU kLI kLI kLI @@ -40434,25 +38599,25 @@ qVH qVH qVH qVH -eYG -xRi -mqY -wQp -vOI -tPc -aik -jaU -tPh -jaU -lsF -vEH -wQp -oPr -yjj -biZ -mOc -qZu -wFk +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +vfp +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts uDM gZu @@ -40462,50 +38627,50 @@ kLI kLI kLI kLI -uEW -sBf -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -aoJ -cHt -qLd -qmn +pRH +cVE +lBh +ryc +ryc +flL +flL +flL +flL +ryc +ryc +ryc +lrZ +tsq +ndc +hhx +ikO +auf opj vym jhk xpa ssx ilk -qmn -qmn -qmn -iMf +auf +auf +auf +lud byx otr byx -qmn +auf tkZ rHv -wFm -wFm -wFm -wFm -wFm -msz +nrV +nrV +nrV +nrV +nrV +hwP cvs -msz +hwP ajf -dCX +lfj jaD nAg nAg @@ -40517,13 +38682,13 @@ efN dhE fvA fvA -bxr +kJt xST lfF cex -iqv -sej -bgG +jld +dzO +rff nbh foH jPY @@ -40537,28 +38702,28 @@ vfh xlU qtX axH -bgG +rff uSp kqs pVX -vZU -nqQ -lzs -oQp -lNb -jvf -ufT -sCu +fln +aZS +kdF +shT +aCf +qiF +ldU +kDX mfC bOC -qNx +ihk aww -lNb -qHi -qHi -qHi -qHi -lft +aCf +shT +shT +shT +shT +hfU kLI kLI kLI @@ -40628,25 +38793,25 @@ qVH qVH qVH qVH -eYG -xRi -wQp -wQp -jDJ -oQQ -mPy -muQ -mfB -jos -lJn -scb -eIh -jcY -gdk -uhN -lEB -aBM -nhl +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +hzP +qVH hts uDM gZu @@ -40656,48 +38821,48 @@ kLI kLI kLI kLI -uEW -sBf -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -aoJ -skO -pHU -qmn +pRH +cVE +wNo +cVE +cVE +cVE +cVE +cVE +cVE +cVE +jvI +cVE +lrZ +tsq +ndc +qIK +hrP +auf nak qTi fBt -rfk -kno +uNw +lZZ ilk -qmn +auf ppD ppD -qmn -qmn -qmn -qmn -qmn +auf +auf +auf +auf +auf jcQ xMu -wFm +nrV yao eys mlT -msz +hwP qUy kFX -msz +hwP vFn nIY fNz @@ -40711,13 +38876,13 @@ ijL eWH eQw sIT -bxr +kJt tef djS cex -iqv -sej -bgG +jld +dzO +rff nbh foH jPY @@ -40726,33 +38891,33 @@ lOA ahX jPY xvA -rOm +rff lYw ahX vqH axH -bgG +rff var var ctf dzg -qHh -lzs -oQp -lNb -llH -sAL -fBb +gVs +kdF +shT +aCf +aqm +kuk +ejh qbl raY wQt oJP -lNb -qHi -qHi -qHi -qHi -lft +aCf +shT +shT +shT +shT +hfU kLI kLI kLI @@ -40822,25 +38987,25 @@ qVH qVH qVH qVH -eYG -xRi -xRi -mqY -wQp -wQp -tPh -wwg -wQp -wQp -sER -uMI -wQp -qJM -xCT -lyf -wQp -wQp -wQp +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts uDM gZu @@ -40850,90 +39015,90 @@ kLI kLI kLI kLI -uEW -sBf -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -xgg -mRB -mRB -mRB -qmn -qmn -qmn -qmn +pRH +cVE +uno +tUs +tUs +tUs +tUs +tUs +tUs +tUs +tUs +tUs +xYr +qIE +oXy +oXy +oXy +auf +auf +auf +auf lVU kno ilk meZ vNJ vVM -qmn +auf dNs dNs dNs -qmn +auf txH rHv -wFm +nrV yao kbz yao -msz +hwP dIR kFX -msz -msz -msz +hwP +hwP +hwP wHS wHS -wSY +bYA wXn riA kld -wSY +bYA wHS wHS -bxr -bxr -bxr +kJt +kJt +kJt kwQ mJl -bxr -iqv -sej -bgG +kJt +jld +dzO +rff nbh nbh lYw -bgG +rff nbh foH jPY axH -rOm +rff nbh foH vqH axH -bgG -vZU -vZU -vZU -vZU -pcK -lzs -oQp -lNb +rff +fln +fln +fln +fln +gnF +kdF +hwK +aCf oDu eqt gYZ @@ -40941,12 +39106,12 @@ fyw dLw fyw tpC -lNb -qHi -qHi -qHi -qHi -lft +aCf +shT +shT +shT +shT +hfU kLI kLI kLI @@ -41016,25 +39181,25 @@ qVH qVH qVH qVH -eYG -xRi -xRi -srX -kSm -eOE -rAu -fDH -sUw -aPY -kcK -oWn -wQp -qJM -hka -yhU -oiq -cBe -xRi +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +tQB +qVH +qVH +mcq +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts uDM gZu @@ -41044,90 +39209,90 @@ kLI kLI kLI kLI -uEW -sBf -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -xRi -xRi -xRi -xRi -xRi -xRi -qmn +pRH +cVE +nVq +cVE +cVE +cVE +cVE +cVE +cVE +cVE +cVE +cVE +lrZ +tsq +lvf +lvf +lvf +lvf +lvf +lvf +auf oYS mnZ wPJ meZ ppD ppD -qmn +auf dNs miA dNs -qmn +auf txH rHv -wFm +nrV yao kbz yao -msz +hwP jqO dzA ndO kFX -msz +hwP gws gws -wSY +bYA oSs itl xOd -wSY +bYA gws gws -bxr +kJt pbe wDx aPL bYL -bxr -lpu -sej -bgG -bgG -bgG -bgG -bgG -bgG -bgG +kJt +jAi +dzO +rff +rff +rff +rff +rff +rff +rff eHO -bgG -bgG -bgG -bgG +rff +rff +rff +rff fnJ -bgG -bgG -nPL -vbb -wry -iPi -pcK -qUB -spf -lNb +rff +rff +nZS +gVo +vgw +rnV +gnF +wMZ +ovL +aCf dGb dEB dZB @@ -41135,12 +39300,12 @@ pWw mtY fyw aGz -lNb -qHi -qHi -qHi -qHi -lft +aCf +shT +shT +shT +shT +hfU kLI kLI kLI @@ -41210,25 +39375,25 @@ qVH qVH qVH qVH -mZm -xRi -xRi -aad -kSm -fHr -rqF -nmu -kQD -aPY -csB -njE -wQp -qJM -lsC -uiw -dEk -cBe -xRi +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts uDM gZu @@ -41238,103 +39403,103 @@ kLI kLI kLI kLI -mRB -hQE -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -xRi -xRi -xRi -xRi -xRi -xRi -qmn +pRH +cVE +nWF +iVy +iVy +aTX +aTX +aTX +aTX +iVy +iVy +iVy +lrZ +tsq +lvf +lvf +lvf +lvf +lvf +lvf +auf oYS iXN rBm -qmn +auf nun -lfD -qmn +jXy +auf mZr yhN -ttb -qmn +iqF +auf mkv lXM -wFm +nrV yao kbz yao -msz +hwP lSi daw ksv kFX -msz +hwP gws gws -wSY +bYA aoA ifJ xOd -wSY +bYA gws gws -bxr +kJt jis asi uxC lfF -bxr -lpu -sej -lpu -lpu -mRB +kJt +jAi +dzO +jAi +jAi +jpB xAr xAr xAr xAr xAr -mRB -qXY -qHi -nPL +jpB +ppx +shT +nZS tpX mzh bnD -nPL -cTQ -dEP -iPi -pcK -wco -iPi -lNb -lNb -lNb +nZS +rvh +bJG +rnV +gnF +bqw +etU +aCf +aCf +aCf lPT -lNb -edd +aCf +ijk oEq -edd -edd -hwB -hwB -hwB -aFA -edd +ijk +ijk +ijk +ijk +ijk +ijk +ijk ddu kLI kLI @@ -41404,25 +39569,25 @@ qVH qVH qVH qVH -eYG -xRi -xRi -aad -kSm -jqf -aUJ -fDH -qFp -aPY -tOl -aqo -wQp -uFK -xMj -pNb -cQX -cBe -xRi +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts uDM gZu @@ -41432,95 +39597,95 @@ kLI kLI kLI kLI -mRB -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -xRi -xRi -xRi -xRi -xRi -xRi -qmn +oXy +peC +cVE +iVy +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iVy +lrZ +tsq +lvf +lvf +lvf +lvf +lvf +lvf +auf oYS kno ilk -qmn +auf vuH dik -qmn +auf vuH meZ dik -qmn +auf txH gTt -wFm +nrV yao kbz yao -mRB -cpw -cpw +hpx +eUN +eUN oDI -cpw -cpw +eUN +eUN gws gws -wSY +bYA kbG ydo xyL -wSY +bYA gws gws -bxr +kJt pIo wDx aPL cGR -bxr -lpu -sej -lpu -lpu -mRB +kJt +jAi +dzO +jAi +jAi +jpB xAr xAr xAr xAr xAr -mRB -jtp -jjG +jpB +xpc +obk mth kUj cHo lsz -nPL -cTQ -yaS -iPi -pcK -wco -adB +nZS +rvh +gUS +rnV +gnF +bqw +tZE msO msO mpi ltv msO -edd +ijk xAV bvX cea @@ -41528,7 +39693,7 @@ cea pMy pMy wxo -edd +ijk kLI kLI kLI @@ -41598,25 +39763,25 @@ qVH qVH qVH qVH -llt -xRi -xRi -aad -kSm -fHr -mPy -iyo -ceu -aPY -gbM -jRY -abI -lhP -bRT -hen -dEk -cBe -xRi +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts tAx gZu @@ -41626,27 +39791,27 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -xRi -xRi -xRi -xRi -xRi -xRi -qmn +iVy +bKM +bKM +iVy +iUx +iUx +iUx +iUx +iUx +iUx +iUx +uVo +lrZ +tsq +lvf +lvf +lvf +lvf +lvf +lvf +auf jxb kno siA @@ -41657,15 +39822,15 @@ grs tbU luU bVM -qmn +auf pXq tql -wFm +nrV yao kbz yao yao -cpw +eUN rms avr bir @@ -41684,31 +39849,31 @@ wTg cXL xpI qLV -bxr -sej -sej -lpu -lpu -mRB +kJt +dzO +dzO +jAi +jAi +jpB xAr xAr xAr xAr xAr -mRB -iSb -wry -nPL +jpB +gdv +vgw +nZS nVN wji lHN -nPL -cTQ -yaS -iPi -pcK -wco -adB +nZS +rvh +gUS +rnV +gnF +bqw +tZE msO msO bok @@ -41792,25 +39957,25 @@ qVH qVH qVH qVH -rAI -xRi -xRi -aad -kSm -fHr -rAu -fDH -ceu -aPY -tQj -sBf -nDx -sBf -ufz -tVV -idG -cBe -xRi +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts tAx gZu @@ -41820,35 +39985,35 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -xRi -xRi -xRi -xRi -xRi -xRi -qmn +oLI +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +uVo +lrZ +gOA +tFm +lvf +lvf +lvf +lvf +lvf +auf oXk dle efE tan -wVg +bez eiB aQF -iRH +uSF aQF kvU mcA @@ -41856,7 +40021,7 @@ mlD ojQ fLl eId -ujf +hxn eId xeg peH @@ -41878,31 +40043,31 @@ wTg cXL fgg cms -bxr -sej -lpu -lpu -lpu -mRB +kJt +dzO +jAi +jAi +diA +jpB xAr xAr xAr xAr xAr -mRB -iSb -qHi -nPL +jpB +gdv +shT +nZS rxM xyM axC rTt -lkY -oBZ -iPi -pcK -wco -adB +hrN +iVU +rnV +gnF +bqw +tZE msO xZK msO @@ -41986,25 +40151,25 @@ qVH qVH qVH qVH -eYG -xRi -xRi -mqY -wQp -wQp -tPh -mIM -wQp -wQp -svP -svP -wQp -mhi -wQp -xNT -wQp -wQp -wQp +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts tAx gZu @@ -42014,27 +40179,27 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -xRi -xRi -xRi -xRi -xRi -xRi -qmn +oLI +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +uVo +lrZ +tsq +lvf +lvf +lvf +lvf +lvf +lvf +auf kwu itv puR @@ -42048,16 +40213,16 @@ lTr lkO qAa ixz -wFm -yao +nrV yao +vwy yao cdR -cpw +eUN woB xsn hHh -cpw +eUN ilv pDX iQH @@ -42067,35 +40232,35 @@ iQH iQH dIk mTG -bxr +kJt wNI cXL fgg drX -bxr -sej -lpu -lpu -lpu -mRB +kJt +dzO +jAi +jAi +qcp +jpB xAr xAr xAr xAr xAr -mRB -iSb -qHi -nPL -nPL +jpB +gdv +shT +nZS +nZS cYp -nPL -nPL -lPg -iPi -iPi -pcK -uFI +nZS +nZS +fin +rnV +rnV +gnF +qWL brK jFh bYF @@ -42180,25 +40345,25 @@ qVH qVH qVH qVH -eYG -xRi -wQp -wQp -oPx -tEV -mPy -wZj -rqm -ybB -lJn -hVj -boL -mmv -hAz -fnL -uPZ -bvS -wQp +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +kMV +qVH +qVH +qVH +qVH +qVH +qVH hts tAx gZu @@ -42208,95 +40373,95 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -xgg -mRB -nHy -xRi -xRi -xRi -xRi -qmn +oLI +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +ejp +iVy +lrZ +dEg +oXy +iDm +lvf +lvf +lvf +lvf +auf nak ahp pIJ nBT nBT nBT -nBT +aqJ oDi quZ sEd -qmn +auf fCn lRt -amV -amV -amV -amV +nrV +nrV +nrV +nrV sQX -cpw -cpw +eUN +eUN mnS -cpw -cpw +eUN +eUN smx smx -rRw +cxZ iQH iQH iQH -rRw +cxZ smx smx -bxr +kJt clm aMX nER drX -bxr -sej -lpu -lpu -lpu -mRB -xAr -xAr -xAr -xAr +kJt +dzO +jAi +jAi +jAi +qJq xAr +lDf +lDf +lDf +lDf bBB -cVI -nqQ -nqQ -nqQ -pcK -edJ -nqQ -cTQ -ngx -iPi -pcK -tKR -adB +htL +aZS +aZS +aZS +gnF +wvD +aZS +rvh +oxr +rnV +gnF +fTN +tZE msO msO msO msO msO -edd +ijk qAb rSo bcQ @@ -42304,7 +40469,7 @@ vic jbn fTt cRV -edd +ijk kLI kLI kLI @@ -42374,25 +40539,25 @@ qVH qVH qVH qVH -eYG -xRi -mqY -wQp -jXP -stX -jKO -dZR -tPh -syI -xQH -vuW -sJv -nYy -jHj -cQA -fGT -cFh -wQp +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts tAx gZu @@ -42402,38 +40567,38 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -xRi -xRi -xRi -xRi -xRi -mRB -qmn +oLI +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +kgu +gjp +lrZ +tsq +lvf +lvf +lvf +lvf +lvf +auf +auf uHH xPw vUB -qmn -qmn -qmn -iMf +auf +auf +auf +lud kqW meZ -qmn -qmn +auf +auf ofZ ixz xbt @@ -42442,49 +40607,49 @@ meU uVR lRq jLd -wFm +tTR rLk nyY nXg wVC feR -wFm +nrV vJi vJi vJi -wFm +nrV feR wVC -bxr -bxr -bxr +kJt +kJt +kJt afZ eqE -bxr -gTP -iqv -iqv -iqv -mRB +kJt +xxd +qhn +qhn +qhn +jpB nnS -hvi +dKZ rHE nnS nnS -mRB -tUO -seS -seS -seS -hlN -iPi -qHi -cTQ -ngx -iPi -pcK -tKR -adB +jpB +cxb +aUW +aUW +aUW +ugw +rnV +shT +rvh +oxr +rnV +gnF +fTN +tZE aGV kRX lGa @@ -42498,7 +40663,7 @@ ggB ggB ggB ggB -kuR +tZE kLI kLI kLI @@ -42568,25 +40733,25 @@ qVH qVH qVH qVH -eYG -xRi -qHI -wQp -wQp -mgn -jem -nng -wQp -wAM -wAM -wAM -wAM -wQp -lSX -vnR -fyo -wQp -wQp +qVH +qVH +qVH +qVH +qVH +qVH +qVH +gVq +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts tAx gZu @@ -42596,26 +40761,26 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -yiG -sBf -sBf -sBf -sBf -sBf -mRB +oLI +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +kgu +gjp +lrZ +bxG +rAF +lvf +lvf +lvf +lvf +auf rtx kBz oob @@ -42627,7 +40792,7 @@ meZ wkn xyA xyA -qmn +auf flh lAk gXg @@ -42642,43 +40807,43 @@ nyY qUx aqx rBq -wFm -wFm -wFm -wFm -wFm +nrV +nrV +nrV +nrV +nrV rBq aqx -wiF -wiF +rxW +rxW tKe umZ qSe -bxr -tzm -tzm -tzm -kso -mRB +kJt +soJ +soJ +soJ +lmj +jpB wyS -isB +vzd nnS bRO bRO -vFQ -wjq -vFQ -vFQ -vFQ -vFQ -vFQ -iPi -cTQ -ngx -iPi -pcK -tKR -adB +nqm +rdw +myY +myY +myY +myY +myY +rnV +rvh +oxr +rnV +gnF +fTN +tZE dAc sDQ lGa @@ -42692,7 +40857,7 @@ kna kna kna kna -kuR +tZE kLI kLI kLI @@ -42762,25 +40927,25 @@ qVH qVH qVH qVH -fWq -bBS -xRi -xRi -mqY -wQp -wQp -wQp -wQp -pfR -pfR -pfR -iFT -fGR -qfm -wAM -mwG -uGi -qHI +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts tAx gZu @@ -42790,26 +40955,26 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -yao -yao -yao -yao -yao -mRB +oLI +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +asG +aqc +xYr +aTH +lvf +lvf +lvf +lvf +lvf +auf pQj qqS wRF @@ -42821,7 +40986,7 @@ meZ vkZ vXT xyA -qmn +auf jEe flV jbo @@ -42832,7 +40997,7 @@ fzL pqW oFF obe -nyY +fEm sGB vEj ucZ @@ -42845,34 +41010,34 @@ sGT vEj vEj vEj -uLY +tKe xHF pXb -bxr -gmH -aux -tzm -lGF -mRB +kJt +uJy +fUA +soJ +tDw +jpB lOw -isB +vzd nnS bRO bRO -vFQ -oap -aHw -pgl -eJT -gwu -vFQ -iPi -edJ -iPi -iPi -pcK -cRD -adB +nqm +eNz +kIW +shw +iuv +wSR +myY +rnV +wvD +rnV +rnV +rEj +uWe +tZE uXg unL lGa @@ -42886,7 +41051,7 @@ kna kna kna kna -kuR +tZE kLI kLI kLI @@ -42956,25 +41121,25 @@ qVH qVH qVH qVH -yfD -tUk -pAB -aqn -fyU -hkn -tUk -vRx -pEq -usM -usM -mhz -usM -aff -usM -kGV -cEg -usM -gvp +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts tAx gZu @@ -42984,26 +41149,26 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -yao -yao -yao -yao -yao -mRB +oLI +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +hch +iVy +lrZ +tsq +lvf +lvf +lvf +lvf +lvf +auf wfV qqS wRF @@ -43012,10 +41177,10 @@ ceK kjH bkO wgl -fGH +pTo xyA xyA -qmn +auf puk ixz gXg @@ -43042,35 +41207,35 @@ cUz uLY xHF pXb -bxr -gRx -ion -tzm -vum -mRB +kJt +xmm +sMK +soJ +hDF +jpB lOw -cky +eGt rHE upx upx -vFQ -dPr -wMm -ole -vlT -xtg -vFQ -qHi -nqQ -qHi -qHi -pcK -tKR -adB +nqm +bwl +uBC +fLW +fZO +gsZ +myY +shT +aZS +shT +shT +gnF +fTN +tZE xxt dDH lGa -mTO +rrl deT kna kna @@ -43080,7 +41245,7 @@ tAE tAE tAE tAE -kuR +tZE kLI kLI kLI @@ -43178,38 +41343,38 @@ kLI kLI kLI kLI -sQK -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -yao -yao -yao -yao -yao -mRB +oLI +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +uVo +lrZ +tsq +lvf +lvf +lvf +lvf +lvf +auf ioO owA hmF wsO -qmn -qmn -qmn -qmn -qmn -qmn -qmn -qmn +auf +auf +auf +auf +auf +auf +auf +auf vNF tbY ftE @@ -43218,49 +41383,49 @@ pAJ jQs nyY nyY -wFm +tTR cFL nvh nvh nvh -fzI -pXk -pXk -dwF -pXk -pXk -fzI -pXk -pXk -sJu -tOO +cCG +nvh +nvh +alh +nvh +nvh +cCG +nvh +nvh +lZV +vDW lHP kSZ -bxr -bAH -ion -tzm -sjH -mRB +kJt +ctR +sMK +soJ +ney +jpB lOw -qzS +lXU lGl gwH xAr -vFQ -qUZ -bjY -bcn -upe -pBp -pSB -nqQ -nqQ -fhH -rAf -pug -tKR -adB +nqm +uaa +pLu +iQr +lZt +nlH +vxW +aZS +aZS +fds +iHb +odQ +fTN +tZE dAc sDQ lGa @@ -43274,7 +41439,7 @@ uuW uuW uuW uuW -nBH +ved ddu kLI kLI @@ -43372,31 +41537,31 @@ kLI kLI kLI kLI -mRB -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -xgg -azT -azT -azT -azT -azT -azT -azT +iVy +mlH +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +uVo +lrZ +qSL +spD +spD +spD +spD +spD +spD +spD nqE rxB wbQ -amV +pjR wNw vEr lxV @@ -43406,55 +41571,55 @@ xXi vEr fDs ixz -vxX -vxX -vxX +awY +awY +awY pTi aXz -emf -vxX -vxX -mRB -mRB -mRB -sAv +awY +awY +kIF +hpx +hpx +hpx +hBz nUo xnp aTw jSp igE -sAv -sAv -sAv +hBz +hBz +hBz iPv -bxr -iqv -ujr -aWK -gRx -ion -tzm -lGF -mRB +kJt +jld +tgg +jld +xmm +sMK +soJ +tDw +jpB boQ -cMP +hCY ovx uXF xAr -vFQ -qvH -ndL -xQe -pmk -xtg -vFQ -qHi -wKb -wTi -ibf -ibf -iut -adB +nqm +fHl +hav +qFG +liX +gsZ +myY +hwK +kFe +hWL +cpo +cpo +jrG +tZE pPg ekM lGa @@ -43566,21 +41731,21 @@ kLI kLI kLI kLI -mRB -hQE -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ -azT +iVy +wVH +pKc +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iUx +uVo +lrZ +tsq +spD gCH pab ofh @@ -43590,7 +41755,7 @@ iOZ tvU fJL dSH -amV +pjR bby ixz tpO @@ -43600,54 +41765,54 @@ lRt ixz ezG ixz -vxX +awY juH vCl dXf ljK -nBb +cvx fuZ -vxX +kIF mlT tzO yao -sAv +hBz cCV iPW jMB vZN oLT -sAv +hBz rFb mvH dPw -sAv -cYg -xmg -aWK -vhP -cjU -tzm -xxV -mRB +hBz +sxX +eGe +gYx +hhl +rJK +soJ +dxw +jpB boQ -xAr -ovx -xAr -xAr -vFQ -uUL -aHw -kko -fUQ -msg -vFQ -qHi -qHi -pcK -qHi -nqQ -xBi +lDf +mZy +lDf +nnq +nqm +tlJ +kIW +sSQ +jKS +fvh +myY +ovL +shT +gnF +shT +aZS +bbG uFy wbl mas @@ -43657,9 +41822,9 @@ wbl ham wbl hdn -sJT -exc -lmU +lte +vxt +cJP nhm fNq vXA @@ -43760,20 +41925,20 @@ kLI kLI kLI wwj -mRB -sBf -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -xRi -sBf -paZ +iVy +uBb +iVy +iVy +iUx +iUx +iUx +iUx +iUx +iUx +iUx +iVy +lrZ +tsq nqE vuF vuF @@ -43787,17 +41952,17 @@ cDN jCh ohB lAk -wFm -wFm -wFm -wFm -wFm -wFm -wFm -vxX +tTR +tTR +tTR +tTR +tTR +tTR +tTR +awY gLs ixi -xPM +jnH pyl mQU sha @@ -43805,7 +41970,7 @@ rCm aMD qXs yao -sAv +hBz tVu wld lxZ @@ -43815,34 +41980,34 @@ qVu pBc xyV dPw -sAv -lpu -dLT -aWK -aWK -aWK -gTP -aWK -mRB +hBz +jAi +sya +gYx +gYx +gYx +xxd +gYx +jpB iSG ovx ovx ovx iSG -vFQ -wjq -vFQ -mDp -mDp -mDp -mDp -mDp -hBj -pcK -qHi -xxg -hEs -adB +nqm +rdw +myY +qxG +qxG +qxG +qxG +qxG +kSv +gnF +shT +cao +hlM +tZE msO aAa hLM @@ -43853,7 +42018,7 @@ msO uNG mVP uoI -lha +swF wTj kyU vXA @@ -43955,19 +42120,19 @@ kLI kLI kLI mRB -sBf -xRi -xRi -xRi -mRB -aoJ -aoJ -aoJ -ftQ -xRi -xRi -sBf -paZ +sBK +fPn +iVy +iVy +iVy +nOk +nOk +nOk +iVy +iVy +iVy +ppT +tsq wBB gfJ nnn @@ -43981,76 +42146,76 @@ nPe jCh ibv ixz -vxX +awY jvc hDo -xEx +kMs qGQ ali iRV -vxX +awY uMH xut ohc hGO kwz nLN -vxX -mRB -mRB -mRB -sAv +kIF +tfD +tfD +tfD +hBz roP uMG hkt bKa igT -sAv +hBz gqJ qDW eDU -sAv -aWK -lsq -aWK -uwV -lpu -sej -lpu -mRB +hBz +gYx +uUB +gYx +cDr +jAi +dzO +jAi +jpB btP ovx ovx ovx -btP -iqv -ptM -lpu -mDp -fAu -mbV -tqw -kaw -rym -pcK -chV -jcZ -chV -chV -chV -chV -chV -chV -rHE -qnE -sCO -fIL -fIL +bsV +oSm +rFX +jAi +qxG +noz +vPo +bqH +jhI +wVK +gnF +eIB +sTq +eIB +jcJ +jcJ +jcJ +jcJ +jcJ +iyn +dWd +edX +ecR +ecR sVC -crY +czQ wTj ekQ -nBH +ved kLI kLI kLI @@ -44149,19 +42314,19 @@ kLI kLI fkK mRB -cfR -sBf -sBf -sBf -mRB -bRO -bRO -bRO -dXX -sBf -sBf -sBf -paZ +sBK +fPn +fPn +fPn +oXy +ePY +ePY +ePY +siE +cVE +cVE +lrZ +tsq nqE gfJ kOL @@ -44189,62 +42354,62 @@ vcf cXJ uAp unk -vxX -yao -ghy -yao -sAv -sAv -sAv -sAv -sAv -sAv -sAv -sAv -sAv -sAv -sAv -lpu -cCS -lpu -uwV -lpu -sej -lpu -iqv -mRB +kIF +eel +pAT +eel +hBz +hBz +hBz +hBz +hBz +hBz +hBz +hBz +hBz +hBz +hBz +jAi +rDa +jAi +cDr +jAi +dzO +jAi +oSm +jpB ovx ovx ovx -mRB -lpu -isN -lpu -mDp -rnA -rnA -xbc -kaw -jPa -eiG -wyg -giT -xsK -hqp -pUD -rCO -oHa -chV -vJF -uNV -maN -pxB -fIL +jpB +jAi +ksw +jAi +qxG +eyf +eyf +nOP +jhI +nPx +ebD +jDN +iZH +nob +krf +pHH +tXJ +ktk +jcJ +fvY +lNi +qsr +egw +ecR sCZ -siW +lmf wTj gGP -nBH +ved kLI kLI fkK @@ -44343,20 +42508,20 @@ kLI kLI kLI mRB -poa -sBf -sBf -sBf -mRB -bRO -bRO -bRO -dXX -sBf -sBf -sBf -paZ -azT +sBK +fPn +fPn +fPn +oXy +ePY +ePY +ePY +siE +cVE +cVE +lrZ +tsq +spD hHp kOL wqW @@ -44366,79 +42531,79 @@ iTM ftS svk jNj -wFm +pjR qYd lRt -vxX +awY tsZ kwz uAp uIR kwz aIF -vxX +awY vew vQu lAf oIC uAp ppP -vxX -iwU -lKF -wFN -fWF -nCl -nCl -jLf -jLf -jLf -jLf -hWS -gxY -rVE -gxY -gxY -qxa -lpu -uwV -uwV -sej -uwV -uwV -mRB +kIF +tAZ +qPE +kwq +bHV +wRy +wRy +jfs +jfs +jfs +jfs +vvd +ong +mFc +ong +ong +dwx +jAi +cDr +cDr +dzO +cDr +cDr +jpB arp arp arp -mRB -lpu -isN -lpu -mDp -lBk -eOm -eOm -ygL -seS -gKt -chV -dVG -mxQ -uzS -hnK -hnK -coX -chV -aZc -lNu -gEf -pxB +jpB +jAi +ksw +jAi +qxG +nEw +tUp +tUp +vXZ +aUW +hwE +eIB +lwa +rau +qFt +lKU +lKU +iCs +jcJ +bPJ +aAN +oPb +egw bkS gOn -crY -wTj +czQ +kKY vbm -nBH +ved kLI kLI kLI @@ -44537,102 +42702,102 @@ kLI kLI kLI mRB -vUI -mRB -mRB -mRB -mRB -mRB -mRB -mRB -mRB -mRB -ftQ -kaQ -hfu -azT +wxx +fPn +fPn +fPn +oXy +oXy +oXy +oXy +oXy +oXy +iuS +cYP +vds +spD gfJ kds vuF -vuF +hca dmS hVr giW otA jUp -wFm +pjR eZu lAk -vxX +awY jyk uAp mZY -uAp +bre uAp vGb -vxX +awY jXR rAO gfT tlS uAp ciL -vxX -kUf -kbz -iHh -mRB -mRB -mRB -uwV -uwV -uwV -lpu -nDj -lpu -aWK -lpu -lpu -cCS -lpu -lpu -lpu -sej -lpu -lpu -mRB -mRB -mRB -mRB -mRB -lpu -ovU -fhn -mDp -iVI -rnA -oSX -kaw -xPm -pcK -chV -kls -cwp -fgk -crA -crA -lLO -chV -woN -hTI -pZO -qOg +kIF +ikN +erI +rDn +aNZ +aNZ +aNZ +cDr +cDr +cDr +jAi +cSw +jAi +gYx +jAi +jAi +rDa +rNk +jAi +jAi +dzO +jAi +jAi +jpB +jpB +jpB +jpB +jpB +jAi +pzb +skE +qxG +mQu +eyf +jAm +jhI +uNy +gnF +eIB +lHZ +oZX +pNY +xfh +xfh +wrW +jcJ +gII +dww +wfd +fFn bkS qlL -crY +czQ wTj swr -nBH +ved kLI kLI kLI @@ -44718,7 +42883,7 @@ hts hts hts hts -kLI +frk kLI kLI vBY @@ -44731,21 +42896,21 @@ mRB mRB mRB mRB -afb -vnQ -vnQ -vnQ -vnQ -eNF -xqR -xqR -xqR -xqR -eNF -qQp -rgA -azT -whp +tnf +fPn +fPn +fPn +fPn +rQs +tEs +tEs +tEs +tEs +rQs +sBK +gbj +spD +ifi usj vxl vxl @@ -44754,79 +42919,79 @@ uqZ xmG moo whZ -wFm +pjR tSa ixz -vxX +awY duK uAp mZY uAp uAp wzd -vxX +awY phi gLc eBG xhY uAp exC -vxX -qZq -lRZ -cnn -hGv -eWI -mRB -lpu -lpu -uwV -lpu -nDj -lpu -aWK -lpu -lpu -nRT -gxY -gxY -gxY -gxY -gxY -gxY -gxY -rVE -gxY -gxY -gxY -gxY -gIn -lpu -mDp -dYO -iqa -lUH -kaw -rym -pcK -chV -jQZ -aVU -fgl -xca -dui -vBW -chV -oCt -edg -ykz -mTh -fIL +kIF +fyB +oTN +ndX +wMH +jXA +aNZ +jAi +jAi +cDr +jAi +cSw +jAi +gYx +jAi +jAi +rjo +ong +ong +ong +ong +ong +ong +ong +mFc +ong +ong +ong +ong +dsx +jAi +qxG +jnB +lXi +eXH +jhI +wVK +gnF +eIB +dOK +ayZ +vhb +jyZ +yfF +ked +jcJ +vXb +qRR +tYn +yev +ecR nIA -crY +czQ wTj swr -nBH +ved mRB mRB mRB @@ -44925,102 +43090,102 @@ yao yao yao mRB -afb -vnQ -vnQ -vnQ -vnQ -eNF -xqR -xqR -xqR -xqR -cyd -qQp -rgA -azT +tnf +fPn +fPn +fPn +fPn +rQs +tEs +tEs +tEs +tEs +sAF +sBK +gbj +spD cMZ kOL dnq dnq neq xZu -azT -azT -azT -wFm -asH +spD +spD +spD +pjR +eDY tbY -vxX +awY oho uAp pBm uAp uAp fZK -vxX +awY sRd pcf tGc tGc qSm ooK -vxX -mdR -oGK -dSb -icc -fCC -mRB -lpu -lpu -uwV -lpu -nDj -aWK -aWK -lpu -lpu -vnd -dLJ -dLJ -dLJ -vnd -lpu -lpu -lpu -aWK -lpu -lpu -lpu -lpu -isN -lpu -mDp -mDp -mDp -mDp -mDp -jPa -pcK -chV -chV -chV -chV -rkH -iIk -iIk -iIk -iIk -iIk -iIk -iIk -fIL +kIF +kUW +ygP +kvJ +hKI +kcY +aNZ +jAi +jAi +cDr +jAi +cSw +gYx +gYx +jAi +jAi +gvU +iow +iow +iow +gvU +jAi +jAi +jAi +gYx +jAi +jAi +jAi +jAi +ksw +jAi +qxG +qxG +qxG +qxG +qxG +nPx +gnF +eIB +eIB +eIB +eIB +rNo +eCL +eCL +eCL +eqK +eqK +eqK +eqK +ecR eAU -siW +lmf wTj wTj -nBH +ved yao yao yao @@ -45032,7 +43197,7 @@ xQM kLI kLI kLI -kLI +frk hts hts hts @@ -45119,102 +43284,102 @@ yao yao yao yao -afb -vnQ -vnQ -vnQ -vnQ -eNF -xqR -xqR -xqR -xqR -cyd -qQp -rgA -azT +tnf +fPn +fPn +fPn +fEH +rQs +tEs +tEs +tEs +tEs +sAF +sBK +gbj +spD cMZ kOL dnn mGY eIO eIO -azT -owt -owt -wFm +spD +qNJ +qNJ +pjR uSP uIm -vxX +kIF oho uAp ldT uAp uAp fZK -vxX -mpS +awY +hYN wEX txn txn txn uml -vxX -lRZ -oGK -gUA -oGK -eHZ -mRB -aWK -aWK -aWK -lpu -nDj -aWK -lpu -lpu -lpu -vnd -maQ -maQ -maQ -vnd -lpu -lpu -lpu -rHE -rHE -rHE -rHE -rHE -oxa -jLf -jLf -jLf -jLf -jLf -jqv -sUi -tLx -sUi -ugy -oYU -vpe -gFd -iIk +kIF +oTN +ygP +maE +ygP +aLu +dfM +gYx +gYx +gYx +jAi +cSw +gYx +jAi +jAi +jAi +gvU +vQk +vQk +vQk +gvU +jAi +jAi +jAi +gvU +gvU +gvU +gvU +gvU +kIR +jfs +jfs +jfs +iai +jfs +kiZ +mAp +ltf +mAp +nIZ +pfp +mEH +jcG +eCL uwA pAL qVI pWM iZT -iIk +eqK sXg ttw -prF +hNy wYV dhm -nBH +ved yao yao yao @@ -45313,90 +43478,90 @@ yao yao yao mRB -afb -vnQ -vnQ -vnQ -vnQ -eNF -eNF -eNF -cyd -eNF -eNF -uLJ -rgA -azT +tnf +fPn +fPn +fPn +fcb +rQs +rQs +rQs +sAF +rQs +rQs +nfh +ite +spD fkE moH vuF bEn bEn wyF -azT -ppl -ppl -jOU -xgj -hcK -vxX -vxX +spD +cDa +cDa +gDO +hNB +gND +kIF +kIF uXA -vxX -vxX -vxX -mRB -mRB -mRB -mRB -mRB -mRB -mRB -mRB -mRB -mRB -mRB -aiW -yao -jOU -iGf -iGf -iGf -vnd -lpu -nDj -vnd -vnd -vnd -vnd -vnd -csw -csw -csw -vnd -uOg -vnd -vnd -rHE -gzH -flD -fqn -rHE -isN -sej -sej -sej -sej -sej -nqQ -nqQ -kIZ -nqQ -nAG -nqQ -qHi -qhY -iIk +kIF +kIF +kIF +hpx +hpx +hpx +hpx +hpx +hpx +hpx +hpx +hpx +aNZ +aNZ +oPM +eel +mVb +gpj +gpj +gpj +gvU +jAi +cSw +gvU +gvU +gvU +gvU +gvU +uOt +uOt +uOt +gvU +uES +gvU +gvU +gvU +oQN +srv +caV +gvU +ksw +dzO +dzO +mWI +xtB +cef +tPM +hrN +wXO +aZS +xhy +aZS +mPs +mOG +eCL qzZ bjJ sfY @@ -45404,11 +43569,11 @@ uqo hNo rIU lKt -uQn -hcU +piC +sUJ wTj elA -nBH +ved yao yao yao @@ -45507,89 +43672,89 @@ yao yao yao mRB -afb -qQp -qQp -qQp -qQp -qwb -qQp -qQp -qQp -qQp -qwb -qQp -rgA -azT +gMH +sBK +sBK +sBK +sBK +vUW +sBK +uga +sBK +sBK +vUW +sBK +gbj +spD jQK nYE nsj nNG nNG nNG -azT -nxw -bFD -ppl -bcg -ppl +spD +ese +ded +cDa +uoF +cDa rzn vcx vcx vcx vcx vcx -mRB +oDh bRO bRO jJz jJz jJz gTn -mRB +oDh yao hlI -mRB -mRB -mRB -jOU -iCP -iCP -iCP -vnd -lpu -nDj -vnd -dUF -fJs -ajQ -iCP -xgT -xgT -xgT -iCP -iCP -maQ -maQ -rHE -cRT -flD -suH -rHE -qDj -iBW -uwV -uwV -uwV -uwV -iPi -qHi -qJy -nZw -nAG -nqQ -qHi -oLP +aNZ +aNZ +aNZ +mVb +srv +srv +srv +gvU +diA +cSw +gvU +wnR +syt +bwD +srv +lbI +lbI +lbI +srv +srv +vQk +vQk +gvU +leN +srv +bBv +gvU +iSs +cNF +hpx +azB +jBY +hpx +hpx +shT +kev +ezZ +xhy +aZS +shT +tKc bTb vTG bjJ @@ -45598,11 +43763,11 @@ ogD mYO qwk oZR -ggd +ehq wTj xob eFe -nBH +ved yao yao yao @@ -45701,106 +43866,106 @@ yao yao mRB mRB -afb -qQp -qQp -qQp -raI -cmS -cmS -cmS -cmS -cmS -cmS -bWv -rgA -azT +tnf +gQr +gQr +gQr +dTi +tdj +vMB +tdj +tdj +tdj +tdj +pdl +gbj +spD iSz eES lJL emX edp edp -azT -lXP -lEf -ppl -rHW -ppl +spD +bnA +mfd +cDa +hwX +cDa rzn vcx dtC kHU nvX nvX -mRB +oDh bRO bRO jJz jJz jJz bTl -mRB +oDh yao yao yao yao ouC -vnd -iCP -iCP -iCP -vnd -lpu -nDj -vnd -iWa -win -muX -iCP -xgT -xgT -xgT -iCP -iCP -maQ -maQ -rHE -flD -flD -uYx -rHE -isN -lpu -uwV -lpu -lpu -lpu -iPi -qHi -qHi -qHi -nAG -nqQ -qHi -qHi -iIk +gvU +srv +srv +srv +gvU +qcp +cSw +gvU +mGe +rDH +dnF +srv +lbI +lbI +lbI +srv +srv +vQk +vQk +gvU +srv +srv +dPM +gvU +ksw +hVJ +hpx +dUY +uMx +kIA +hpx +shT +trt +shT +xhy +aZS +shT +shT +eCL aJJ bjJ awL avX vMs -iIk -fIL -lyT -fIL -fIL -fIL -nBH +eCL +ved +vld +ved +ved +ved +ved yao -mRB -mRB -mRB +uEG +uEG +uEG yao mRB gZu @@ -45894,107 +44059,107 @@ mRB mRB mRB mRB -vnQ -afb -rHE -rHE -rHE -ieR -rHE -vnd -dLJ -dLJ -dLJ -ciJ -gnD -kHV -azT +fPn +tnf +mUz +mUz +mUz +bJL +mUz +mUz +iow +iow +iow +hiO +wNB +xna +spD wBB -azT -azT -azT -azT -azT -azT -lXP -lEf -vnd -rHW -ppl -uUY -vnd -vnd -vnd -vnd -fyE -jOU -jOU -jOU -jOU -jOU -adz -mSm -jOU -vnd -vnd -vnd -vnd -vnd -gxO -aoM -aoM -aoM -gxO -ciJ -eMB -vnd -vnd -aoM -uub -vnd -dLJ -dLJ -dLJ -vnd -vnd -vnd -vnd -vnd -vnd -xww -vnd -vnd -uSZ -vnd -vnd -xdO -xdO -xdO -iPi -iPi -iPi -iPi -nAG -nqQ -iPi -iPi -iIk +spD +spD +spD +spD +spD +spD +bnA +mfd +gvU +hwX +cDa +dUH +gvU +gvU +gvU +gvU +ovm +dgp +dgp +dgp +dgp +dgp +qdB +fjJ +dgp +gvU +gvU +gvU +gvU +gvU +tIW +nMN +nMN +nMN +tIW +hiO +kuQ +gvU +tLh +nMN +qCd +gvU +iow +iow +iow +gvU +gvU +gvU +gvU +gvU +gvU +tgc +gvU +gvU +rwL +gvU +hpx +sGh +dOF +wuv +hpx +rnV +rnV +rnV +xhy +aZS +shT +shT +eCL avX bjJ iIk eYO eYO -iIk -uhb -qvh -uhb -uhb -uhb -uhb -uhb -tKL +eCL +uuJ +ofM +uuJ +uuJ +uuJ +uuJ +uuJ +jRq pVJ -tKL +jRq mRB mRB gZu @@ -46084,111 +44249,111 @@ kLI gZu gZu mRB -vnQ -vnQ -vnQ -kMm -vnQ -bIo -rjD -brQ -cND -pTK -npu -vnd -nxw -hiL -euh -euh -bTS -kYu -euh -jFx -viD -jFx -hiL -euh -euh -euh -lvn -gLy -jFx -vZf -euh -euh -euh -euh -euh -hiL -jFx -nvN -jFx -hiL -euh -euh -euh -euh -euh -hiL -jFx -viD -jFx -hiL -euh -euh -euh -euh -euh -hiL -dfU -nvN -jFx -hiL -qxJ -euh -euh -euh -euh -hiL -jFx -nvN -jFx -euh -euh -euh -hiL -euh -cpW -bFD -vnd -uhb -uhb -uhb -uhb -uhb -uhb -xdO -wSc -dKD -xdO -sSK -iIk +fPn +fPn +fPn +aNJ +fPn +tNL +svx +xPN +mOU +fqS +eds +mUz +ese +jPX +tMn +tMn +ciH +gOJ +tMn +rLK +wmU +rLK +jPX +tMn +tMn +tMn +hvm +tXx +rLK +fwa +tMn +tMn +tMn +tMn +tMn +jPX +rLK +gkH +rLK +jPX +tMn +tMn +tMn +tMn +tMn +jPX +rLK +wmU +rLK +jPX +tMn +tMn +tMn +tMn +tMn +jPX +dGt +gkH +rLK +jPX +aiq +tMn +tMn +tMn +tMn +jPX +rLK +gkH +rLK +tMn +tMn +tMn +jPX +tMn +aMU +ded +erl +qbf +wQo +dLa +hpx +uuJ +uuJ +rnV +xhy +aZS +aZS +aZS +eCL avX bjJ iIk wrH wrH -iIk -uhb -qvh -tKL -tKL -tKL -tKL -tKL -tKL +eCL +uuJ +ofM +jRq +jRq +jRq +jRq +jRq +jRq isl -tKL +jRq gZu gZu gZu @@ -46278,111 +44443,111 @@ kLI kLI kLI mRB -vnQ -vnQ -vnQ -kMm -vnQ -qQp -mRB -oBb -bhY -fcd -tBz -vnd -lXP -lmp -rnB -rnB -yfN -xmB -gTM -hZs -wbi -hZs -aLR -fNo -gTM -tzr -tOH -hZs -hZs -vgM -vSR -gTM -jtq -rnB -rnB -oto -kiH -tnK -kiH -oto -rnB -rnB -dlz -rnB -rnB -oto -kiH -wIP -kiH -ciZ -rnB -rnB -rnB -rnB -rnB -oto -mho -tnK -kiH -oto -gic -rnB -rnB -rnB -rnB -oto -kiH -tnK -dIC -wVB -wVB -wVB -wGa -ivG -poX -lEf -vnd -uhb -uhb -uhb -uhb -uhb -uhb -xdO -wSc -rhe -xdO -rmh -iIk +fPn +fPn +fPn +aNJ +fPn +gQr +mUz +kpk +xke +suN +glt +mUz +bnA +cae +lRo +lRo +tje +sFe +dmh +iDh +kbZ +iDh +ogh +uqO +dmh +paD +gWX +iDh +iDh +wwm +lTg +dmh +rrq +lRo +lRo +eSj +xQB +rXI +xQB +eSj +lRo +lRo +bXU +lRo +lRo +eSj +xQB +xyr +xQB +nxm +lRo +lRo +lRo +lRo +lRo +eSj +bHo +rXI +xQB +eSj +uKw +lRo +lRo +lRo +lRo +eSj +xQB +rXI +nda +aln +aln +aln +aem +rdJ +xhH +mfd +hpx +hpx +hpx +hpx +hpx +uuJ +uuJ +rnV +ctg +geV +rnV +aZS +eCL avX bjJ iIk iIk iIk -iIk -uhb -qvh -tKL +eCL +wtk +ofM +jRq aTr aTr bSU rlB rlB rlB -tKL +jRq cIh cIh cIh @@ -46472,111 +44637,111 @@ hts kLI kLI mRB -vnQ -vnQ -vnQ -kMm -vnQ -qQp -rHE -mvr -utK -bze -kSI -hcO -rGa -nwq -rLf -rLf -rLf -rLf -rLf -pJZ -wsH -pJZ -nwq -gDD -rLf -rLf -kvN -pJZ -pJZ -rLf -rLf -rLf -bTh -rLf -rLf -nwq -pJZ -fpv -pJZ -nwq -rLf -mQL -cfu -yfC -rLf -nwq -pJZ -wsH -pJZ -nwq -rLf -rLf -rLf -rLf -rLf -nwq -pJZ -fpv -pJZ -nwq -rLf -rLf -rLf -rLf -rLf -nwq -pJZ -uzi -vGd -aQN -vWO -vWO -qJN -dTM -yfC -eBX -vnd -uhb -uhb -uhb -uhb -uhb -uhb -xdO -wSc -dKD -xdO -rmh -iIk +fPn +fPn +fPn +aNJ +fPn +gQr +mUz +tjw +coN +qlV +nhJ +sae +mfb +avx +uLA +uLA +uLA +uLA +uLA +aJU +iTf +aJU +avx +atO +uLA +uLA +iMk +nhV +aJU +uLA +mOF +uLA +dya +uLA +uLA +avx +aJU +aYl +aJU +avx +oFd +hcY +jES +toZ +uLA +avx +aJU +iTf +aJU +avx +uLA +uLA +uLA +uLA +uLA +jJA +aJU +aYl +aJU +avx +uLA +uLA +uLA +uLA +oFd +avx +aJU +wuo +uAy +khG +nxF +fjK +cAo +aCp +dkM +nNn +gvU +uuJ +uuJ +uuJ +uuJ +uuJ +uuJ +sEh +qxf +bEC +rnV +jSU +eCL aJJ bjJ ydV ydV ydV -iIk -uhb -qvh -tKL -tKL -tKL -tKL +eCL +jYD +ofM +jRq +jRq +jRq +jRq fPm qLr rlB -tKL +jRq ddu kLI kLI @@ -46666,70 +44831,70 @@ hts hts hts mRB -vnQ -vnQ -vnQ -kMm -eNF -lHa -eNF -eNF -hRL -hRL -hRL -hRL -hRL -hRL -hRL -hRL +fPn +fPn +fPn +aNJ +rQs +gDB +mUz +mUz +mUz +mUz +mUz +mUz +nKv +nKv +nKv +nKv oSA oSA -hRL -vnd -vnd -vGt -pfl -fdF -jDp -jDp +nKv +gvU +gvU +frE +fRk +wen +vzj +vzj fZN -jDp -dZa -kvW -gJr -gJr -wje -gJr -gJr -gJr -vnd -vnd -bhd -vnd -vnd -lXP -cfu -lEf -gkw -gCF -gCF -vnd -tzc -wZZ -gxO -maQ -maQ -maQ -gxO -rHE -kuS -rHE -rHE -rHE -jPb -rHE -rHE -rHE +vzj +hVs +fRk +mYo +mYo +nCu +mYo +mYo +mYo +uES +gvU +gvU +gvU +gvU +bnA +jES +mfd +exn +azx +azx +gvU +nVc +iOD +tIW +vQk +vQk +vQk +tIW +gvU +nWG +gvU +iow +iow +dMq +dMq +iow +iow mnn ban ban @@ -46739,38 +44904,38 @@ mnn ban mnn sSW -lXP -lEf -vnd -vnd -vnd -vnd -uhb -uhb -uhb -uhb -xdO -wSc -dKD -dKD -dKD -iIk +bnA +aZo +gvU +gvU +gvU +gvU +hOw +hOw +hOw +hOw +sEh +qxf +bEC +rnV +qdz +eCL avX bjJ bjJ bjJ bjJ -iIk -uhb -qvh -tKL +eCL +uuJ +ofM +jRq wGn rhy wPA fKn rlB pFN -tKL +jRq hts hts hts @@ -46860,70 +45025,70 @@ hts hts hts mRB -vnQ -vnQ -vnQ -kMm -vnQ -qQp -vnQ -vnQ -hRL +fPn +fPn +fPn +aNJ +fPn +gQr +fPn +fPn +nKv kgf bYR aTJ fUo tkH -nxx +nvc wOV kOP vUV -hRL +nKv lmG -vnd -vnd -vnd -uNL -jDp +gvU +gvU +gvU +cbL +vzj leX rAt -jDp +vzj bbR bbR -gJr -gAm -eZk -qar -vsD -gJr -tjx -tjx +mYo +nqU +vCt +xLb +fhN +mYo cfF tjx -vnd -lXP -cfu -lEf -hAN -dpZ -eBk -vnd -vnd -vnd -vnd -maQ -maQ -maQ -vnd -yao -sBf -yao -yao -rHE -bhu -czC -sBf -yao +tjx +tjx +gvU +bnA +jES +mfd +pam +sZN +ovT +gvU +gvU +gvU +gvU +vQk +vQk +vQk +gvU +hOQ +hOQ +tuc +vQk +oNM +lbI +lbI +tuc +vQk mnn aEw vFV @@ -46933,38 +45098,38 @@ bkV vkg nGO mnn -lXP -lEf -dLJ -iGf -iGf -vnd -uhb -uhb -uhb -uhb -xdO -wSc -dKD -uhb -uhb -iIk +bnA +aZo +iow +gpj +gpj +gvU +uuJ +uuJ +uuJ +uuJ +sEh +qxf +bEC +rnV +rnV +eCL avX bjJ bjJ bjJ bjJ jGq -dKD -fYY -qQn -avI -wmO -nlr +bEC +waE +cMn +sEA +hwb +fYS cZG mqM uzM -tKL +jRq hts hts hts @@ -47057,12 +45222,12 @@ mRB mRB mRB mRB -kMm -vnQ -qQp -vnQ -vnQ -hRL +aNJ +fPn +gQr +fPn +fPn +nKv bwq shp luM @@ -47072,53 +45237,53 @@ skk lkI wTx pKV -hRL +nKv tjx bbR -tjx +sVL tjx bJc -jDp +vzj sWu fcu -jDp -tjx -tjx -gJr -qlc -xIe -qar -joG -gJr -tjx -tjx +vzj +rJT +btX +mYo +oit +fUt +xLb +sbI +mYo cfF tjx -vnd -lXP -cfu -lEf -aGy -fyu -eBk -vnd -rHE -rHE -vnd -maQ -maQ -maQ -vnd -yao -sBf -sBf -sBf -eqy -sBf -sBf -sBf -yao -caE +tjx +tjx +gvU +tZY +jES +mfd +pfb +hQg +ovT +gvU +gvU +gvU +gvU +vQk +vQk +vQk +gvU +hOQ +hOQ +tuc +vQk +oNM +lbI +lbI +tuc +vQk +mnn pFe tQt fkY @@ -47127,38 +45292,38 @@ pFe pFe aqF ban -lXP -lEf -dLJ -iCP -iCP -vnd -uhb -uhb -uhb -uhb -xdO -wSc -dKD -uhb -uhb -iIk +bnA +aZo +iow +srv +srv +gvU +uuJ +uuJ +uuJ +uuJ +sEh +ymh +ckX +ehF +uuJ +eCL avX avX xrk xrk cZg -iIk -uhb -dKD -tKL -tKL -tKL -tKL -tKL -tKL -tKL -tKL +eCL +uuJ +bEC +jRq +jRq +jRq +jRq +jRq +jRq +jRq +jRq hts hts hts @@ -47251,67 +45416,67 @@ hts hts hts hts -kMm -vnQ -qQp -vnQ -vnQ -hRL +aNJ +fPn +gQr +fPn +fPn +nKv bwq shp shp tqi mvn -khH +rsf lht gub okc -hRL +nKv bbR bbR -tjx +eap tjx bJc -jDp +vzj fsW tfh -jDp -tjx -tjx -gJr -akm -oxe -cIH -tLt -gJr -tjx -tjx +vzj +jGc +cpl +mYo +slU +pOf +lWm +vFK +mYo cfF tjx -vnd -oZa -cfu -lEf -cIJ -poi -eBk -vnd -gxy -tIl -eqy -uyW -uyW -uyW -eqy -sBf -sBf -yao -yao -rHE -ptE -sBf -gxy -gxy +tjx +tjx +gvU +vSf +jES +mfd +iZy +vUt +ovT +gvU +qMI +jCx +rzr +kjn +kjn +kjn +rzr +hOQ +hOQ +tuc +vQk +oNM +lbI +lbI +tuc +vQk mnn uXn pFe @@ -47321,35 +45486,35 @@ wwN pFe tGo ban -lXP -lEf -gxO -nxw -bFD -vnd -uhb -uhb -uhb -uhb -xdO -wSc -dKD -uhb -uhb -iIk -iIk -iIk -iIk -iIk -iIk -iIk -kPj -avF -kPj -vUq -vUq -vUq -xXx +bnA +aZo +tIW +ese +ded +gvU +uuJ +uuJ +uuJ +uuJ +sEh +qxf +bEC +uuJ +uuJ +eCL +eCL +eCL +eCL +eCL +eCL +eCL +kvR +hTE +kvR +aZH +aZH +aZH +boX hts hts hts @@ -47445,105 +45610,105 @@ hts hts hts hts -kMm -vnQ -qQp -qQp -qQp +aNJ +fPn +gQr +gQr +gQr bKo xPY shp ieY -tqi +vls kbe -hRL +nKv nvc nvc rlC -hRL +nKv tjx bbR tjx tjx bJc -jDp -jDp +vzj +vzj mLq -jDp -tjx -tjx -gJr -fjz -kFx -hiA -joG -gJr -tjx -tjx +vzj +uWs +lkm +mYo +gzB +kBt +sVV +sbI +mYo cfF tjx -vnd -lXP -aKK -lEf -eBk -lOJ -eBk -jOU -qQr -qQr -qQr -qQr -qQr -qQr -qQr -qQr -qQr -mRB -rHE -rHE -fJW -rHE -rHE -rHE +tjx +tjx +gvU +bnA +qcY +mfd +nBd +oBf +ovT +dgp +seT +seT +seT +seT +seT +seT +seT +seT +seT +iow +iow +iow +dMq +dMq +iow +iow mnn oOf tNO aHb -esg +tJE txR pFe tGo ban -lXP -vGg -viD -uJm -lEf -vnd -uhb -uhb -uhb -uhb -xdO -wSc -dKD -uhb -uhb -xdO -uhb -uhb -uhb -uhb -uhb -vUq -vUq -duY -vUq -vUq -vUq -vUq -xXx +bnA +gTr +wmU +dBy +mfd +gvU +uuJ +uuJ +uuJ +uuJ +sEh +qxf +bEC +aRq +aRq +sEh +uuJ +uuJ +uuJ +uuJ +sEh +aZH +aZH +paT +kvR +aZH +aZH +aZH +boX hts hts hts @@ -47639,13 +45804,13 @@ unO uoQ kYt hts -kMm -vnQ -qQp -vnQ -vnQ -hRL -bwq +aNJ +fPn +gQr +fPn +fPn +nKv +fcc shp gys xxD @@ -47654,36 +45819,36 @@ qeJ qeJ qeJ fcv -hRL -hho -hho -hho -hho +nKv +boa +boa +boa +boa uEJ jBe -rSN -hIi -tjx -tjx -tjx -gJr -kaJ -wUx -vFX -vAF -gJr -tjx -tjx +cXm +gtP +bbR +bbR +iSv +mYo +ktj +uIW +xRz +bpg +mYo cfF tjx -vnd -fmN -uub -gLR -mRB +tjx +tjx +gvU +osL +qCd +dZc +oDh nfq gvk -mRB +oDh hCZ alw mXb @@ -47692,13 +45857,13 @@ qDh sFz bvp tGw -quY -bRO -bRO -bRO -flD -flD -flD +gca +vQk +vQk +vQk +srv +srv +srv nIe mnn awv @@ -47709,35 +45874,35 @@ pFe pFe kSV ban -rGa -rLf -wsH -rLf -eBX -vnd -uhb -uhb -uhb -uhb -xdO -wSc -dKD -dKD -dKD -cji -dKD -dKD -dKD -dKD -dKD -duY -duY -duY -vUq -vUq -vUq -vUq -xXx +mfb +voM +iTf +uLA +nNn +gvU +uuJ +uuJ +uuJ +uuJ +sEh +qxf +bEC +bEC +bEC +nyq +bEC +bEC +bEC +bEC +nyq +paT +paT +paT +kvR +aZH +aZH +aZH +boX hts hts hts @@ -47833,12 +45998,12 @@ nTu vLN eoB hts -kMm -vnQ -qQp -vnQ -vnQ -hRL +aNJ +fPn +gQr +fPn +fPn +nKv bcL mij mij @@ -47852,32 +46017,32 @@ ftt tXj rhr lFf -hho -hho +boa +boa aZw tfH dLL cQw cQw -syg -rzS -kmh -aiO -qhk -vFX -gJr -tjx -tjx +qef +arH +cry +xYZ +mGy +xRz +mYo cfF tjx -vnd -lXP -aKK -lEf +tjx +tjx +gvU +bnA +qcY +mfd mCS mbx xOu -mRB +oDh uXQ tGw dSJ @@ -47886,52 +46051,52 @@ tGw tGw abW tGw -quY -bRO -bRO -bRO -flD -flD -flD +gca +vQk +vQk +vQk +srv +srv +srv nIe mnn mnn mnn mnn -oDw +sDS pFe pFe kSV mnn -mwq -vnd -vnd -bhd -vnd -vnd -uhb -uhb -uhb -uhb -xdO -wSc -dKD -uhb -uhb -xdO -uhb -uhb -uhb -uhb -uhb -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +byD +qok +gvU +gvU +gvU +gvU +uuJ +uuJ +uuJ +uuJ +sEh +ejP +gce +oLS +uuJ +sEh +uuJ +uuJ +uuJ +uuJ +sEh +aZH +aZH +aZH +kvR +aZH +aZH +aZH +boX hts hts hts @@ -48027,22 +46192,22 @@ meY phS qCN hts -kMm -wjf -qQp -vnQ -vnQ -hRL +aNJ +tSq +gQr +fPn +fEH +nKv nvc nvc nvc -hRL +nKv nRX nRX nvc nvc nvc -hRL +nKv rRj lOl lOl @@ -48054,24 +46219,24 @@ pzf jBe jBe dXq -gJr -gJr -gJr -gJr -gJr -gJr -tjx -tjx +mYo +mYo +mYo +mYo +mYo +mYo cfF tjx -vnd -lXP -cfu -lEf +tjx +tjx +gvU +bnA +jES +mfd vre vUC nxV -mRB +oDh tPq tGw paB @@ -48080,52 +46245,52 @@ sxk sxk eXV tGw -qQr -qQr -vDJ -vDJ -flD -flD -izf -uGI -uGI -dUX -dUX +seT +seT +pid +pid +srv +srv +tIW +duL +duL +jmn +jmn mnn oDw pFe pFe ePy mnn -uhb -uhb -uhb -dKD -uhb -xdO -uhb -uhb -uhb -uhb -xdO -wSc -dKD -uhb -uhb -xdO -uhb -uhb -uhb -uhb -uhb -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +jYD +qRL +uuJ +uuJ +uuJ +sEh +uuJ +uuJ +uuJ +uuJ +sEh +qxf +bEC +pUB +uuJ +sEh +uuJ +uuJ +uuJ +uuJ +sEh +aZH +aZH +aZH +kvR +aZH +aZH +aZH +boX hts hts hts @@ -48221,12 +46386,12 @@ qFL efD ukt hts -kMm -qQp -qQp -vnQ -vnQ -mnk +aNJ +gQr +gQr +fPn +fcb +rqL ePr ePr ePr @@ -48236,32 +46401,32 @@ lUg nPo ePr ePr -mnk +rqL qrC wiv ehw lnu -hho +boa cPD uws hIi tjx tjx cfF +jZp tjx tjx tjx -tjx -tjx -tjx -tjx -tjx +kjG +bbR cfF tjx -vnd -lXP -cfu -lEf +tjx +tjx +gvU +bnA +jES +mfd vre iGY xLA @@ -48276,50 +46441,50 @@ ibO tGw tGw anh -flD -flD -flD -flD -rHE -qwG -dUX -dUX -dUX +srv +aQy +chl +srv +gvU +bGg +jmn +jmn +jmn mnn fyf jLH eeX pFe mnn -uhb -uhb -uhb -dKD -uhb -xdO -xdO -xdO -xdO -xdO -xdO -pmO -xdO -xdO -mdh -mdh -mdh -mdh -mdh -mdh -mdh -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +wtk +qRL +uuJ +uuJ +uuJ +sEh +sEh +sEh +sEh +sEh +sEh +bsh +sEh +sEh +xQE +xQE +xQE +xQE +xQE +xQE +xQE +kvR +kvR +kvR +kvR +aZH +aZH +aZH +boX hts hts hts @@ -48415,9 +46580,9 @@ mZu xwX tWA hts -kMm -jgr -qQp +aNJ +fvO +gQr tqn kqG kqG @@ -48430,36 +46595,36 @@ ijK nPo ePr ePr -mnk +rqL nEV wiv ehw ebx -hho +boa wmH uws hIi tjx +gGr +cfF +cfF +cfF +cfF +cfF +cfF +ndw +cfF +cfF +cfF tjx -cfF -cfF -cfF -cfF -cfF -cfF -cfF -cfF -oGc -oGc -qEu -vnd -tfz -cfu -lbZ +gvU +dUc +jES +egA hHg nUu trS -mRB +oDh lSm knG stM @@ -48469,51 +46634,51 @@ cid qwI tGw tGw -quY -flD -cOw -flD -flD -rHE -qwG -dUX -dUX -dUX +gca +srv +byE +oQW +wTr +gvU +bGg +jmn +jmn +jmn mnn elK mnn mnn mnn mnn -uhb -uhb -uhb -dKD -uhb -uhb -uhb -xdO -uhb -uhb -uhb -kcW -fQc -wEa -mqm -vbf -naT -vmY -dfE -aKp -mdh -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +uuJ +qRL +uuJ +uuJ +uuJ +uuJ +uuJ +sEh +uuJ +uuJ +aRq +vir +jSx +kIt +yiW +hyn +jez +mwL +jIs +ehL +xQE +aZH +aZH +aZH +kvR +aZH +aZH +aZH +boX hts hts hts @@ -48609,9 +46774,9 @@ lFs fla kxT hts -kMm -jgr -qQp +aNJ +fvO +gQr kqG bRO bRO @@ -48624,36 +46789,36 @@ ijK nPo ePr ePr -mnk +rqL nEV aso kOw kOw -hho +boa wmH -hqC -qPt +gPQ +scC xLF +koJ +tjx +jZp tjx tjx tjx tjx +bbR tjx tjx +cfF tjx -tjx -tjx -qEu -oGc -qEu -vnd -hUk -pbp -wdg +gvU +mpH +qvi +vmh rEo oaf -vNs -mRB +sxa +oDh eJJ wWB pjx @@ -48663,51 +46828,51 @@ tGw tGw tGw tGw -qQr -uGI -uGI -uGI -uGI -uGI -dUX -dUX -dUX -dUX -xdO -xzO -uhb -uhb -uhb -uhb -uhb -uhb -uhb -dKD -uhb -uhb -uhb -xdO -uhb -uhb -uhb -ktE -uhb -cur -mdh -qXz -qXz -mnW -dfE -unu -mdh -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +seT +gvU +gos +gvU +gvU +gvU +jmn +jmn +jmn +jmn +sEh +ycY +uuJ +mrc +uuJ +iIC +uuJ +qRL +uuJ +uuJ +uuJ +uuJ +uuJ +sEh +uuJ +uuJ +aRq +ycY +pYL +wEO +xQE +jJi +jJi +jPH +jIs +tAR +xQE +aZH +aZH +aZH +kvR +aZH +aZH +aZH +boX hts hts hts @@ -48799,13 +46964,13 @@ hts hts hts hts -siB +qNC rHE ujw hts -kMm -eNF -lHa +aNJ +rQs +gDB kqG bRO bRO @@ -48823,31 +46988,31 @@ nEV aso kOw kOw -fRX -fRX -dAz -fRX -uxG -fRX -tYj -tYj -iny -iny -iny -iny -iny -iny -qEu -oGc -qEu -vnd -tfz -cfu -lbZ +aIb +aIb +cHF +aIb +rUw +aIb +qXw +qXw +oEJ +oEJ +oEJ +oEJ +oEJ +oEJ +tjx +cfF +tjx +gvU +dUc +jES +egA wKl jmu mZV -mRB +oDh nET gzJ fpe @@ -48858,50 +47023,50 @@ tGw tGw tGw hKb -twn -jDI -jDI -dtB -jDI -jDI -jDI -jDI -jDI -ogS -wXq -dKD -dKD -dKD -dKD -dKD -uhb -uhb -dKD -uhb -uhb -uhb -xdO -uhb -uhb -uhb -ktE -bWG -cur -mdh -cXe -iAt -avy -mnW -cXe -mdh -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +vao +wVX +bDD +cLo +umt +bDD +bDD +bDD +bqz +oWs +vZk +aAo +czE +mqE +lQK +mqE +ezu +uuJ +uuJ +uuJ +uuJ +uuJ +sEh +uuJ +uuJ +aRq +ycY +gLm +dWm +xQE +lPt +eIw +jQS +jPH +lPt +xQE +aZH +aZH +aZH +kvR +aZH +aZH +aZH +boX hts hts hts @@ -48997,9 +47162,9 @@ edt phS fcA hts -kMm -vnQ -qQp +aNJ +fPn +gQr kqG bRO bRO @@ -49017,85 +47182,85 @@ nEV aso kOw kOw -fRX -nVA -cpY -sev -iiT -fRX +aIb +tvf +aJn +boM +wkW +aIb krg iff -iny +oEJ xgn xpR xpR ezV -iny -qEu -oGc -qEu -vnd -lXP -cfu -lEf -lEZ -mRB -mRB -mRB -qQr -qQr +oEJ +tjx +cfF +tjx +gvU +bnA +jES +mfd +eLM +oDh +oDh +oDh +seT +seT jgk -qQr +seT jCI jCI mbJ jCI jCI -qQr -lUu -kTP -dUX -dUX -dUX -dUX -dUX -dUX -dUX -xdO -ton -ton -ton -ton -uhb -lQI -gCh -gCh -gCh -gCh -gCh -gCh -wxk -gCh -qdJ -wDB -ktE -uhb -cur -mdh -opX -qXz -jXF -cYm -cXe -mdh -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +seT +vGL +ppz +jmn +duL +qXn +jmn +kce +jmn +cbU +lEO +bEC +bEC +bEC +bEC +bEC +bKZ +pDn +pDn +pDn +pDn +pDn +pDn +lTl +pDn +quC +fVD +ycY +hTA +dCu +xQE +huZ +jJi +diK +orw +lPt +xQE +aZH +aZH +aZH +kvR +kvR +kvR +kvR +boX hts hts hts @@ -49191,9 +47356,9 @@ jtK xGQ ghs hts -kMm -vnQ -qQp +aNJ +fPn +gQr kqG bRO bRO @@ -49211,85 +47376,85 @@ nEV aso kOw kOw -fRX -iNi -kXw -sev -dnW -fRX +aIb +tiR +tmM +boM +dnP +aIb vlr xzC -iny +oEJ pGH ryW wtR -epo -iny +kOt +oEJ tjx cfF tjx -qzB -lXP -veU -qrP -wmR -wYE -mTp +mOg +bnA +suR +pFE +ctG +nGt +nTA qer eDv oTE hjc -vtG +wxj tbW vaC hcm -hcm +htM ejn -vtG -lUu -kTP -dUX -tWc -tWc -tWc -tWc -tWc -tWc -tWc -wFw -vUL -uTH -ton -uhb -rKv -uhb -uhb -uhb -uhb -uhb -uhb -lQA -lQA -aGI -lQA +wxj +vGL +vHM +mMA +qJj +qJj +qJj +qJj +qJj +qJj +qJj +jYD +wtk +pUB +uuJ +uuJ +gnV +uuJ +uuJ +uuJ +uuJ +uuJ +uuJ +mSp +mSp +mUM +mSp lHE -lQA -cur -mdh -nNy -fXe -pne -qpT -cSX -mdh -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +mSp +dCu +xQE +wPV +kti +dRL +uTM +gew +xQE +aZH +aZH +aZH +kvR +aZH +aZH +aZH +boX hts hts hts @@ -49385,9 +47550,9 @@ rSz cPC flY hts -kMm -vnQ -qQp +aNJ +fPn +gQr tqn kqG kqG @@ -49400,90 +47565,90 @@ ijK nPo ePr ePr -mnk +rqL nEV aso kOw kOw -fRX -eCb -aiv -ogH -ucS -fRX +aIb +wGq +jja +vqh +oNl +aIb vlr xzC -iny +oEJ avG rhW -epr +bzl ecv -iny +oEJ tjx cfF cfF -vnd -aek -eBk -aKz -vnd -vnr -mTp +gvU +aBQ +ovT +jNV +gvU +vcc +nTA fNY iqp kNV amq -vtG +wxj rPD ngH hcm -nEX +dvv wbN -vtG -lUu -kTP -dUX -tWc +wxj +vGL +jSg +neY +qJj tAa ewS rQV bWx efZ -tWc -poO -rDL -qTw -ton -ton +qJj +xMv +xMv +xMv +xMv +xMv cLB -ton -ton -ton -ton -ton -ton -lQA +xMv +xMv +xMv +xMv +xMv +xMv +lMR xPo wtp qaV eUa -lQA -cur -mdh -iAt -rRc -jHq -kyQ -keD -mdh -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +mSp +dCu +xQE +eIw +gSp +qXZ +npD +eRO +xQE +aZH +aZH +aZH +kvR +aZH +aZH +aZH +boX hts hts hts @@ -49579,11 +47744,11 @@ hts hts hts hts -kMm -vnQ -qQp -vnQ -mnk +aNJ +fPn +gQr +fPn +rqL lbH nPo ePr @@ -49594,50 +47759,50 @@ ijK evK hrF hrF -mnk +rqL qrC odb iZL twQ -fRX -cSo -mbQ -kZp -hrK -uOw +aIb +uCn +eWx +dvl +qKy +nCb hnu eLI -iny +oEJ rsK tnA dho ukE -iny +oEJ tjx cfF wmH -vnd -bgh -aUN -oDq -vnd -vnr -mTp +gvU +qKi +tSI +hiR +gvU +vcc +nTA amI bak vHD -rdO -kxC -cYZ -qaf -bdS -hcm +qwi +veZ +oQg +jgS +tMB +wjP eJU -vtG -lUu -kTP -dUX -tWc +wxj +vGL +nbs +jTq +qJj xhx hak iIV @@ -49656,28 +47821,28 @@ sEE cdp foC foC -lQA +lMR txM aNT oHn aIM -lQA -cur -mdh -qXz -fXe -cNL -qPX -mnW -mdh -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +mSp +dCu +xQE +jJi +kti +fTQ +ekC +jPH +xQE +kvR +kvR +kvR +kvR +aZH +aZH +aZH +boX hts hts hts @@ -49773,10 +47938,10 @@ hts hts hts hts -kMm -vnQ -qQp -qQp +aNJ +fPn +gQr +gQr jdU rAT nPo @@ -49791,47 +47956,47 @@ ijK mUi joM rWy -rhr +wLq xNW -fRX -iNi -kXw -gtL -iOH -fRX +aIb +tiR +tmM +ofv +toH +aIb rvB eLI -iny +oEJ xgt lWl sEw kra -iny +oEJ tjx cfF kug -vnd -rGa -rLf -eBX -vnd -vnr -mTp +gvU +mfb +uLA +nNn +gvU +vcc +nTA sBz -pff -pff -pff -vtG +bMR +bMR +bMR +wxj dVB nEQ sXb jNW tJO -vtG -lUu -kTP -dUX -tWc +wxj +vGL +lIK +jmn +qJj dGm hak jXG @@ -49842,7 +48007,7 @@ ibm biI dUJ nNs -hNT +nyV jOF ozO ozO @@ -49850,28 +48015,28 @@ ozO niM foC foC -lQA +lMR gDo heV oHn hEr -lQA -cur -mdh -nib -hUz -jsC -mnW -mnW -mdh -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +mSp +dCu +xQE +erY +gzs +xbV +jPH +jPH +xQE +aZH +aZH +aZH +kvR +aZH +aZH +aZH +boX hts hts hts @@ -49967,65 +48132,65 @@ hts hts hts hts -kMm -vnQ -vnQ -tEB -tEB +aNJ +fPn +fPn +wCD +wCD xZG lfU lfU -tEB -mnk +wCD +rqL iwS iwS flg flg flg -mnk +rqL edL npK vIh xNW -fRX -sPv -loJ -lEF -iXV -fRX -lPd -esr -iny -iny -iny +aIb +rSG +fgi +koA +plE +aIb +bga +jwS +oEJ +oEJ +oEJ qRB -iny -iny +oEJ +oEJ tjx cfF tjx -vnd -iCP -iCP -iCP -vnd -sDc -wYE -fjZ -dUX -dUX -dUX -vtG +gvU +srv +srv +srv +gvU +dTI +nGt +twy +jmn +jmn +jmn +wxj dwG uLV hRp gWM hAM -vtG -lUu -kTP -jBk -nOX +wxj +vGL +lIK +xyS +nkk uOf hak wmv @@ -50044,28 +48209,28 @@ oYL naW foC foC -lQA -lQA -lQA +lMR +mSp +mSp yaZ -lQA -lQA -bdP -mdh -fNj -mdh -mdh -mdh -mdh -mdh -vUq -vUq -vUq -vUq -vUq -vUq -xXx -xXx +mSp +mSp +svO +xQE +aPF +xQE +xQE +xQE +xQE +xQE +aZH +aZH +aZH +kvR +aZH +aZH +boX +boX hts hts hts @@ -50161,36 +48326,36 @@ hts hts hts hts -kMm -vnQ -vnQ -tEB +aNJ +fPn +fPn +wCD dXA jQw tev xMW -tEB +wCD wQJ nSw nSw nSw nSw nSw -mnk +rqL fQz -hho -hho -hho -fRX -tnY -fRX -fRX -fRX -fRX +boa +boa +boa +aIb +tOq +aIb +aIb +aIb +aIb bLr eLI eZZ -iIu +cBv ovn lcP nHf @@ -50198,67 +48363,67 @@ xcp cfF cfF ojG -vnd -seW -seW -seW -vnd -uGI -vnr -fjZ -dUX -dUX -dUX -vtG +gvU +afs +afs +afs +gvU +duL +nmD +wHJ +jmn +jmn +jmn +wxj xlM aFc qGs uVe kRx -vtG -lUu -kTP -iqT -tWc +wxj +vGL +lIK +cWD +qJj vww oBO lXo oZc -heX -tWc +saC +qJj poO rDL qTw -ton +xMv mBg ado tqn nnS nnS kqG -eMP -kPj -kPj -vUq -vUq -fWz -eoa -eoa -rcE -eoa -fiR -eoa -eoa -sGd -kPj -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +qtm +tRb +tRb +aZH +aZH +baW +jJQ +jJQ +iOK +jJQ +foE +jJQ +jJQ +aFW +kvR +aZH +aZH +aZH +aZH +kvR +aZH +aZH +boX hts hts hts @@ -50355,13 +48520,13 @@ hts hts hts hts -kMm -vnQ -vnQ -tEB +aNJ +fPn +fPn +wCD iVx rTe -lou +ngW uBL sEI xPZ @@ -50370,89 +48535,89 @@ rnc bgs bcK nSw -mnk -kIk -dbB -mDQ -vrx -tYj +rqL +dAV +qJx +tDH +sZQ +qXw kzs eLI ryr lel -tYj +qXw hPh eLI sjc -iIu +cBv ndE dTK imr -iIu +cBv bbR qLw bbR -vnd -vnd -vnd -vnd -vnd -xwJ -vnr -wSd -dUX -dUX -dUX -vtG +gvU +gvU +gvU +gvU +gvU +kcD +vcc +nle +jmn +jmn +jmn +wxj nDl aqk vtG tAT hYi -vtG -lUu -qix -uGI -tWc -tWc -tWc -tWc -tWc -tWc -tWc +wxj +gRV +duL +duL +qJj +qJj +qJj +qJj +qJj +qJj +qJj lkt liy xJo -ton +xMv wek tcJ ggs bRO bRO bRO -iIs -vUq -vUq -xoe -kAz -oqt -hwj -vUq -tVi -vUq -wnT -vUq -vUq -vUq -kPj -vUq -vUq -vUq -vUq -vUq -vUq -vUq -xXx +bKr +aZH +aZH +gli +dln +iqZ +xJE +gUQ +tmY +aZH +xjy +aZH +aZH +aZH +kvR +aZH +aZH +aZH +aZH +kvR +aZH +aZH +boX hts hts hts @@ -50549,104 +48714,104 @@ hts hts hts hts -kMm -kMm -kMm -opA +aNJ +aNJ +aNJ +wCD rHo wvx iCE goM -tEB +wCD cVc nSw -nSw +hhK rrR rYi bnI -mnk -kIk -dbB -dbB -tLC -tYj +rqL +hIa +spg +kKv +bda +qXw vQt eLI yky jhD -tYj +qXw dlV tsx agJ gsb rZl -jxz +gzC jQo -iIu -gET -oYy -rXk -otN -wDS -wDS -otN -uGI -sXB -vnr -wSd -dUX -dUX -dUX -vtG -vtG -vtG -vtG -vtG -vtG -vtG -lUu -kTP -dUX -dUX -dUX -dUX -ton +cBv +bSH +anz +vZW +qva +pHK +pHK +qva +duL +byt +kgi +hIZ +jmn +jmn +jmn +wxj +wxj +wxj +wxj +wxj +wxj +wxj +vGL +duL +hal +cNa +aLS +aLS +xMv dTF jJf -ton -ton -ton -ton -ton +xMv +xMv +xMv +xMv +xMv coC rjC ggs bRO bRO bRO -frL -vUq -vUq -xoe -pGh -fyW -aoY -vUq -tVi -duY -tVi -duY -duY -duY -fRS -duY -vUq -vUq -vUq -xXx -xXx -xXx -xXx +jfV +aZH +aZH +gli +hwM +rZB +oaW +aZH +fdb +aZH +xjy +aZH +aZH +aZH +jTc +aZH +aZH +aZH +aZH +boX +boX +boX +boX hts hts hts @@ -50746,12 +48911,12 @@ hts hts kLI kLI -opA -opA -jtc +wCD +wCD +vuh aDW -ylF -tEB +eXp +wCD uNX mTi hYW @@ -50759,52 +48924,52 @@ gdJ fyF ewB leg -cdI -irU -qPR -aOi +cXf +pDg +rzR +wjX tBx iSr ohk hSH ohk -uBT +eaQ ohk pXl pbq -iIu +cBv iTq ske wRL -iIu -gET -oYy -oYy -oYy -oYy -oYy -oYy -xhQ -oUC -gVd -xQN -dUX -dUX -dUX -uGI -dUX -dUX -dUX -dUX -dUX -uGI -lUu -kTP -dUX -dUX -dUX -dUX -ton +cBv +bSH +anz +anz +anz +anz +anz +anz +uIg +tzk +sBW +omf +hHl +hHl +hHl +duL +jmn +jmn +jmn +jmn +jmn +jmn +vGL +duL +qMk +bFh +lIK +vaX +xMv xlg ozO fha @@ -50818,26 +48983,26 @@ ggs bRO bRO bRO -iIs -vUq -vUq -xoe -fBy -vQp -jto -vUq -tVi -vUq -wnT -vUq -vUq -vUq -kPj -vUq -vUq -xXx -xXx -xXx +bKr +aZH +aZH +gli +gEI +oyt +aey +aZH +fdb +aZH +xjy +aZH +aZH +aZH +kvR +aZH +aZH +boX +boX +boX kLI kLI hts @@ -50942,63 +49107,63 @@ kLI kLI kLI kLI -opA -opA -opA -opA -vZL +wCD +wCD +wCD +wCD +bxl hZo -nSw +vRr vzp liO nSw -mnk -rpd -dbB -mZW -nHz -tYj +rqL +kJy +kKv +puw +cac +qXw hWs eLI cdr eLI reS -eLI +noC bgO nuY -iIu +cBv vzY hVv sCF -iIu -ihw -hYa -hYa -evc -hYa -hYa -evc -uGI -nEh -kTP -bxX -jDI -jDI -jDI -qkq -jDI -jDI -xzy -jDI -jDI -qkq -oLq -kTP -dUX -dUX -dUX -dUX -oNJ +cBv +vuP +urH +urH +nHl +urH +urH +nHl +duL +sFw +lIK +aIX +les +les +les +kKS +les +les +jRZ +les +les +les +kud +duL +uht +lIK +frN +vyv +xMv ozO ozO ozO @@ -51012,24 +49177,24 @@ tqn kqG kqG kqG -eMP -vUq -vUq -xoe -xoe -xoe -xoe -vUq -tVi -vUq -wnT -vUq -vUq -vUq -xXx -xXx -xXx -xXx +qtm +aZH +aZH +gli +gli +gli +gli +pkG +dzb +aZH +xjy +aZH +aZH +aZH +boX +boX +boX +boX kLI kLI kLI @@ -51140,87 +49305,87 @@ kLI kLI kLI kLI -vZL -vZL -vZL -vZL +bxl +bxl +bxl +bxl nSw nSw -mnk -fsK -dbB -mZW -nHz -tYj -tYj -tYj +rqL +rnM +kKv +puw +cac +qXw +qXw +qXw rXU vwk drw -mGl -mGl +kqv +kqv cWH -mGl -mGl -mGl -mGl -seF -qll -qll -qll -qll -qll -qll -qll -mFj -nEh -kTP -eqA -kTP -kTP -kTP -kTP -kTP -kTP -lUu -kTP -kTP -kTP -kTP -kTP -dUX -uGI -pqK -pqK -ton +kqv +kqv +kqv +kqv +cdB +wZn +wZn +wZn +wZn +wZn +wZn +wZn +mkf +eBS +lIK +nSu +lIK +lIK +lIK +bxt +lIK +lIK +nkK +iQg +hWi +lIK +lIK +duL +uht +dSr +dSr +dSr +xMv wMs ozO -mnh +eDG cQi dAk -ton -ton +xMv +xMv qje klp sWM -cZY -cZY -cZY -cZY -cZY -cZY -cZY -cZY -xef -cZY -cZY -iOm -qcy -iKF -xXx -xXx -xXx -xXx +gWB +gWB +gWB +gWB +gWB +gWB +gWB +gWB +lpG +jPu +gWB +rly +qLM +mWP +boX +boX +boX +boX kLI kLI kLI @@ -51337,81 +49502,81 @@ kLI kLI kLI kLI -vZL -vZL -vZL -mnk -eeS -gkr -oDn -pOt -rAD -txm -tYj -tYj -tYj -tYj -mGl +bxl +bxl +bxl +rqL +bZI +yhH +fbP +vZo +qhm +oVH +qXw +qXw +qXw +qXw +kqv nBI vIx xLZ faq toG bDm -seF -pUO -eze -cvZ -fVs -fVs -eze -mla -mFj -nEh -tnN -bkb -tnN -tnN -tnN -tnN -tnN -dUX -whh -dUX -dUX -uGI -uGI -uGI -uGI -uGI -bRO -bRO -ton +cdB +xAn +nhA +cuq +sOz +sOz +nhA +vGH +mkf +sFw +eeE +tPa +eeE +eeE +eeE +eeE +eeE +jmn +yeQ +qXn +nNl +dSr +dSr +dSr +fdR +dSr +aeM +aeM +xMv ddp ddp -kTA +aoH pLr mlQ -ocF -ocF -ocF -ocF -ocF -lgC -xXx -xXx -xXx -xXx -vUq -vUq -kPj -kPj -kPj -kPj -mEQ -xXx -xXx -xXx +cis +cis +cis +cis +cis +sEr +boX +boX +boX +boX +aZH +aZH +kvR +kvR +kvR +kvR +nSY +boX +boX +boX kLI kLI kLI @@ -51533,57 +49698,57 @@ kLI kLI kLI kLI -nFq -nFq +ajb +ajb kKe -ojv -mZW -dbB -pjs -pjs -xYo -xYo -yao -yao -mGl +iDj +puw +kKv +jce +rNx +gxy +uvG +soB +aPu +kqv jHh qmQ oAc wFz aaz wFz -seF -hBN -eze -eze -eze -eze -eze -maZ -mFj -nEh -tnN -sBI -egL -vpH -aLo -qos -tnN -uGI -jyj -uGI -uGI -rHE -kTk -kTk -eGG -lEd -bRO -bRO -ton +cdB +rqO +nhA +nhA +nhA +nhA +nhA +iHT +mkf +sFw +eeE +fEL +pWj +sOl +vsg +itp +eeE +duL +qgT +duL +duL +dSr +wJc +wJc +boW +wNv +aeM +aeM +xMv buh fMj -kTA +aoH rel wdV eSZ @@ -51595,15 +49760,15 @@ qyp kLI kLI kLI -xXx -vUq -vUq -kPj -vUq -enz -cZY -iCo -xXx +boX +aZH +aZH +kvR +aZH +jsj +hvz +rot +boX kLI kLI kLI @@ -51727,14 +49892,14 @@ kLI kLI kLI kLI -nFq +ajb jzo lBf -ojv -mZW -dbB -pjs -pjs +iDj +puw +kKv +sPy +sPy xYo xYo yao @@ -51746,58 +49911,58 @@ ebW duQ pWE vjK -seF -dub -qBJ -tlQ -tyL -eiW -qBJ -hgX -mFj -lsZ -tnN -swz -bum -uIk -qDN -nfw -tnN -dUX -whh -dUX -dUX -rHE -hts -hts -eGG -lEd -bRO -bRO -ton +cdB +otm +tzX +dmn +tVc +agf +tzX +tUD +mkf +cUs +eeE +sRz +lgM +dlM +eyC +okn +eeE +gZp +ooG +jmn +jmn +dSr +bcI +bcI +boW +jVl +iNF +iNF +oNJ qpp uue -kTA +aoH ktS rEO ijM sKv nJy kSy -qIW +don qyp kLI kLI kLI -xXx -vUq -vUq -kPj -vUq -vAy -vUq -vUq -xXx +boX +aZH +aZH +kvR +qUd +bcZ +aZH +aZH +boX kLI kLI kLI @@ -51869,37 +50034,37 @@ hts hts hts hts -tSA -tZc -tZc -aXU -iiv -gHx -jJI -pKw -cFw -jSN -kTu -eqZ -iPy -dVF -eYK -dVF -tAh -eqZ -eqZ -pUd -pDJ -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +xPj +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -51921,77 +50086,77 @@ kLI kLI kLI kLI -nFq +ajb aOc iaY -ojv -mZW -uIy -uIy -uIy +iDj +puw +mYy +mYy +mYy mRB mRB mRB mRB -seF +cdB aQJ qLl -rrk +xoo ebW rrk eTw -seF -mFj -mFj -mFj -mFj -vXP -mFj -mFj -mFj -uvh -tnN -oxG -arm -pld -nbT -hiK -tnN -dUX -whh -dUX -dUX -rHE -xAr -xAr -xAr -xAr -xAr -xAr -ton +cdB +mkf +mkf +mkf +mkf +oDY +mkf +mkf +mkf +sfl +eeE +akq +jPv +tPg +dHJ +ukx +eeE +jmn +yeQ +jmn +neY +dSr +iNF +vjz +jzL +iNF +qSS +iNF +xMv rRf sOc -kTA +aoH rel wdV -ocF -ocF -ocF +cis +cis +cis xSH -ocF -lgC +cis +sEr kLI mRB mRB -xXx -vUq -vUq -kPj -vUq -vAy -vUq -vUq -xXx +boX +aZH +aZH +kvR +gUQ +tmY +aZH +aZH +boX kLI kLI kLI @@ -52063,37 +50228,37 @@ hts hts hts hts -nNu -tZc -czZ -cFw -pKw -pKw -pKw -pKw -cFw -fsw -pnn -eqZ -iPy -dVF -dVF -dVF -dVF -uZk -eqZ -pUd -pDJ -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +jKj +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -52115,77 +50280,77 @@ kLI kLI kLI kLI -nFq +ajb oYt sic -ojv -mZW -uIy +iDj +puw +mYy kLI mRB mRB mRB mRB fOb -seF +cdB aQJ qLl eTw upo eTw rrk -mGl -bSI -bSI -rZx -hlW -nLj -bSI -bSI -bSI -uvh -tnN -fbU -wzU -kYs -rSX -nfw -tnN -dUX -whh -kTP -kTP -orl -flD -xAr -xAr -xAr -uXF -flD -ton +kqv +sZU +sZU +rdE +jSS +sjV +sZU +sZU +kbi +gFh +eeE +haJ +nuU +uGl +fFC +okn +eeE +jmn +hGh +vYS +vYS +cxc +nzi +feJ +kRs +bXy +vZE +hCF +xMv foC foC -kTA +aoH xXl ggn -ocF +cis hnk hJT lFA iOu -lgC +sEr kLI mRB mRB -xXx -xXx -xXx -xXx -vUq -vAy -vUq -vUq -xXx +boX +boX +boX +boX +aZH +bcZ +aZH +aZH +boX kLI kLI kLI @@ -52257,37 +50422,37 @@ hts hts hts hts -rHE -cFw -cFw -cFw -gnC -keU -lAX -lAX -neR -uXi -jQV -jQV -arG -jQV -uXi -nsO -dVF -rdF -eqZ -fCQ -pDJ -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -52309,77 +50474,77 @@ kLI kLI kLI kLI -nFq -nFq +ajb +ajb bha -ojv -mZW -uIy +iDj +puw +mYy nqw hYb hYb mRB mRB bRO -seF +cdB wFz lKY upo nJI pWE vjK -mGl -bSI -bSI -fpP -hlW -lLx -vKV -vKV -vKV -pMc -tnN -vxM -egL -kFc -eyR -xci -tnN -dUX -whh -uGI -uGI -rHE -izf -flD -flD -flD -flD -izf -ton +kqv +sZU +sZU +gQE +jSS +upY +pyY +pyY +pyY +mvW +eeE +jjq +pWj +kWr +lGL +ljd +eeE +jmn +yeQ +duL +duL +dSr +gyX +hCF +bpe +hCF +hCF +gyX +xMv foC foC -kTA +aoH aMv cxs -ocF -ocF -ocF -ocF -ocF -lgC +cis +cis +cis +cis +cis +sEr rgm mRB mRB mRB tAx hYb -xXx -vUq -vAy -vUq -vUq -xXx +boX +pkG +qfW +aZH +aZH +boX kLI kLI kLI @@ -52451,37 +50616,37 @@ hts hts hts hts -rHE -fYC -swH -pKw -mis -rbR -pKw -sJL -iny -iny -iny -iny -iny -iny -iny -neu -dVF -eqZ -eqZ -fCQ -pDJ -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -52503,57 +50668,57 @@ kLI kLI kLI kLI -uIy -dbB -jGH -aCX -cUK -uIy +mYy +kKv +gaL +xKM +kup +mYy tAx kLI tAx hEu kLI kLI -seF +cdB eTw qLm tgP wFz aaz wFz -mGl -bSI -inU -wox -hlW -bSI -bSI -bSI -bSI -uvh -tnN -gDu -tnN -tnN -tnN -tnN -tnN -dUX -emC -qkq -jDI -fxW -rHE -rHE -rHE -rHE -rHE -rHE -ton +kqv +sZU +nRU +tjA +jSS +mbT +sZU +sZU +vKw +vFZ +eeE +iDV +eeE +eeE +eeE +eeE +eeE +hBW +rGd +kKS +les +mpR +dSr +dSr +dSr +dSr +dSr +dSr +xMv foC foC -kTA +aoH rel wdV vRu @@ -52568,12 +50733,12 @@ kLI kLI tAx kLI -xXx -duY -vAy -vUq -vUq -xXx +boX +paT +bcZ +aZH +aZH +boX kLI kLI kLI @@ -52645,37 +50810,37 @@ hts hts hts hts -rHE -qCK -pRJ -pKw -mis -mis -mis -mis -iny -qox -rdB -kGt -duJ -wxr -iny -iPy -dVF -eqZ -eqZ -fCQ -lBl -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -52697,64 +50862,64 @@ kLI kLI kLI kLI -uIy -dbB -dbB -dbB -mZW -uIy +mYy +kKv +kKv +kKv +puw +mYy kLI kLI kLI kLI kLI kLI -seF +cdB upo rrk fzu ahy wFz qMT -mGl -hlW -hlW -ldZ -hlW -bSI -bSI -bSI -bSI -uvI -eVN -riz -fuO -pJW -pJW -pJW -pJW -pJW -lzK -pJW -pJW -sJN -ekK -dUX -dUX -dUX -dUX -dUX -ton -ton -ton -kTA +kqv +jSS +jSS +eiy +jSS +hAB +sZU +sZU +sZU +hzg +pCZ +vCf +eIt +pPp +pPp +pPp +pPp +pPp +oUm +bRv +pPp +sKs +xWO +jmn +jmn +jmn +jmn +jmn +xMv +xMv +xMv +aoH vNL rEO gNn xak bmr knD -dQl +lHw vjy kLI kLI @@ -52762,12 +50927,12 @@ kLI kLI kLI yfj -xXx -pAV -vAy -vUq -vUq -xXx +boX +eNw +bcZ +aZH +aZH +boX kLI kLI kLI @@ -52839,37 +51004,37 @@ hts hts hts hts -rde -cFw -iBR -pKw -pKw -mis -pKw -pKw -iny -gbN -coJ -iny -maM -qbn -iny -iPy -dVF -ffZ -eqZ -fCQ -lBl -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -52891,77 +51056,77 @@ kLI kLI kLI kLI -uIy -dbB -dbB -dbB -mZW -uIy +mYy +kKv +kKv +kKv +puw +mYy kLI kLI kLI kLI kLI kLI -seF -mGl +cdB +kqv snz -mGl -mGl -mGl -mGl -mGl -bSI -bSI -wox -bSI -bSI -bSI -bSI -bSI -nLj -oNC -bSI -sLY -sLY -sLY -sLY -sLY -sLY -sLY -sLY -sLY -fEx -rEB -rbl -rbl -rbl -rbl -cmA -oSc -dUX -dUX -kTA +kqv +kqv +kqv +kqv +kqv +sZU +sZU +tjA +sZU +sZU +sZU +sZU +sZU +sjV +rCK +jGV +ykb +ykb +ykb +ykb +ykb +ykb +ykb +ykb +ykb +cAj +dBD +cfP +cfP +cfP +cfP +eLJ +ghD +jmn +vIf +aoH rel wdV -nMY -nMY -nMY +dWR +dWR +dWR dIL -nMY -lqG +dWR +jOy kLI kLI kLI kLI kLI kLI -xXx -skW -vAy -vUq -vUq -xXx +boX +mJJ +bcZ +aZH +aZH +boX kLI kLI kLI @@ -53033,37 +51198,37 @@ hts hts hts hts -rde -cFw -iOA -rKR -pKw -pKw -pKw -wap -iny -bZv -kVW -huV -kVW -orM -iny -puW -dVF -hyK -eqZ -fCQ -lBl -pDJ -pDJ -pDJ -pDJ -pDJ -pDJ -pDJ -pDJ -pDJ -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +cbd +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -53085,38 +51250,38 @@ hts kLI kLI kLI -uIy -ojv -ojv -ojv -wzg -uIy +iTH +sNN +sNN +sNN +xHm +iTH kLI kLI mRB mRB mRB kLI -xhJ -bSI -wox -wox -wox -wox -wox -ldZ -wox -wox -wox -wox -wox -fwu -uku -uku -rAo -tUo -bSI -sLY +dOB +hfN +tjA +tjA +tjA +tjA +tjA +eiy +tjA +tjA +tjA +tjA +tjA +vhr +hKO +hKO +ubz +pNZ +hfN +ykb qRq dKd eNo @@ -53125,37 +51290,37 @@ eTm jYW vsH ckt -ggg -rrU -uGI -kUs -fsu -iRC -kTP -vec -dUX -dUX -kTA +hMg +wqV +duL +dPp +eFg +xgk +lIK +dlT +mMA +vIf +aoH rel -wdV -nMY +mWn +dWR oqH omr tVp ruU -lqG +jOy kLI mRB mRB mRB kLI kLI -xXx -kPj -hcN -kPj -kPj -xXx +qUz +gkA +aks +gkA +gkA +qUz kLI kLI kLI @@ -53227,37 +51392,37 @@ hts hts hts hts -rHE -cFw -cFw -cFw -cFw -cFw -cFw -cFw -iny -cqF -iny -iny -iny -jhb -iny -iPy -dVF -uqB -eqZ -fCQ -lBl -hts -hts -hts -hts -hts -hts -lBl -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -53279,38 +51444,38 @@ hts kLI kLI kLI -mRB -bRO -bRO -flD -wbL -mRB +iTH +gSn +hbs +qWZ +lCr +iTH kLI kLI mRB mRB mRB kLI -xhJ -bSI -wox -bSI -bSI -bSI -riB -riB -riB -riB -riB -riB -riB -iNP -hhz -hhz +dOB +jGV +tjA +sZU +sZU +sZU +fRg +fRg +fRg +fRg +fRg +fRg +fRg +xJS +ogP +ogP oOZ -hhz -sLY -sLY +ogP +wbh +ykb anf inF iMN @@ -53318,38 +51483,38 @@ iMN mur hTc xof -sLY -sLY -oIk -cfA -cfA -cfA -cfA -kTP -vec -dUX -dUX -kTA -rel -wdV -nMY -nMY -nMY -nMY -nMY -lqG +ykb +wbh +mjB +hcs +hcs +hcs +hcs +lIK +kaA +jmn +vIf +aoH +bsN +xxR +dWR +dWR +dWR +dWR +dWR +jOy kLI mRB mRB mRB kLI kLI -mRB -flD -flD -ncc -bRO -mRB +qUz +aIl +hyj +gQY +bId +qUz kLI kLI kLI @@ -53421,37 +51586,37 @@ hts hts hts hts -rde -dzk -jcH -cJR -wjF -izF -izF -rZn -iny -dSY -wWu -bAd -sBB -lTB -iny -iPy -dVF -dVF -eqZ -fCQ -lBl -hts -hts -hts -hts -hts -hts -lBl -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +fJR +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -53473,37 +51638,37 @@ hts kLI kLI kLI -mRB -bRO -bRO -flD -flD -mRB +iTH +gSn +hbs +qWZ +wEL +iTH kLI kLI mRB mRB mRB kLI -xhJ -bSI -wox -bSI -bSI -uVU -riB +dOB +kbi +gWH +sZU +sZU +eiY +fRg qbF maL -brA +trr lEx brA -riB -rtc -hhz +fRg +pQT +ogP nnd uDq vHa -sLY +wbh cCA cal eXq @@ -53511,19 +51676,19 @@ eXq eXq eXq eaX -qvz +krw mgw -sLY -hDs -qVP -hjW -nmp -cfA -kTP -vec -dUX -dUX -kTA +wbh +qMd +fNA +tWH +nWJ +hcs +lIK +kaA +duL +mvV +aoH rel wdV hmA @@ -53538,12 +51703,12 @@ mRB mRB kLI kLI -mRB -flD -flD -ncc -bRO -mRB +qUz +fMc +ePF +gQY +bId +qUz kLI kLI kLI @@ -53615,37 +51780,37 @@ hts hts hts hts -rHE -dzk -glj -izF -qsX -icN -cmf -gTN -iny -cMO -jfJ -cTr -qFc -cMO -iny -iPy -cLV -dVF -eqZ -fCQ -lBl -hts -hts -hts -cOh -hts -hts -lBl -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -53667,37 +51832,37 @@ hts hts kLI kLI -mRB -flD -flD -flD -flD -mRB +iTH +qWZ +qWZ +qWZ +qWZ +iTH kLI kLI kLI kLI kLI kLI -xhJ -bSI -wox -bSI -bSI -uVU -riB +dOB +sZU +gxA +sZU +sZU +eiY +fRg rkT -orK -kXb +fST kXb +jHp uXT -riB -rtc -hhz +fRg +pQT +ogP nnB kSB pob -sLY +wbh wpg iMN wJE @@ -53707,24 +51872,24 @@ dPK wJE hof xws -sLY -enq -enq -hjW -nfV -cfA -kTP -vec -dUX -dUX -kTA +wbh +rVy +rVy +tWH +jjl +hcs +lIK +kaA +jmn +jmn +aoH vNL rEO iyc oJl tWn qMJ -lvT +lxh kMa kLI kLI @@ -53732,12 +51897,12 @@ kLI kLI kLI kLI -mRB -flD -flD -flD -flD -mRB +qUz +hkE +jqL +cRv +cRv +qUz kLI kLI hts @@ -53809,37 +51974,37 @@ hts hts hts hts -rHE -mGl -fiq -izF -izF -izF -iRY -eWD -kUQ -kUQ -kUQ -wkM -kUQ -kUQ -kUQ -toV -cLV -dVF -rGy -fCQ -jSV -fCQ -fCQ -fCQ -fCQ -fCQ -fCQ -jSV -fCQ -jSV -hts +qVH +qVH +tvN +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -53861,38 +52026,38 @@ hts hts kLI kLI -mRB -flD -flD -flD -flD -mRB +iTH +qWZ +qWZ +qWZ +qWZ +iTH kLI kLI kLI kLI kLI kLI -xhJ -bSI -wox -bSI -vNf -vNf -riB +dOB +sZU +gxA +sZU +rBj +rBj +fRg fcp -bvc -elb -kXb +otf +iaq +dIo xPl -riB -rtc -hhz +fRg +pQT +ogP lKv bzk vVb -sLY -kQI +wbh +pSK iMN wJE dPK @@ -53901,37 +52066,37 @@ dPK wJE hof nbn -sLY -rdm -pfV -uiK -ehm -cfA -kTP -vec -dUX -dUX -kTA +wbh +hhF +ciy +uiO +lBE +hcs +lIK +vbN +jTq +jmn +aoH rel wdV -ioP -ioP -ioP +oEd +oEd +oEd boo -ioP -bvm +oEd +fMb kLI kLI kLI kLI kLI kLI -mRB -flD -flD -flD -flD -mRB +qUz +ezh +ocU +cRv +cRv +qUz kLI kLI hts @@ -54003,37 +52168,37 @@ hts hts hts hts -rHE -dzk -gvC -izF -baY -icN -smg -vuZ -kUQ -wBu -ofA -wkM -ofA -wmL -kUQ -onZ -cLV -srL -eqZ -jSN -eqZ -kTu -dVF -eqZ -eqZ -eqZ -eqZ -eqZ -qja -bBM -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -54055,39 +52220,39 @@ hts hts kLI kLI -mRB -mRB -btP -flD -flD -mRB +iTH +iTH +qOK +qWZ +qWZ +iTH kLI kLI kLI kLI kLI kLI -xhJ -bSI -wox -bSI -vNf +dOB +sZU +gxA +xuL +rBj jpm -riB +fRg paq -orK -elb +sSo +vjg kXb xPl -riB -rtc -hhz -hhz +fRg +pQT +ogP +ogP ikv -hhz -sLY +ogP +wbh wpg -iMN +agl wJE dPK wJE @@ -54095,37 +52260,37 @@ dPK wJE hof mtS -sLY -ktl -hhB -ptW -xIm -sSH -cFp -evd -dUX -dUX -kTA +wbh +eoL +woy +vuM +jLZ +qpu +dIv +nqj +jmn +jmn +aoH rel wdV -ioP +oEd rAa aeR kxX qRn -bvm +fMb kLI kLI kLI kLI kLI kLI -mRB -flD -flD -btP -mRB -mRB +qUz +cRv +cRv +mxh +qUz +qUz kLI kLI hts @@ -54197,37 +52362,37 @@ hts hts hts hts -rHE -mGl -oOL -izF -baY -izF -iRY -qUH -kUQ -kUQ -kUQ -wkM -kUQ -kUQ -kUQ -qFr -dIT -dIT -dIT -dIT -dIT -dIT -jPd -dIT -dIT -dIT -dIT -wrp -aVZ -hMA -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -54251,37 +52416,37 @@ hts kLI kLI kLI -mRB -flD -flD -mRB +iTH +qWZ +qWZ +iTH kLI kLI mRB mRB mRB kLI -xhJ -xtQ -wox -wox -vNf +dOB +gZV +gxA +tjA +rBj jpm -riB -fsc -pCb -riB -fsc -fsc -riB -rtc -jmV -iQG -cGv -ifS +fRg +muu +iks +fRg +muu +muu +fRg +pQT +gfI +sgT +gqh +tFl woz lnQ -pdU +ofn maT maT maT @@ -54289,35 +52454,35 @@ agy maT qwv qjX -sLY -lRj -ktl -gkf -lbc -cfA -kTP -vLa -dUX -dUX -kTA +wbh +vXV +eoL +tKk +eZY +hcs +lIK +bxu +jmn +jmn +aoH rel wdV -ioP -ioP -ioP -ioP -ioP -bvm +oEd +oEd +oEd +oEd +oEd +fMb kLI mRB mRB mRB kLI kLI -mRB -yao -yao -mRB +qUz +bNf +bNf +qUz kLI kLI kLI @@ -54391,37 +52556,37 @@ hts hts hts hts -rHE -mGl -dek -rKU -rKU -bfg -iRY -oOL -kUQ -lpt -ofA -wkM -ofA -apu -kUQ -bAS -bAS -bAS -bAS -bAS -xGO -xGO -xGO -xGO -xGO -hMr -hMr -hMr -hMr -hMr -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -54445,55 +52610,55 @@ hts kLI kLI kLI -mRB -vGv -vGv -mRB +iTH +hfr +hfr +iTH kLI kLI mRB mRB mRB kLI -xhJ -bSI -wox -jHK -vNf -nsE -aCE -aCE -qIu +dOB +sZU +gxA +uaw +rBj +ixX +fvR +nIt +lqj jVR ahT nZd -vNf -gFF -hrl -czk -tUo -bSI -sLY -sLY -sLY +rBj +eZW +rTc +wUU +bfO +rfS +ykb +ykb +ykb aTP aTP aTP aTP aTP -sLY -sLY -sLY -ovw -ljo -iYl -ajw -cfA -ygK -uGI -uGI -uGI -kTA +ykb +ykb +wbh +pPN +oEH +aDY +lnO +hcs +qgu +duL +duL +duL +aoH vNL rEO jfM @@ -54508,10 +52673,10 @@ mRB mRB kLI kLI -mRB -rov -rov -mRB +qUz +uKh +uKh +qUz kLI kLI kLI @@ -54585,37 +52750,37 @@ hts hts hts hts -rHE -mGl -bOQ -uBk -uBk -jid -iRY -bCP -kUQ -kUQ -kUQ -nQn -kUQ -kUQ -kUQ -cMS -ooq -cgh -kIN -bAS -hDK -ruJ -vSV -wsv -xGO -utV -axG -fPo -iUj -hMr -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +vnE +qVH +qVH +qVH +fSl +qVH +qVH +qVH +qVH +qVH +vnE +qVH +qVH +qVH hts hts hts @@ -54639,35 +52804,35 @@ hts kLI kLI kLI -mRB -mRB -mRB -mRB +iTH +iTH +iTH +iTH kLI kLI mRB mRB mRB kLI -xhJ -bSI -wox -ohg -vNf -ekn +dOB +vKw +xMr +rdq +rBj +jTh uQa -cni -kpt -vNf -vNf -vNf -vNf -wox -gmY -hlW -hlW -hlW -hlW +fcm +hBZ +rBj +rBj +rBj +rBj +tjA +eLj +jSS +jSS +jSS +jSS aUc aUc aUc @@ -54677,24 +52842,24 @@ aUc aUc aUc aUc -uGI -wmp -cfA -cfA -cfA -cfA -kTP -dUX -qwG -jzZ -kTA +duL +cGQ +hcs +hcs +hcs +hcs +sxY +mMA +bGg +xvb +aoH aMv cxs oiM cxY bIt wMe -ioh +rib hmh kLI mRB @@ -54702,10 +52867,10 @@ mRB mRB kLI kLI -mRB -mRB -mRB -mRB +qUz +qUz +qUz +qUz kLI kLI kLI @@ -54779,37 +52944,37 @@ hts hts hts hts -jUq -mGl -bOQ -uBk -uBk -jid -iRY -ezx -kUQ -gog -edS -qpJ -hKk -xOL -kUQ -vvr -lXe -tSv -rzH -bAS -kJx -pfh -oXh -mPO -xGO -fWl -ehB -cLl -aLJ -hMr -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +dwL +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -54843,25 +53008,25 @@ kLI kLI kLI kLI -xhJ -bSI -wox -hlW -vNf -aMk -vNf -vNf -vNf -vNf -bSI -bSI -bSI -wox -rtc -hlW -ode -pde -mQD +dOB +sZU +ovF +jSS +rBj +nNS +rBj +rBj +rBj +rBj +sZU +sZU +sZU +tjA +hie +jSS +dnN +waB +hZB aUc aUc aUc @@ -54871,25 +53036,25 @@ aUc aUc aUc aUc -fYw -gbV -dUX -dUX -dUX -uGI -kTP -dUX -qwG -oNS -kTA +jUZ +gCq +jmn +jmn +jmn +duL +iqJ +jmn +bGg +blj +aoH xXl ggn -rYB -rYB -rYB +iFr +iFr +iFr nTC -rYB -rFa +iFr +gmv kLI kLI kLI @@ -54973,37 +53138,37 @@ hts hts hts hts -jUq -mGl -qrB -nAW -vTl -ybg -aCj -izF -dhZ -pNC -pNC -lYf -sIo -ibE -kUQ -iQv -mYs -lll -kpl -bAS -wLY -utf -fdI -qIF -xGO -ucX -mzp -egW -vhi -hMr -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -55037,25 +53202,25 @@ kLI kLI kLI kLI -xhJ -bSI -wox -wox -ldZ -gFF -iBr -boO -iBr -gEE -iBr -iBr -iBr -iBr -dBC -hlW -oZV -bSI -shL +dOB +sZU +rHw +pJI +wWg +hxA +wNx +bwO +wNx +eZF +wNx +wNx +wNx +wNx +uSU +jSS +xvV +sZU +xeW aUc aUc aUc @@ -55065,25 +53230,25 @@ aUc aUc aUc aUc -fYw -gbV -dUX -dUX -dUX -uGI -kTP -kTP -kTP -iRC -kTA +jUZ +gCq +jmn +jmn +jmn +duL +iqJ +lIK +lIK +xgk +aoH rel wdV -rYB +iFr aUo sWt hOD gWY -rFa +gmv kLI kLI kLI @@ -55167,37 +53332,37 @@ hts hts hts hts -jUq -otK -mGl -mGl -mGl -mGl -lTW -dzk -kUQ -ldR -ldR -pNC -iOc -ocT -kUQ -ocn -kzk -wbv -rmN -bAS -lef -vxK -inQ -rvO -xGO -tcy -wIB -fTs -pqz -hMr -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -55231,25 +53396,25 @@ kLI kLI kLI kLI -xhJ -xhJ -xhJ -xhJ -xhJ -bSI -bSI -rtc -bSI -xhJ -xhJ -xhJ -xhJ -wox -ksO -hlW -clE -oZV -jMN +dOB +dOB +dOB +dOB +dOB +sZU +sZU +jWH +ulZ +dOB +dOB +dOB +dOB +ppi +lTJ +jSS +jOi +xvV +cIf flI aac flI @@ -55259,25 +53424,25 @@ flI flI aac flI -uGI -fEv -lIe -lIe -lIe -iXt -cHw -dUX -dUX -kTA -kTA +duL +ryt +pHr +vYS +sAd +sUr +eWN +jTq +jmn +aoH +aoH qxB mIl -kTA -cAd -rFa -rFa -rFa -rFa +aoH +fkN +gmv +gmv +gmv +gmv kLI kLI kLI @@ -55361,37 +53526,37 @@ hts hts hts hts -jUq -oSU -aNA -blh -koC -oyG -oyc -tOm -kUQ -kUQ -kUQ -kUQ -xcA -kUQ -kUQ -bAS -bAS -nnF -bAS -bAS -xGO -wmh -xGO -xGO -xGO -hMr -oAk -hMr -hMr -hMr -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -55429,21 +53594,21 @@ kLI kLI kLI kLI -xhJ -bSI -bSI -rtc -bSI -xhJ +dOB +sZU +sZU +jWH +xuL +dOB kLI kLI -lad -ofL -mCt -lgb -lgb -lgb -lgb +vYd +thb +mJX +non +non +non +non aUc aUc aUc @@ -55453,21 +53618,21 @@ aUc aUc aUc aUc -fYw -nEh -dUX -dUX -dUX -uGI -dyo -dUX -dUX +jUZ +sFw +cbU +jmn +qXn +duL +mYR +kce +jmn jzV rui mAb cQJ dPv -cAd +fkN kLI kLI kLI @@ -55555,37 +53720,37 @@ hts hts hts hts -rHE -oSU -oYD -blh -kdv -wnw -jEY -buw -agd -jnZ -myL -wVm -tzP -ezE -tKm -jKa -fQW -tzP -aVz -qyT -tKm -tzP -tmC -jnZ -buw -buw -gHO -aUI -eun -iDy -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +gAR +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -55623,21 +53788,21 @@ kLI kLI kLI kLI -xhJ -bSI -bSI -rtc -bSI -xhJ +dOB +sZU +vKw +exX +hfN +dOB kLI kLI -lad -ofL -mCt -hQy -hQy -hQy -lgb +vYd +thb +mJX +oWw +oWw +oWw +non aUc aUc aUc @@ -55647,21 +53812,21 @@ aUc aUc aUc aUc -fYw -nEh -dUX -baa -dOH +jUZ +sFw +kce +cjs +qGT sVu sVu sVu sVu -kTA +aoH xEG mAb rui kRB -cAd +fkN kLI kLI kLI @@ -55749,37 +53914,37 @@ hts hts hts hts -ccj -oSU -pMO -blh -qie -oyG -smp -dJC -pjZ -ona -ona -snm -ona -mjf -jvi -ona -urE -ona -ona -fJN -jvi -ona -urE -ona -lKk -tQP -urE -ona -wsc -jTv -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -55817,21 +53982,21 @@ kLI kLI kLI kLI -xhJ -bSI -bSI -rtc -bSI -xhJ +dOB +sZU +kbi +eLY +jGV +dOB kLI kLI -hVX -ofL -mCt -hQy -hQy -hQy -lgb +jmt +thb +mJX +oWw +oWw +iOy +non flI aac flI @@ -55841,21 +54006,21 @@ flI flI aac flI -uGI -nEh -okA -okA -okA -sVu +duL +sFw +svf +svf +svf +kgt wrq sVu eQm -kTA +aoH lkg gXV xxC kRB -cAd +fkN kLI kLI kLI @@ -55943,37 +54108,37 @@ hts hts hts hts -hQW -oSU -ydl -blh -gzo -oyG -eRk -mII -klN -klN -klN -klN -klN -klN -klN -noN -cHL -noN -noN -noN -jsd -jsd -xEs -jsd -psU -psU -pXw -psU -psU -psU -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -56011,21 +54176,21 @@ hts kLI kLI kLI -xhJ -hlW -hlW -xGD -hlW -xhJ +dOB +jSS +jSS +fKs +jSS +dOB kLI kLI -hVX -ofL -xyC -vXt -vXt -dwt -lgb +jmt +thb +hEd +tuk +vOB +tXw +non aUc aUc aUc @@ -56035,21 +54200,21 @@ aUc aUc aUc aUc -fYw -nEh -okA +jUZ +sFw +svf kQm bmj -sVu +kgt oNp sVu oWd -kTA +aoH vwz cvn rui wmT -cAd +fkN kLI kLI kLI @@ -56137,37 +54302,37 @@ hts hts hts hts -rHE -otK -sOU -oyG -oyG -oyG -enO -bPZ -bhG -wLX -dOg -ego -nur -eeF -klN -oJW -jGu -gIy -ill -noN -ooh -vTE -cgN -skc -psU -tZx -tmu -xiE -hGb -psU -hts +qVH +qVH +ccc +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +clr +qVH +qVH +qVH +qVH +qVH +dwL +qVH +qVH +qVH +qVH +dwL +qVH +qVH +qVH +qVH +dwL +qVH +qVH hts hts hts @@ -56205,21 +54370,21 @@ hts kLI kLI kLI -xhJ -bSI -bSI -rtc -bSI -xhJ +dOB +sZU +sZU +jWH +sZU +dOB kLI kLI -lad -ofL -ofL -hQy -hQy -mCt -lgb +vYd +thb +thb +jjn +lnZ +mJX +non aUc aUc aUc @@ -56229,21 +54394,21 @@ aUc aUc aUc aUc -fYw -nEh -okA +jUZ +sFw +svf kQm bmj -sVu -ccM +kgt +iUn ccM ccM eTR rui nnx sHu -rui -cAd +tTX +fkN kLI kLI kLI @@ -56331,37 +54496,37 @@ hts hts hts hts -rHE -kgN -geI -geI -ejb -geI -aWI -vfq -klN -kqt -baJ -sln -gVn -wQV -klN -ouu -ukG -kVA -ayU -noN -tHp -wAJ -tCS -bLN -psU -kOm -rbf -lzu -aYi -psU -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -56399,21 +54564,21 @@ hts kLI kLI kLI -xhJ -bSI -bSI -rtc -bSI -xhJ +dOB +sZU +sZU +jWH +ulZ +dOB kLI kLI -lMq -lMo -lMo -lMo -lMo -hnM -lgb +goG +nkE +nkE +nkE +nkE +kde +non aUc aUc aUc @@ -56423,21 +54588,21 @@ aUc aUc aUc aUc -okA +svf wNj -sOD +wjd kQm bmj -sVu +kgt tcY ccM -mty -kTA +suA +aoH rui rui mWO -rui -cAd +sNY +fkN kLI kLI kLI @@ -56525,37 +54690,37 @@ hts hts hts hts -rHE -cKl -mYI -kZK -xeV -eJA -cZE -jHy -klN -iVq -baJ -baJ -baJ -iVg -klN -fCB -whA -ocf -lrH -noN -hUZ -wAJ -tCS -byd -psU -olm -aEU -sjW -rlF -psU -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -56593,45 +54758,45 @@ hts hts tAx kLI -xhJ -bSI -bSI -rtc -bSI -xhJ +dOB +sZU +vKw +dkZ +xuL +dOB kLI kLI -lMq -lMo +goG +nkE cOp cOp -lMo -mCt -lgb -okA +nkE +mJX +non +svf muo muo muo -okA +svf pGJ pGJ pGJ -okA -okA +svf +svf wvW cpc cpc ici -sVu -tcY +kgt +djZ ccM -cUP -kTA +tMU +aoH cVi oce dMZ mBy -cAd +fkN kLI xQM hts @@ -56719,37 +54884,37 @@ hts hts hts hts -rHE -kgm -kgm -kgm -kgm -kgm -fcK -odG -klN -hKw -qTm -gjF -iVq -bit -klN -wnj -mJr -sMN -lqt -noN -sSN -nCr -hRb -gXY -psU -gQi -rrA -rLb -vej -psU -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -56787,45 +54952,45 @@ hts hts tAx kLI -xhJ -bSI -bSI -rtc -bSI -xhJ +dOB +sZU +kbi +eqX +sZU +dOB kLI kLI -lMq +goG mRV tCN rBy -lMo -mCt -hbq -okA +nkE +mJX +fek +svf oac lXX pya -okA +svf csV dso dmL -okA -okA -ykB -opY -psp -nMd -uYy -pZc -ccM -iJJ -kTA +svf +svf +ppn +jnJ +gsw +vLe +aZm +cKi +vAi +aWs +aoH piN flG xjK ayM -cAd +fkN kLI xQM hts @@ -56913,37 +55078,37 @@ hts hts hts hts -rHE -kgm -mtm -lhJ -pdt -kgm -uPn -odG -klN -klN -klN -klN -klN -klN -klN -pbN -dwr -arF -pgB -noN -aQa -hQn -dsB -bLN -psU -spH -iSU -vwG -sLb -psU -hts +qVH +qVH +ejw +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -56981,45 +55146,45 @@ hts hts tAx jDF -xhJ -xtQ -fwu -nJL -bxN -xhJ +dOB +gZV +vhr +orC +bEU +dOB kLI kLI bCc sxM -cOp +bFx nYN -lMo -mCt -dzz -okA +nkE +jno +sAl +svf wXZ tAJ xXH -okA +svf aMb uCD acH -okA -okA +svf +svf jTm mdt -oiz +pia nMd +vYK pYz pYz pYz -pYz -cAd +fkN hAa flG xjK jKN -cAd +fkN kLI xQM hts @@ -57107,37 +55272,37 @@ hts hts hts hts -rHE -kgm -sAQ -dPI -vab -kgm -rYY -sYm -rGf -ozt -xlD -keR -vIW -qCY -rGf -noN -noN -fFv -noN -noN -jsd -dej -jsd -jsd -psU -psU -psU -lOG -psU -psU -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +sop +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -57163,7 +55328,7 @@ qVH hts hts kLI -kLI +frk hts hts hts @@ -57175,45 +55340,45 @@ hts hts uDM kLI -xhJ -bSI -eps -bSI -xhJ -xhJ +dOB +sZU +hNQ +sZU +dOB +dOB kLI kLI bCc cOp -cOp -snR -lQm -bsw -uiI -okA -wqs -fJV -ouY -okA -uTg -dHS -tuj -okA -okA +ncn +nrk +mrU +mqj +mXM +svf +xhI +cnF +gtg +svf +mpU +rJV +olJ +svf +svf amt rTF -oiz +pia nMd -xnM +fTa kLI kLI kLI -cAd -cAd +fkN +fkN flG xjK xHC -cAd +fkN kLI fqv hts @@ -57225,7 +55390,7 @@ hts hts hts hts -kLI +frk kLI hts hts @@ -57301,37 +55466,37 @@ hts hts hts hts -rHE -kgm -uMz -jdh -dVf -kgm -wUB -odG -rGf -hEW -iLA -rtD -vgV -kjT -rGf -mEl -xXe -kto -czH -noN -iiX -igJ -ePu -kiz -psU -jwB -gpR -kyR -yal -psU -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +pwo +qVH +qVH +qVH +qVH +qVH +xuZ +qVH +qVH +qVH +pwo +qVH +qVH +qVH +qVH hts hts hts @@ -57369,36 +55534,36 @@ hts hts uDM kLI -xhJ -bSI -reP -bSI -fIx +dOB +sZU +gOz +sZU +cxK kLI kLI hts -lMq +goG rEy +gLT cOp -cOp -lMo -ofL -vvY -okA -okA -pMh -okA -okA -okA -pMh -okA -okA -okA +nkE +lTx +kcG +svf +svf +prg +svf +svf +svf +prg +svf +svf +svf iNH iNH -oiz -nMd -xnM +pia +aNs +fTa kLI hts kLI @@ -57407,7 +55572,7 @@ vGw wzB xjK rvz -cAd +fkN kLI fqv hts @@ -57495,37 +55660,37 @@ hts hts hts hts -rHE -kgm -oOF -eWl -irO -ppg -jDQ -sQT -rGf -euA -alz -dET -alz -bSO -rGf -mSN -ofQ -nUI -bqm -noN -ecP -uwq -cWR -jnh -psU -pdV -wDo -mek -uYo -psU -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -57563,36 +55728,36 @@ hts hts uDM kLI -xhJ -bSI -reP -bSI -fIx +dOB +sZU +gOz +sZU +cxK kLI kLI hts -lMq -lMq +goG +goG cOp -cOp -lMo -ofL -ofL +wXY +nkE +thb +thb rgK lkz +tOR +cpc +cpc +cpc +tOR +rgM cpc cpc cpc cpc -cpc -cpc -cpc -cpc -cpc -cpc -jPP +fnG nMd -xnM +fTa kLI hts kLI @@ -57601,7 +55766,7 @@ vGw oQC vfD dkc -cAd +fkN kLI fqv hts @@ -57689,37 +55854,37 @@ hts hts hts hts -rHE -kgm -dIY -qRQ -sDo -kgm -eRk -odG -rGf -eXc -bSO -vKl -rEv -gzb -rGf -noN -noN -noN -noN -noN -jsd -jsd -jsd -jsd -psU -psU -psU -psU -psU -psU -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -57757,45 +55922,45 @@ hts hts uDM yfj -xhJ -xhJ -xhJ -xhJ -xhJ +dOB +dOB +dOB +dOB +dOB kLI kLI hts hts -lMq +goG cOp cOp -lMo -hQy -hQy -okA +nkE +thb +thb +svf lMi -iBM -iBM -iBM -iBM -iBM -iBM -iBM -iBM -iBM -iBM -kil +ofO +tAX +vHR +tAX +qZb +tAX +tAX +vHR +tAX +nGg +eZP nMd -xnM +fTa hts hts kLI kLI -cAd -cAd -cAd -cAd -cAd +fkN +fkN +fkN +fkN +fkN eNC fqv hts @@ -57883,37 +56048,37 @@ hts hts hts hts -rHE -haz -haz -haz -haz -haz -kXI -gcv -rGf -rGf -rGf -gWf -rGf -rGf -rGf -kQM -oKF -eqZ -eqZ -kTu -eqZ -eqZ -eqZ -eqZ -pPG -eqZ -eqZ -eqZ -aJb -eqZ -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +xPj +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -57953,22 +56118,22 @@ uDM kLI kLI tZK -xhJ -xhJ +dOB +dOB kLI kLI kLI hts hts -lMq -lMq -lMo -lMo -hQy -hQy -okA +goG +goG +nkE +nkE +vYd +thb +svf dHe -jdt +qgS jdt vNA jdt @@ -57977,10 +56142,10 @@ jdt jdt vNA jdt -jdt -tWg +odi +dCT aKS -xnM +fTa hts hts kLI @@ -58077,37 +56242,37 @@ hts hts hts hts -rHE -haz -sbk -fzk -tTo -haz -xrj -tgR -dga -eaD -jeo -bsL -wnw -wnw -nox -jQV -mJA -dIT -dIT -wrp -dIT -gdF -dIT -dIT -jQV -uXi -jQV -jQV -jQV -jQV -hts +qVH +qVH +qVH +scc +qVH +qVH +fLc +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +xWA +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -58147,34 +56312,34 @@ hts cIh cIh cIh -xhJ -xhJ +dOB +dOB kLI kLI kLI hts hts hts -lad -hQy -hQy -hQy -hQy -okA -okA -okA -okA -okA -okA -okA -okA -okA -okA -okA -okA -kBM -xnM -xnM +vYd +lxL +lxL +vYd +thb +svf +svf +svf +svf +svf +svf +svf +svf +svf +svf +svf +svf +mNk +fTa +fTa hts hts kLI @@ -58271,37 +56436,37 @@ hts hts hts hts -rHE -haz -alP -cEH -ilu -ryF -cwP -ecM -oyG -oyG -snV -xeG -rbj -oxx -tYj -uqB -hqy -fCQ -fCQ -fCQ -fCQ -fCQ -fCQ -fCQ -fCQ -fCQ -fCQ -fCQ -fCQ -fCQ -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -58341,33 +56506,33 @@ hts hts kLI kLI -xhJ -xhJ +dOB +dOB kLI kLI kLI hts hts hts -lad -hQy -hQy -hQy -hQy -hQy -hQy -hQy -hQy -jjf -cXQ -cXQ -cXQ -cXQ -cXQ -cXQ -cXQ -piS -lad +vYd +lxL +lxL +vYd +thb +thb +gGO +thb +vOl +vlS +uwR +uwR +mfc +tNT +fFt +fFt +tPG +mtO +vYd hts hts hts @@ -58465,37 +56630,37 @@ hts hts hts hts -rHE -haz -poy -eRN -pHt -haz -uyq -wUj -uva -uva -uva -vYv -uva -uva -uva -dVF -gDP -fCQ -hts -hts -hts -hts -hts -lBl -hts -bcj -hts -hts -hts -lBl -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -58543,25 +56708,25 @@ hts hts hts hts -lad -hQy -hQy -hQy -hQy -hQy -hQy -hQy -hQy -ryK -hQy -hQy -lad -hQy -hQy -hQy -hQy -hQy -lad +vYd +oWw +fmX +mRB +uJw +mRB +mRB +mRB +lnZ +cKL +oWw +oWw +jjn +vYd +oWw +oWw +lnZ +jwo +vYd hts hts hts @@ -58659,37 +56824,37 @@ hts hts hts hts -rHE -haz -ijB -fVC -tEW -haz -oyG -jtY -uva -arQ -hgT -sRZ -hZi -gjJ -uva -eqZ -iPy -fCQ -hts -hts -hts -hts -hts -lBl -hts -hts -hts -hts -hts -lBl -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +vnE +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -58737,31 +56902,31 @@ hts hts hts hts -lad -hQy -hQy -hQy -hQy -hQy -pOM -hQy -vDm -tbE -ufH -pOM -lad -kOG -kOG -hQy -hQy -hQy -lad +vYd +oWw +fmX +ezJ +yao +jJz +bGD +mRB +gDQ +mLk +ikx +rnp +iOy +vYd +xVc +xVc +thb +iFm +vYd hts hts hts hts hts -kLI +frk kLI kLI kLI @@ -58853,37 +57018,37 @@ hts hts hts hts -rHE -haz -vil -ozb -yfw -haz -oyG -vcQ -uva -uWo -uWo -dzT -xUN -aYA -uva -kTu -iPy -fCQ -hts -hts -lBl -pDJ -pDJ -pDJ -pDJ -pDJ -pDJ -lBl -pDJ -pDJ -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -58924,32 +57089,32 @@ hts hts kLI kLI -kLI +frk hts hts hts hts hts hts -lad -hQy -hQy -hQy -hQy -mRB -mRB -mRB -mRB +jmt +fmX +aZT +lHF +jJz +jJz +bGD +hpx +hpx rtC -mRB -mRB -mRB -hQy -hQy -hQy -hQy -hQy -lad +hpx +hpx +hpx +bvZ +bvZ +oWw +oWw +oWw +vYd hts hts hts @@ -59047,37 +57212,37 @@ hts hts hts hts -rHE -tIX -tIX -tIX -tIX -tIX -rUQ -tIX -tIX -tIX -uYI -emR -vIs -owe -uva -cqV -iPy -pUd -hts -hts -lBl -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +kUE +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -59125,25 +57290,25 @@ hts hts hts hts -lad -lad -lad -lad -lad -mRB -lMM +vYd +jmt +vYd mRB +eSE +hpx +hpx +hpx laL hKm -rUX +nQO pfY -mRB -lad -lad -lad -lad -lad -lad +hpx +bye +bvZ +vYd +vYd +vYd +vYd hts hts hts @@ -59241,37 +57406,37 @@ hts hts hts hts -jUq -tIX -rop -rop -pmR -pmR -htI -rop -rop -tIX -kwx -dbn -uWo -nfC -uva -eqZ -iPy -fCQ -oxT -hts -pDJ -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -59324,16 +57489,16 @@ hts kLI hEu kLI -mRB -ebT -mRB +hpx +lMM +hpx vok xLn fDQ aPf -mRB -kLI -kLI +hpx +yao +oDh kLI hEu hts @@ -59435,37 +57600,37 @@ hts hts hts hts -jUq -tIX -ptO -ptO -por -por -por -ptO -ptO -tIX -uva -uva -uva -uva -uva -eqZ -iPy -pUd -hts -hts -pDJ -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -59518,16 +57683,16 @@ hts kLI kLI kLI -mRB -wKT -mRB +hpx +ebT +hpx den uHc gpf cqS -mRB -kLI -kLI +wii +xRi +oDh kLI kLI hts @@ -59629,37 +57794,37 @@ hts hts hts hts -rHE -tIX -rRF -por -por -por -por -por -fqz -tIX -eqZ -ddh -dIT -dIT -dIT -dIT -rsI -fCQ -lBl -lBl -pDJ -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -59712,16 +57877,16 @@ hts kLI kLI kLI -mRB +hpx byF -mRB -mRB +hpx +hpx jnv -mRB -mRB -mRB -kLI -kLI +hpx +hpx +hpx +oDh +oDh kLI kLI hts @@ -59823,37 +57988,37 @@ hts hts hts hts -rHE -exw -dFL -aBz -por -por -por -por -pFS -tIX -eqZ -iPy -kTu -eqZ -fZl -kTu -blg -fCQ -hts -hts -pDJ -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -59906,14 +58071,14 @@ hts kLI kLI kLI -mRB +hpx dPl vwu qdu wBN -rgO -eYP -mRB +hmk +pBx +hpx kLI kLI kLI @@ -60017,37 +58182,37 @@ hts hts hts hts -ran -exw -aRe -aBz -por -por -eQT -eQT -eQT -tIX -eqZ -iPy -fCQ -fCQ -fCQ -fCQ -fCQ -fCQ -hts -hts -pDJ -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -60100,14 +58265,14 @@ hts hts hts kLI -mRB -xRi -mRB +hpx +dKA +hpx wKT ghL rgO -rxX -mRB +qEO +hpx kLI kLI hts @@ -60211,37 +58376,37 @@ hts hts hts hts -dXH -tIX -uch -por -por -xCn -coZ -vZQ -coZ -tIX -vnF -iPy -fCQ -hts -hts -hts -lBl -hts -hts -hts -lBl -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +kYz +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -60294,14 +58459,14 @@ hts hts hts kLI -mRB -mRB -mRB +hpx +hpx +hpx boK -mRB -mRB -mRB -mRB +hpx +hpx +hpx +hpx kLI kLI hts @@ -60405,37 +58570,37 @@ hts hts hts hts -rHE -tIX -dxj -alZ -sEm -tIX -tIX -tIX -tIX -tIX -eqZ -iPy -pUd -hts -hts -hts -lBl -hts -hts -hts -lBl -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -60599,27 +58764,39 @@ hts hts hts hts -rHE -ufo -gwS -uAU -nBX -xdI -aRR -mJA -jPd -dIT -dIT -rsI -fCQ +qVH +qVH +qVH +qVH +qVH +qVH +hFk +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts -lBl -lBl -pDJ -pDJ -pDJ -pDJ hts hts hts @@ -60672,22 +58849,10 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -mRB +hpx xRi wKT -mRB +hpx hts hts hts @@ -60793,22 +58958,37 @@ hts hts hts hts -rHE -rVP -por -xeh -dvA -tIX -tbv -iPy -dVF -irm -fZl -uQP -fCQ -lBl -lBl -pDJ +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +bUR +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -60863,25 +59043,10 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -mRB +hpx lHy -eNH -mRB +qkD +hpx hts hts hts @@ -60987,22 +59152,38 @@ hts hts hts hts -rHE -tIX -mbO -aBz -pFS -tIX -oKF -iPy -fCQ -fCQ -fCQ -fCQ -fCQ -oxT +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts -pDJ hts hts hts @@ -61056,26 +59237,10 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -mRB +hpx cbF qoK -mRB +hpx hts hts hts @@ -61181,22 +59346,43 @@ hts hts hts hts -rHE -tIX -hUw -aBz -por -tIX -uqB -iPy -fCQ +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts hts hts hts -pDJ hts hts hts @@ -61245,31 +59431,10 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -mRB -mRB +hpx +hpx jXj -mRB +hpx hts hts hts @@ -61375,37 +59540,37 @@ hts hts hts hts -rHE -tIX -aRe -aBz -por -tIX -jXC -hqy -fCQ -hts -hts -hts -hts -hts -hts -lBl -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -61569,37 +59734,37 @@ hts hts hts hts -hts -tIX -aRe -aBz -por -tIX -uZk -iPy -fCQ -hts -hts -lBl -lBl -pDJ -pDJ -pDJ -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -61763,18 +59928,40 @@ hts hts hts hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts -tIX -aRe -sHc -ugT -tIX -eqZ -iPy -fCQ hts hts -pDJ hts hts hts @@ -61827,29 +60014,7 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -kLI +frk lHx hts hts @@ -61957,37 +60122,37 @@ hts hts hts hts -hts -tIX -tIX -tIX -tIX -tIX -eqZ -iPy -fCQ -hts -hts -pDJ -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -62151,37 +60316,37 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -62345,37 +60510,37 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts @@ -62539,37 +60704,37 @@ hts hts hts hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts -hts +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH +qVH hts hts hts diff --git a/maps/euthenia/levels/deck3.dmm b/maps/euthenia/levels/deck3.dmm index 394bb4de1a3..8bcdcc11ab6 100644 --- a/maps/euthenia/levels/deck3.dmm +++ b/maps/euthenia/levels/deck3.dmm @@ -1,32 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"aaq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"aaC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) "aaH" = ( /obj/structure/railing/grey{ dir = 8 @@ -47,35 +19,32 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/tether/exploration/pilot_office) -"abt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"abH" = ( +"abz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/effect/floor_decal/techfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/landmark{ + name = "lightsout" }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/starboard) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) "acn" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) -"acC" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +"acM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "adJ" = ( /obj/item/integrated_electronics/debugger{ pixel_x = -5 @@ -94,22 +63,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"adN" = ( -/obj/machinery/button/remote/blast_door{ - id = "toxin_storage_vent"; - name = "Toxin Storage Emergency Vent"; - pixel_x = 28; - pixel_y = 4; - req_access = list(55) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/storage) -"adT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three) "aen" = ( /obj/effect/floor_decal/techfloor{ dir = 10 @@ -166,6 +119,16 @@ /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/reinforced, /area/space) +"ahG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "ahI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -175,21 +138,9 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"ajz" = ( -/obj/spawner/window/reinforced/full/firelocks, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/hallway/primary/central_three) -"ajG" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_three) +"aje" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) "akn" = ( /obj/structure/table/rack/shelf, /obj/effect/floor_decal/spline/fancy/wood{ @@ -197,47 +148,38 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_shop) -"akF" = ( -/obj/machinery/light/fairy{ - dir = 8 +"ako" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/test_area) +"akK" = ( +/obj/structure/memorial, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/glass/reinforced, +/area/main_map/hallway/deck3) "akT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"alo" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "xenobiocoldroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/air_alarm/monitor/isolation{ - alarm_id = "xenopenvent"; - pixel_y = 24 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/xenobiology) -"alD" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "alV" = ( /obj/structure/flora/tree/jungle_small, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"amf" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Vacant Shop" +"ame" = ( +/turf/simulated/wall, +/area/main_map/hallway/deck3) +"amh" = ( +/obj/machinery/door/airlock/glass{ + name = "Cryogenic Storage" }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/space) +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/sleep/cryo) "ana" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -247,14 +189,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) -"ant" = ( -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"aof" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "aoh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -286,19 +220,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"apv" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ - start_pressure = 8500 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"apE" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) "aqM" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -319,39 +240,31 @@ /obj/item/aiModule/teleporterOffline, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) -"art" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 1; - id = "xenobiocoldroom" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology) -"arz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"arJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/space) +"arD" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_three/forward/starboard) "arU" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) +"arV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/port) +"ass" = ( +/obj/machinery/air_alarm/server{ + dir = 4; + pixel_x = -21 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "Mainframe Base" + }, +/area/tcommsat/chamber) "asC" = ( /obj/machinery/holopad, /turf/simulated/floor/wood, @@ -368,6 +281,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) +"atr" = ( +/obj/structure/sign/deck3{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "atE" = ( /obj/structure/bookcase/legal/combo, /obj/machinery/camera/network/security{ @@ -375,13 +294,6 @@ }, /turf/simulated/floor/wood, /area/security/brig) -"auu" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) "auB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -404,20 +316,6 @@ /obj/machinery/seed_extractor, /turf/simulated/floor/outdoors/dirt, /area/hydroponics/garden) -"auX" = ( -/obj/machinery/air_alarm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"auY" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) "avm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -427,15 +325,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/prison) -"avt" = ( -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Robotics Morgue"; - req_access = list(29,47); - req_one_access = list(47) - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "avv" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/techmaint, @@ -444,6 +333,39 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/rdoffice) +"avV" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/structure/curtain/open/shower{ + anchored = 1 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/security/brig) "awI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -460,27 +382,10 @@ /obj/machinery/computer/arcade, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"awU" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/space) +"awX" = ( +/obj/machinery/holoplant, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) "awY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -494,16 +399,14 @@ }, /turf/simulated/floor/tiled, /area/medical/virologyaccess) -"axK" = ( +"axn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/rnd/test_area) +/area/medical/resleeving) "axQ" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/firstaid/o2, @@ -532,23 +435,6 @@ /obj/item/beach_ball/holoball, /turf/simulated/floor/tiled/old_cargo/gray, /area/security/brig) -"ayD" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_external" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) "azA" = ( /obj/machinery/door/blast/regular{ density = 0; @@ -561,45 +447,15 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"azC" = ( +"azN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass/medical{ - name = "Patient Psychiatric Ward A" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "psyche-b-outer"; - name = "Ward A"; - opacity = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/carpet/bcarpet, +/area/space) "aAa" = ( /turf/simulated/floor/wood, /area/hydroponics/garden) -"aAL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective"; - req_access = list(4) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) "aBh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -607,78 +463,53 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"aBt" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"aBp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"aBw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) -"aCd" = ( -/obj/structure/catwalk, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/random/trash, /turf/simulated/floor/plating, -/area/maintenance/research) +/area/main_map/maintenance/deck_three/starboard) +"aBU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "aCf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"aCT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) -"aDS" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security/starboard) -"aEL" = ( -/turf/simulated/floor/bluegrid, -/area/space) -"aEQ" = ( -/obj/machinery/door/firedoor{ +"aDu" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/rdoffice) +"aDy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"aEV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) +"aED" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "aFl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 10 @@ -689,105 +520,53 @@ /obj/machinery/holopad, /turf/simulated/floor/tiled, /area/medical/virology) -"aFp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) -"aFr" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/iv_drip, -/obj/effect/floor_decal/borderfloorwhite{ +"aFG" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/effect/floor_decal/corner/blue/border{ +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/research{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"aGW" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -28; - req_access = list() - }, -/turf/simulated/floor/wood, -/area/space) +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom1) "aHa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"aHp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/int{ - req_access = list(27); - name = "Chapel Access" - }, +"aHN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/port) -"aHL" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"aHP" = ( -/obj/machinery/computer/security/mining{ - dir = 8; - name = "psychiatric wing camera monitor"; - network = list("Psychiatric") - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/area/main_map/maintenance/deck_three) "aHX" = ( /obj/structure/railing/grey{ dir = 4 }, /turf/simulated/floor/bluegrid, /area/ai) -"aIl" = ( -/obj/structure/sign/warning/caution{ - pixel_y = -32 +"aIc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) +"aKH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/door/airlock/glass{ + name = "Vacant Shop" }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"aIn" = ( -/obj/structure/bookcase, -/obj/item/book/bundle/custom_library/fiction, -/obj/item/book/bundle/custom_library/fiction, -/obj/item/book/bundle/custom_library/fiction, -/turf/simulated/floor/wood, -/area/medical/psych_ward) -"aIu" = ( -/obj/structure/table/standard, -/obj/item/aiModule/asimov, -/obj/item/aiModule/freeformcore, -/obj/item/aiModule/corp, -/obj/item/aiModule/paladin, -/obj/item/aiModule/robocop, /turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"aJP" = ( -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 22 - }, -/turf/simulated/wall, -/area/space) -"aKn" = ( -/turf/simulated/wall, -/area/crew_quarters/kitchen) +/area/vacant/vacant_shop) "aKJ" = ( /obj/machinery/camera/network/command{ dir = 9 @@ -800,34 +579,33 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) -"aLh" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Elevator Shaft Access"; - req_one_access = null - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/starboard) +"aLq" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_three/aft/port) "aLu" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"aMv" = ( -/obj/structure/closet/crate/freezer, -/obj/item/virusdish/random, -/obj/item/virusdish/random, -/obj/item/virusdish/random, -/obj/item/virusdish/random, -/obj/effect/floor_decal/borderfloor{ - dir = 9 +"aMc" = ( +/obj/structure/cable/green{ + icon_state = "32-1" }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/effect/floor_decal/corner/green/border{ - dir = 9 +/obj/structure/railing{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/space) +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/lattice, +/obj/machinery/door/firedoor, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/forward/port) "aMR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, @@ -844,12 +622,6 @@ }, /turf/simulated/floor/wood, /area/security/brig) -"aNE" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/corner/brown/bordercorner, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) "aNF" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, @@ -860,6 +632,15 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) +"aOa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "aOj" = ( /obj/effect/floor_decal/corner/green/border{ dir = 1 @@ -867,33 +648,6 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"aOk" = ( -/obj/machinery/atmospherics/component/unary/freezer{ - dir = 1; - icon_state = "freezer_1"; - power_setting = 20; - set_temperature = 73; - use_power = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"aOY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/item/stool/padded, -/turf/simulated/floor/wood, -/area/space) -"aPb" = ( -/obj/structure/table/rack, -/obj/item/suit_cooling_unit, -/obj/item/suit_cooling_unit, -/obj/machinery/camera/network/research{ - dir = 8; - network = list("Research","Toxins Test Area") - }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) "aPr" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/box/nifsofts_medical, @@ -922,28 +676,13 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) -"aQd" = ( -/obj/machinery/disease2/isolator, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/space) -"aRI" = ( -/turf/simulated/wall/r_wall, -/area/tether/exploration/pathfinder_office) -"aRY" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 6 +"aQw" = ( +/obj/machinery/light/no_nightshift, +/obj/structure/cable/green{ + icon_state = "1-4" }, /turf/simulated/floor/tiled/white, -/area/space) +/area/medical/medbay3) "aSy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -967,6 +706,10 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/vacant/vacant_shop) +"aTt" = ( +/obj/structure/sign/hangar/three, +/turf/simulated/wall, +/area/main_map/Hangar_bay/deck2) "aTB" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -979,6 +722,10 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/security/brig) +"aUl" = ( +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/wood, +/area/medical/psych_ward) "aUy" = ( /turf/simulated/floor/outdoors/grass/heavy/interior, /area/tether/exploration/pilot_office) @@ -998,18 +745,32 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) +"aVx" = ( +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/space) +"aVF" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "aVI" = ( /obj/structure/window/reinforced, /obj/structure/table/glass, /obj/item/glass_jar, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"aVN" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"aVO" = ( +/obj/landmark/spawnpoint/latejoin/station/cryogenics, +/obj/effect/floor_decal/techfloor{ + dir = 6 }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) "aWO" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/green{ @@ -1017,28 +778,15 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aXS" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) -"aYi" = ( -/obj/effect/floor_decal/borderfloorblack{ +"aXJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/general) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "aYm" = ( /obj/machinery/camera/network/security{ dir = 1 @@ -1067,6 +815,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/test_area) +"aYJ" = ( +/obj/structure/sign/warning/caution, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/test_area) "aYK" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/water/deep/pool, @@ -1080,6 +832,12 @@ "aZd" = ( /turf/simulated/floor/reinforced, /area/rnd/xenobiology) +"aZn" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/hydroponics/garden) +"aZp" = ( +/turf/simulated/wall/prepainted/civilian, +/area/library) "aZq" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 8 @@ -1087,54 +845,39 @@ /obj/machinery/meter, /turf/simulated/floor/tiled, /area/rnd/test_area) -"aZu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_three) -"aZQ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/captain) -"baf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"aZz" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) +"bac" = ( +/obj/structure/cable/green{ + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 6 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) "bao" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/steel_grid, /area/rnd/storage) -"bau" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "baA" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"baJ" = ( -/obj/machinery/computer/arcade/orion_trail, -/obj/effect/floor_decal/corner/beige{ - dir = 10 +"baM" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "bba" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -1167,6 +910,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techmaint, /area/tcommsat/entrance) +"bbm" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "bbF" = ( /obj/machinery/button/windowtint{ id = "library_foyer"; @@ -1174,35 +924,10 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/library) -"bbI" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"bbK" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/bed/psych, -/turf/simulated/floor/wood, -/area/space) "bcl" = ( /obj/item/toy/plushie/farwa, /turf/simulated/floor/reinforced, /area/rnd/rdoffice) -"bco" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"bcL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/wall/rshull, -/area/shuttle/excursion/general) "bcP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -1213,22 +938,19 @@ /mob/living/simple_mob/animal/passive/snake/noodle, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/tether/exploration/pilot_office) +"bdq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) "bdO" = ( /obj/machinery/vending/wallmed1/public{ pixel_y = 28 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"bdT" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ - start_pressure = 8500 - }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) "bdZ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -1238,14 +960,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/storage) -"beg" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/machinery/sparker{ - id = "burn_chamber"; - pixel_x = 26 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) "bet" = ( /obj/structure/railing{ dir = 1 @@ -1268,15 +982,13 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"bfM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 +"beV" = ( +/obj/machinery/holoplant, +/obj/machinery/air_alarm{ + pixel_y = 22 }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) "bfN" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/tiled, @@ -1312,18 +1024,23 @@ /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"bii" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"biJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/light/no_nightshift{ + dir = 8 }, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) -"bjk" = ( -/turf/simulated/wall/r_wall, -/area/chapel/main) +/turf/simulated/floor/tiled/dark, +/area/vacant/vacant_shop) +"biY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "bjB" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 @@ -1337,50 +1054,19 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"bkG" = ( -/obj/machinery/light/no_nightshift{ - dir = 4 +"bkr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/sleep/cryo) -"bkL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - name = "Private Restroom"; - req_access = list(); - req_one_access = list() - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) -"bll" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"blq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"bkR" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass/medical{ - name = "Patient Psychiatric Ward B" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "psyche-a-outer"; - name = "Ward A"; - opacity = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) "blr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -1412,10 +1098,33 @@ /obj/structure/railing, /turf/simulated/floor/plating, /area/space) +"bmd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/triumph/surfacebase/sauna) "bmG" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/tiled/techmaint, /area/space) +"bmJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/space) +"bmN" = ( +/obj/machinery/door/airlock/maintenance/cargo, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/space) "bnj" = ( /obj/machinery/holopad, /obj/effect/floor_decal/spline/fancy/wood/corner{ @@ -1423,16 +1132,20 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) +"bnw" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/air_alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/medical/virologyaccess) "boh" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"boy" = ( -/obj/machinery/transhuman/synthprinter, -/turf/simulated/floor/tiled/dark, -/area/space) "boD" = ( /obj/machinery/firealarm{ layer = 3.3; @@ -1451,51 +1164,43 @@ /obj/structure/closet/crate, /turf/simulated/floor/tiled/dark, /area/vacant/vacant_shop) -"boY" = ( +"boH" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) +"bpe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) -"brI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 + dir = 6 }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) +"bqC" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/tether/exploration) -"brT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/space) -"bsc" = ( +/area/main_map/hallway/deck3) +"bsb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"bst" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_three) +/turf/simulated/floor/carpet/bcarpet, +/area/space) +"bsl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "bsz" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 8 @@ -1503,38 +1208,9 @@ /obj/structure/lattice, /turf/simulated/open, /area/space) -"bsB" = ( -/obj/structure/cryofeed, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"bsG" = ( -/turf/simulated/wall/r_wall, -/area/ai) "bsW" = ( /turf/simulated/wall, /area/tether/exploration/pilot_office) -"btc" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration/pilot_office) -"btj" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) "btL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -1555,15 +1231,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"buc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) "bve" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -1588,24 +1255,10 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/resleeving) -"bwT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - network = list("Psychiatric") - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +"bwU" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "bxw" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/structure/railing{ @@ -1620,12 +1273,18 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"byF" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 +"byq" = ( +/turf/simulated/wall/prepainted/civilian, +/area/vacant/vacant_shop) +"byG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "bzh" = ( /obj/structure/table/woodentable, /turf/simulated/floor/carpet, @@ -1637,34 +1296,15 @@ }, /turf/simulated/open, /area/space) -"bzC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) "bzD" = ( /turf/simulated/floor/carpet/bcarpet, /area/chapel/main) -"bzF" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "xenobiocoldroom"; - name = "XenoBio Cold Room" +"bAl" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"bzT" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/captain) +/turf/simulated/floor/tiled/steel, +/area/security/brig) "bAz" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 1 @@ -1675,15 +1315,6 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/medical/psych) -"bBo" = ( -/obj/machinery/atmospherics/component/unary/heat_exchanger{ - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "bBt" = ( /mob/living/simple_mob/animal/passive/fish/koi/poisonous, /obj/structure/railing, @@ -1707,38 +1338,39 @@ }, /turf/simulated/floor/tiled, /area/medical/virology) +"bBH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/item/stack/cable_coil/random_belt, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "bBI" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/vacant/vacant_shop) -"bBW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/security{ - id_tag = "detdoor"; - name = "Detective"; - req_access = list(4) +"bBQ" = ( +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) "bCw" = ( /obj/machinery/door/airlock/external, /turf/simulated/floor/plating, /area/space) -"bDd" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/vacant_shop) +"bDk" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward) +"bDB" = ( +/obj/item/trash/candle, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) +"bDW" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/port) "bEg" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -1769,19 +1401,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"bEE" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cargo) "bEV" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -1800,16 +1419,20 @@ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"bFB" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"bGS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 5 +"bFK" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck3) +"bHh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) +"bHk" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) "bHo" = ( /turf/simulated/floor/greengrid, /area/ai) @@ -1820,12 +1443,19 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/dark, /area/tcommsat/entrance) -"bHJ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 +"bHz" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/chapel/main) +"bHT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "bId" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/grass, @@ -1854,15 +1484,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/gravity_gen) -"bIt" = ( -/obj/structure/sign/hangar/three, -/turf/simulated/wall/r_wall, -/area/space) -"bIE" = ( -/obj/structure/ladder, -/obj/structure/barricade, -/turf/simulated/floor/plating, -/area/space) "bIM" = ( /turf/simulated/floor/tiled/steel, /area/security/brig) @@ -1905,62 +1526,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"bKu" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"bLt" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/table/rack/shelf{ - name = "voidsuit shelving" - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/item/clothing/suit/space/void/pilot{ - pixel_x = 3 - }, -/obj/item/clothing/suit/space/void/pilot{ - pixel_x = 3 - }, -/obj/item/clothing/suit/space/void/pilot{ - pixel_x = 3 - }, -/obj/item/clothing/head/helmet/space/void/pilot{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/clothing/head/helmet/space/void/pilot{ - pixel_x = -5 - }, -/obj/item/clothing/head/helmet/space/void/pilot{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/exploration/pilot_office) "bLA" = ( /obj/structure/table/standard, /obj/structure/bedsheetbin, @@ -1975,26 +1540,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"bLM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cockpit) -"bLP" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/machinery/atmospherics/component/unary/outlet_injector{ - frequency = 1445; - id = "burn_in"; - volume_rate = 700 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) "bLS" = ( /obj/structure/stairs/spawner/east, /obj/structure/railing{ @@ -2002,25 +1547,28 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"bMz" = ( -/obj/structure/table/standard, -/obj/item/storage/box/bodybags{ - pixel_x = -1; - pixel_y = -2 +"bLY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 }, -/obj/item/autopsy_scanner, -/obj/item/storage/box/freezer, -/obj/item/surgical/bioregen, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"bOy" = ( -/obj/machinery/door/airlock{ - name = "Pilot's Office"; - req_one_access = list(67) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) +"bMF" = ( +/obj/machinery/door/airlock/glass{ + name = "Garden" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/tether/exploration/pilot_office) +/turf/simulated/floor/tiled/steel_ridged, +/area/hydroponics/garden) +"bMK" = ( +/obj/structure/ladder, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft) +"bOc" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) "bOG" = ( /obj/machinery/cryopod, /turf/simulated/floor/tiled/techfloor/grid, @@ -2044,6 +1592,21 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/white, /area/medical/resleeving) +"bPF" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/turf/simulated/floor/plating, +/area/space) "bQc" = ( /obj/machinery/door/blast/regular{ density = 0; @@ -2058,13 +1621,16 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"bQz" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 +"bQR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/medical/psych_ward) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) "bQS" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ @@ -2072,10 +1638,9 @@ }, /turf/simulated/floor/reinforced/airless, /area/rnd/test_area) -"bRa" = ( -/obj/machinery/suit_cycler/director, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +"bQV" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) "bRc" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Medical Maintenance Access"; @@ -2105,9 +1670,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology) -"bSq" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) "bTe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -2133,6 +1695,24 @@ /obj/machinery/power/apc/direction_bump/west, /turf/simulated/floor/tiled, /area/medical/virology) +"bTM" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/material/minihoe, +/obj/item/material/minihoe, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/obj/item/tool/wirecutters/clippers/trimmers, +/obj/effect/floor_decal/grass_edge{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/hydroponics/garden) +"bUa" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "bUj" = ( /obj/structure/table/marble, /obj/machinery/atmospherics/component/unary/vent_pump/on{ @@ -2141,6 +1721,15 @@ /obj/item/retail_scanner/civilian, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) +"bUr" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/structure/closet/secure_closet/hydroponics{ + req_access = list(28) + }, +/turf/simulated/floor/tiled, +/area/hydroponics) "bUR" = ( /obj/machinery/door/blast/regular{ density = 0; @@ -2155,78 +1744,25 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"bVq" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, +"bVj" = ( +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/techmaint, -/area/crew_quarters/sleep/cryo) -"bVE" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"bWk" = ( -/obj/structure/stairs/spawner/east, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) -"bWu" = ( -/obj/structure/closet/secure_closet/pilot, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/exploration/pilot_office) -"bXv" = ( -/obj/structure/ladder, -/obj/structure/barricade/cutout, -/turf/simulated/floor/plating, /area/space) "bXA" = ( /turf/simulated/floor/tiled/techfloor, /area/tether/exploration/pilot_office) -"bXZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" +"bXT" = ( +/obj/structure/sign/directions/bridge, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = -10 }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"bYa" = ( -/obj/machinery/door_timer/cell_3{ - pixel_x = -32 +/obj/structure/sign/directions/cryo{ + dir = 8; + pixel_y = 10 }, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) -"bYA" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/space) +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/theatre) "bYH" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -2238,39 +1774,19 @@ /obj/structure/lattice, /turf/simulated/open, /area/space) -"bYW" = ( -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_three) -"bYX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 +"bZm" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, -/obj/structure/handrail, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = 1; - frequency = 1380; - id_tag = "expshuttle_docker"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "medivac_docker_pump_out_external" +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) +"bZo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) -"bZd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) +/area/main_map/maintenance/deck_three/port) "bZH" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/outdoors/grass/heavy/interior, @@ -2282,32 +1798,29 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_shop) -"bZP" = ( -/turf/simulated/wall/r_wall, -/area/medical/resleeving) "bZZ" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"cay" = ( -/obj/effect/floor_decal/spline/fancy{ +"cao" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"caq" = ( +/obj/structure/railing{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"caS" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/port) +/obj/structure/railing, +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "caT" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Medical Maintenance Access"; @@ -2315,16 +1828,12 @@ }, /turf/simulated/floor/tiled/techmaint, /area/medical/morgue) -"cbQ" = ( -/obj/machinery/atmospherics/component/binary/pump/high_power{ - dir = 8; - id = "emg_pump"; - name = "Emergency Pen Flood Manual Switch" +"cca" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 }, -/obj/structure/window/phoronreinforced, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/test_area) "ccM" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -2352,16 +1861,13 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"cek" = ( -/obj/item/storage/excavation, -/obj/item/pickaxe, -/obj/item/tool/wrench, -/obj/item/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) +"ceK" = ( +/obj/random/cutout, +/obj/structure/sign/deck3{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "ceL" = ( /obj/structure/table/woodentable, /obj/structure/flora/pottedplant/flower{ @@ -2377,35 +1883,6 @@ }, /turf/simulated/floor/water/pool, /area/triumph/surfacebase/sauna) -"cfC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/general) -"cgb" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) "cgd" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ @@ -2416,20 +1893,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"cgo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload"; - req_access = list(16); - req_one_access = list() - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) "cgI" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -2439,6 +1902,11 @@ }, /turf/simulated/floor/wood, /area/chapel/main) +"cgK" = ( +/obj/structure/bookcase, +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft) "chE" = ( /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/theatre) @@ -2461,41 +1929,29 @@ }, /turf/simulated/floor/wood, /area/chapel/main) -"cik" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"cix" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 }, -/obj/structure/bed/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/virology) -"cil" = ( -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) +/turf/simulated/floor/reinforced, +/area/rnd/rdoffice) "ciN" = ( /obj/structure/catwalk, /turf/simulated/floor/reinforced/airless, /area/space) -"cji" = ( -/obj/machinery/atmospherics/component/unary/freezer{ +"cja" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "cjp" = ( /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"cjv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 5 - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology) "cjA" = ( /obj/structure/table/steel_reinforced, /obj/machinery/recharger, @@ -2516,6 +1972,13 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) +"cjM" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "ckD" = ( /obj/item/stool/padded, /obj/structure/cable/green{ @@ -2550,41 +2013,34 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/space) -"cmE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"cnL" = ( +/obj/effect/floor_decal/corner/green{ dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"cmP" = ( -/turf/simulated/wall, -/area/maintenance/deck_three) +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/brig) +"cos" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "coZ" = ( /obj/effect/floor_decal/grass_edge, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"cpo" = ( -/obj/machinery/door/window/brigdoor/southleft{ - dir = 4; - id = "Cell 2"; - name = "Cell 2"; - req_access = list(2) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/security/prison) "cpy" = ( /obj/structure/railing, /obj/structure/railing{ @@ -2592,34 +2048,40 @@ }, /turf/simulated/floor/tiled/techmaint, /area/space) +"cpz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/air_alarm{ + pixel_y = 30 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) "cpT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/medical/morgue) -"cqW" = ( -/obj/random/obstruction, +"cqg" = ( +/obj/structure/table/steel, +/obj/random/cigarettes, /turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) -"crp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 5 - }, -/turf/simulated/wall/r_wall, -/area/maintenance/research) +/area/main_map/maintenance/deck_three/aft/starboard) "crx" = ( /turf/simulated/floor/outdoors/dirt, /area/hydroponics/garden) -"crP" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "psyche-a-inner"; - name = "Ward A"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/psych_ward) +"cry" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "crZ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -2637,44 +2099,6 @@ /obj/structure/flora/ausbushes/stalkybush, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) -"cse" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) -"csz" = ( -/obj/machinery/optable{ - name = "Robotics Operating Table" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/space) -"ctg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access = list(); - req_one_access = list(7,29) - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"ctw" = ( -/turf/simulated/wall, -/area/rnd/robotics/surgeryroom1) -"cty" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) "cux" = ( /obj/structure/railing{ dir = 1 @@ -2682,33 +2106,14 @@ /obj/structure/railing, /turf/simulated/floor/plating, /area/maintenance/library) -"cuK" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) -"cuZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +"cuM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/excursion/general) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "cvg" = ( /turf/simulated/floor/tiled/techmaint, /area/maintenance/library) @@ -2716,44 +2121,6 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/chapel/main) -"cvD" = ( -/obj/machinery/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"cvF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/camera/network/medbay{ - network = list("Psychiatric") - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"cvM" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) -"cvO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/space) "cwE" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -2772,15 +2139,6 @@ }, /turf/simulated/floor/reinforced, /area/space) -"cwV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) "cwW" = ( /obj/effect/floor_decal/corner/green/border{ dir = 1 @@ -2788,22 +2146,6 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"cxm" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/landmark/spawnpoint/latejoin/station/cryogenics, -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"cxC" = ( -/obj/machinery/atmospherics/pipe/vent/high_volume{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/space) "cxK" = ( /obj/machinery/door/blast/regular{ density = 0; @@ -2818,51 +2160,54 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"cxX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/handrail, -/obj/machinery/airlock_sensor{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "medivac_docker_pump_out_external" - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) "cyt" = ( /obj/structure/filingcabinet, /turf/simulated/floor/tiled/dark, /area/tcommsat/entrance) -"czq" = ( -/obj/machinery/computer/diseasesplicer{ - dir = 1 +"czZ" = ( +/obj/item/tool/wirecutters{ + desc = "It gets jammed a lot."; + name = "janky wirecutters"; + tool_speed = 2 }, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = -32 +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) +"cAq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/effect/floor_decal/borderfloor, -/obj/item/radio/intercom{ - pixel_y = -24 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled, -/area/medical/virology) -"czL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) +/area/main_map/maintenance/deck_three) "cAH" = ( /obj/structure/bed, /obj/item/bedsheet/orange, /turf/simulated/floor/carpet, /area/security/brig) +"cAY" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/virology) +"cAZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) +"cBa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) "cBe" = ( /obj/machinery/atmospherics/portables_connector{ name = "Toxins Input Connector" @@ -2895,18 +2240,6 @@ }, /turf/simulated/floor/carpet, /area/medical/psych_ward) -"cBR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "cCp" = ( /obj/machinery/light_switch{ pixel_y = -25 @@ -2920,13 +2253,16 @@ /obj/item/flame/candle/candelabra/everburn, /turf/simulated/floor/tiled/techfloor, /area/space) -"cEl" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) +"cEf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "cFj" = ( /turf/simulated/floor/tiled/techfloor, /area/engineering/gravity_gen) @@ -2942,6 +2278,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) +"cFv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "cGr" = ( /obj/structure/stairs/spawner/south, /obj/structure/railing{ @@ -2965,6 +2308,9 @@ }, /turf/simulated/floor/plating, /area/space) +"cHQ" = ( +/turf/simulated/floor/tiled/techmaint, +/area/security/prison) "cHY" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/airless/ceiling, @@ -2976,13 +2322,9 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/chapel/main) -"cLB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +"cKv" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_three/aft/port) "cLD" = ( /obj/structure/simple_door/hardwood, /turf/simulated/floor/carpet, @@ -2994,25 +2336,12 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_shop) -"cLS" = ( -/obj/structure/sign/warning/nosmoking_2, -/turf/simulated/wall, -/area/rnd/workshop) -"cMi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"cMh" = ( +/obj/machinery/door/airlock/glass{ + name = "Garden" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) -"cMQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "cNd" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -3020,66 +2349,46 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"cNp" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized/full{ - id = "robo_surg" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "cNC" = ( /obj/machinery/atmospherics/component/binary/pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"cNF" = ( -/obj/effect/floor_decal/techfloor{ +"cNP" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) +"cOG" = ( +/obj/machinery/light/fairy, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) +"cOM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/space) -"cOk" = ( -/obj/machinery/computer/diseasesplicer, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 +/obj/landmark{ + name = "lightsout" }, /turf/simulated/floor/tiled, -/area/space) -"cOv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tether/exploration/pilot_office) -"cOA" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"cPf" = ( -/turf/simulated/wall, -/area/chapel/main) +/area/crew_quarters/cafeteria) "cPA" = ( /obj/machinery/door/airlock/maintenance/cargo, /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled/techmaint, /area/space) -"cPJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"cQd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "cQB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3107,13 +2416,15 @@ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"cRM" = ( -/obj/machinery/porta_turret/crescent{ - density = 1; - faction = "neutral" +"cRQ" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/virologyisolation) +"cRY" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 }, -/turf/simulated/floor/airless/ceiling, -/area/ai) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "cSm" = ( /obj/machinery/firealarm{ dir = 1; @@ -3155,15 +2466,17 @@ }, /turf/simulated/floor/tiled, /area/medical/morgue) -"cST" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"cTM" = ( +/obj/landmark/spawnpoint/latejoin/station/cryogenics, +/obj/effect/floor_decal/techfloor{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) "cUh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/bcarpet, @@ -3187,24 +2500,6 @@ /obj/structure/railing, /turf/simulated/floor/reinforced/airless, /area/space) -"cUA" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) "cUK" = ( /obj/machinery/air_sensor{ frequency = 1445; @@ -3225,27 +2520,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"cUO" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/port) -"cVE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) -"cVM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "cVW" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 @@ -3253,19 +2527,6 @@ /obj/structure/lattice, /turf/simulated/open, /area/space) -"cWa" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock{ - name = "Pilot's Office"; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/exploration/pilot_office) "cWu" = ( /obj/machinery/door/airlock, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3295,13 +2556,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"cXH" = ( -/obj/machinery/transhuman/resleever, -/turf/simulated/floor/tiled/dark, -/area/space) -"cYf" = ( -/turf/simulated/wall, -/area/medical/psych_ward) "cYJ" = ( /turf/simulated/floor/bluegrid, /area/ai) @@ -3315,15 +2569,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) -"cZb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/captain) +"cZD" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/space) "cZF" = ( /obj/machinery/smartfridge/secure/extract, /obj/structure/window/reinforced{ @@ -3331,19 +2580,10 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"cZH" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"cZX" = ( -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/structure/closet/secure_closet/psych, -/turf/simulated/floor/wood, -/area/space) +"cZP" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/plating, +/area/main_map/Hangar_bay/deck2) "dak" = ( /turf/simulated/floor/tiled/white, /area/medical/psych) @@ -3368,9 +2608,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"daS" = ( -/turf/simulated/wall, -/area/vacant/vacant_shop) +"daR" = ( +/obj/landmark/spawnpoint/latejoin/station/cyborg, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) "dbk" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -3389,24 +2633,55 @@ }, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) +"dbO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/rdoffice) "dcR" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, /area/security/brig) +"dec" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/port) "dem" = ( /obj/effect/floor_decal/techfloor/orange, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/gravity_gen) -"dez" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced{ +"deF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/direction_bump/south, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"dfa" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/obj/structure/window/phoronreinforced/full, -/turf/simulated/floor/plating, -/area/medical/psych_ward) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) +"dfd" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/ai) "dff" = ( /turf/simulated/floor/reinforced/airless, /area/space) @@ -3420,20 +2695,15 @@ /obj/structure/railing/grey, /turf/simulated/open, /area/ai_upload) -"dfR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) "dfU" = ( /obj/machinery/atmospherics/pipe/simple/insulated{ dir = 9 }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) +"dhv" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/robotics/surgeryroom1) "did" = ( /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) @@ -3446,6 +2716,11 @@ }, /turf/simulated/floor/tiled, /area/medical/morgue) +"diF" = ( +/obj/structure/catwalk, +/obj/structure/ladder/updown, +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "diL" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -3458,19 +2733,27 @@ "djq" = ( /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) -"dkq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"djX" = ( +/obj/spawner/window/reinforced/full/firelocks, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck3) +"dks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) +"dky" = ( +/obj/structure/railing{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/turf/simulated/floor/carpet, -/area/security/detectives_office) +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "dkO" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -3479,6 +2762,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/security/brig) +"dlc" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_three) "dll" = ( /obj/effect/floor_decal/techfloor{ dir = 5 @@ -3488,12 +2774,10 @@ }, /turf/simulated/floor/tiled/dark, /area/vacant/vacant_shop) -"dlq" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"dlT" = ( +"dlL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -3501,7 +2785,7 @@ dir = 6 }, /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/maintenance/deck_three/aft/starboard) "dma" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/freezer, @@ -3518,26 +2802,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"dmN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/general) -"dmW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"dmY" = ( -/obj/structure/table/reinforced, -/obj/random/toy, -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "dnk" = ( /obj/structure/table/rack/shelf/steel, /obj/item/flashlight, @@ -3551,28 +2815,25 @@ }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"dnH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 10 - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology) -"doY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +"doQ" = ( +/obj/structure/ladder, +/obj/structure/barricade/cutout, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft) "dpj" = ( /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research) -"dpX" = ( -/obj/structure/grille, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/reinforced/airless, -/area/space) +"dpu" = ( +/obj/machinery/light/no_nightshift, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"dqQ" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward) "drw" = ( /obj/structure/catwalk, /obj/structure/railing{ @@ -3598,9 +2859,25 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"dsr" = ( +"dsb" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access = list(6) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, /turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) +/area/medical/morgue) +"dsp" = ( +/obj/structure/sign/deck/third{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "dsR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3631,6 +2908,13 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) +"dtO" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/port) "dtT" = ( /obj/machinery/door/window/brigdoor/southright{ name = "Containment Pen"; @@ -3638,22 +2922,19 @@ }, /turf/simulated/floor/wood, /area/rnd/xenobiology) -"dtX" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/airless, -/area/rnd/test_area) +"dtY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "duk" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/medical/psych_ward) -"duq" = ( -/obj/structure/stairs/spawner/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"duw" = ( -/obj/machinery/blackbox_recorder, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) "duF" = ( /obj/machinery/atmospherics/component/unary/heat_exchanger{ dir = 8 @@ -3672,38 +2953,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"dve" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) "dvl" = ( /obj/machinery/camera/network/research{ dir = 4 }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research) -"dvm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/space) -"dvn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_three) "dvX" = ( /turf/simulated/floor/tiled/old_cargo/blue, /area/security/brig) +"dwh" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "dwC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -3720,13 +2984,6 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"dxo" = ( -/obj/structure/flora/pottedplant/orientaltree, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/space) "dxw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -3740,30 +2997,33 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"dxM" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/security/starboard) -"dye" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 +"dyu" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) +/area/security/prison) "dyx" = ( /obj/structure/reagent_dispensers/watertank/high, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) +"dyA" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "dyP" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 9 }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) +"dze" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "dzu" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -3782,22 +3042,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/gravity_gen) -"dzX" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access = list(8) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "dAh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -3813,6 +3057,21 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) +"dAP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/machinery/air_alarm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) "dAV" = ( /turf/space/basic, /area/space) @@ -3833,75 +3092,29 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/medical/resleeving) -"dBk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/asteroid, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/tether/exploration/pilot_office) -"dBA" = ( -/obj/machinery/computer/security/mining{ - dir = 4; - name = "xenobiology camera monitor"; - network = list("Xenobiology") - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"dBZ" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/storage/fancy/vials, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5 - }, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/virology) -"dCc" = ( -/obj/random/cutout, -/obj/structure/sign/deck3{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/space) -"dCS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"dCl" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"dCV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"dCm" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck3) +"dDp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/air_alarm{ - pixel_y = 22 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "dDq" = ( /obj/structure/sign/deck/third{ pixel_y = 32 @@ -3923,135 +3136,41 @@ /obj/structure/lattice, /turf/simulated/open, /area/space) -"dFf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/port) "dFi" = ( /obj/item/stool/padded, /turf/simulated/floor/tiled/steel, /area/security/brig) -"dFq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) -"dFM" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/medical/psych) -"dGk" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/medical{ - id_tag = "MedicalResleeving"; - name = "Resleeving Lab"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/resleeving) +"dFJ" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/main_map/maintenance/deck_three/aft/port) "dGQ" = ( /obj/structure/bed/psych, /turf/simulated/floor/wood, /area/medical/psych/psych_1) +"dHu" = ( +/turf/simulated/wall/prepainted/civilian, +/area/chapel/main) +"dHw" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) "dHC" = ( /obj/spawner/window/reinforced/tinted/full/firelocks, /turf/simulated/floor/plating, /area/library) -"dHF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "dHQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"dHV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/space) -"dIy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) -"dIU" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"dJc" = ( -/turf/simulated/floor/tiled/white, -/area/space) -"dJq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"dJv" = ( -/obj/machinery/camera/network/medbay{ - dir = 1; - network = list("Psychiatric") - }, -/obj/machinery/computer/arcade/orion_trail, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"dJL" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/captain) "dJS" = ( /turf/simulated/shuttle/wall/voidcraft/hard_corner, /area/space) @@ -4060,59 +3179,30 @@ /obj/item/toy/plushie/squid/pink, /turf/simulated/floor/wood, /area/tether/exploration/pathfinder_office) +"dKw" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "dKO" = ( /obj/machinery/computer/telecomms/server, /turf/simulated/floor/tiled/techmaint, /area/tcommsat/entrance) -"dKS" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/button/windowtint{ - id = "det_office"; - pixel_x = -23 - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) "dLA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/wood, /area/triumph/surfacebase/sauna) -"dLE" = ( -/obj/machinery/door/airlock/maintenance/sec{ - req_one_access = list(4) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/detectives_office) "dLN" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, /turf/simulated/floor/wood, /area/medical/psych/psych_2) -"dLS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"dLT" = ( -/turf/simulated/wall, -/area/medical/psych) +"dMb" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "dNe" = ( /obj/structure/table/marble, /turf/simulated/floor/tiled/white, @@ -4123,39 +3213,34 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/space) -"dOI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"dNC" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/cryo) +"dOb" = ( +/turf/simulated/open, +/area/main_map/hallway/deck3) +"dOe" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 4 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) +"dOm" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 }, -/obj/effect/floor_decal/corner/beige/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) +/turf/simulated/floor/tiled/techfloor, +/area/security/prison) "dPc" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/reinforced/airless, /area/space) -"dPo" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "dPy" = ( /turf/simulated/floor/glass/reinforced, /area/crew_quarters/cafeteria) -"dPH" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) "dPI" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 8 @@ -4165,57 +3250,25 @@ }, /turf/simulated/floor/tiled, /area/medical/resleeving) -"dQc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"dPN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "dQv" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/plating, /area/medical/psych) -"dQQ" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/research_foyer_auxiliary) -"dQR" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) "dQW" = ( /turf/simulated/floor/wood, /area/medical/psych/psych_1) -"dRq" = ( -/obj/item/storage/excavation, -/obj/item/pickaxe, -/obj/item/tool/wrench, -/obj/item/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) +"dRj" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "dRH" = ( /obj/machinery/computer/security/mining{ dir = 4; @@ -4227,23 +3280,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"dSb" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ - start_pressure = 8500 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"dSC" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "dSR" = ( /obj/item/toy/plushie/red_fox, /turf/simulated/floor/grass, @@ -4268,19 +3304,17 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/prison) -"dTw" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/bed/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 - }, -/turf/simulated/floor/tiled, +"dTq" = ( +/obj/structure/barricade, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/plating, /area/space) +"dTL" = ( +/obj/machinery/light/fairy{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "dTX" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ @@ -4323,6 +3357,16 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/vacant/vacant_shop) +"dVM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) "dVQ" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/effect/floor_decal/industrial/warning/full, @@ -4332,81 +3376,62 @@ }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"dWo" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, +"dWB" = ( +/obj/structure/girder, /turf/simulated/floor/plating, -/area/shuttle/excursion/cargo) -"dWz" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/material/minihoe, -/obj/item/material/minihoe, -/obj/item/shovel/spade, -/obj/item/shovel/spade, -/obj/item/plant_analyzer, -/obj/item/plant_analyzer, -/obj/item/tool/wirecutters/clippers/trimmers, -/obj/effect/floor_decal/grass_edge{ - dir = 4 - }, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/hydroponics/garden) +/area/main_map/maintenance/deck_three/aft/starboard) "dWI" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/reinforced/airless, /area/space) +"dXJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"dXN" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "dYC" = ( /obj/effect/floor_decal/industrial/loading{ dir = 8 }, /turf/simulated/floor/tiled, /area/medical/virologyaccess) +"dYO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "dYU" = ( /obj/structure/closet/crate/bin{ anchored = 1 }, /turf/simulated/floor/tiled/steel, /area/security/brig) -"dZa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/resleeving) "dZu" = ( /turf/simulated/floor/tiled, /area/medical/morgue) -"dZx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"dZX" = ( -/obj/landmark/spawnpoint/latejoin/station/cryogenics, -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +"dZD" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/workshop) "eap" = ( /obj/structure/cable/heavyduty, /obj/machinery/power/pointdefense{ @@ -4427,15 +3452,9 @@ }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"ecl" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) +"ecG" = ( +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/starboard) "edb" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 8 @@ -4455,37 +3474,19 @@ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"edJ" = ( -/obj/structure/railing{ - dir = 4 - }, +"eeo" = ( /obj/structure/stairs/spawner/south, /obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"eew" = ( -/obj/machinery/air_alarm{ - pixel_y = 30 - }, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/rnd/research) -"efc" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"efe" = ( -/obj/structure/disposaloutlet{ dir = 4 }, -/obj/structure/disposalpipe/trunk{ +/obj/structure/railing{ dir = 8 }, -/turf/simulated/floor/bluegrid, -/area/rnd/xenobiology) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) +"eey" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_three/aft/starboard) "efy" = ( /obj/machinery/computer/aifixer, /turf/simulated/floor/tiled/techfloor, @@ -4499,12 +3500,10 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_monitoring) -"efY" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) +"egQ" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) "egS" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, @@ -4520,75 +3519,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) -"ehu" = ( -/obj/structure/toilet{ - dir = 8 +"eia" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) +"ejm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, /turf/simulated/floor/tiled/monotile, -/area/security/prison) -"ehy" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) -"eik" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"eio" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"eiv" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/machinery/scale, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"ejt" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/space) -"ekF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research_foyer_auxiliary) +/area/main_map/hallway/deck3) "elp" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -4599,9 +3542,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"elw" = ( -/turf/simulated/wall, -/area/maintenance/deck_three/aft/starboard) "elz" = ( /obj/machinery/door/window/brigdoor/eastleft{ name = "Containment Pen"; @@ -4609,39 +3549,14 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) +"elO" = ( +/obj/structure/sign/warning/caution, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/storage) "emk" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/research) -"emy" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/item/suit_cooling_unit, -/obj/item/suit_cooling_unit, -/obj/item/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/structure/closet{ - name = "voidsuit accessories" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration/pilot_office) -"emD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/space) "emG" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4654,23 +3569,28 @@ "emV" = ( /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) +"enq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) "enr" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/techfloor, /area/engineering/gravity_gen) -"eop" = ( +"eoD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 4 }, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"epH" = ( -/obj/machinery/computer/crew, -/turf/simulated/floor/tiled/white, -/area/space) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "epN" = ( /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, @@ -4688,62 +3608,46 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"era" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) -"erO" = ( -/obj/structure/table/woodentable, -/obj/item/toy/plushie/therapy/green, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) -"erS" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"eqh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/camera/network/medbay{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/machinery/disease2/diseaseanalyser, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/space) -"esr" = ( -/obj/item/storage/box/syringes, -/obj/item/reagent_containers/dropper, -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/space) -"esL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/steel_grid, /area/rnd/storage) -"etj" = ( +"eqt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) +"erC" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"erR" = ( +/obj/machinery/button/remote/blast_door{ + id = "toxin_storage_vent"; + name = "Toxin Storage Emergency Vent"; + pixel_x = 28; + pixel_y = 4; + req_access = list(55) + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/storage) +"erV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -4754,43 +3658,29 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) +/area/main_map/maintenance/deck_three/aft/port) +"esJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) "etJ" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/wood, /area/medical/psych/psych_2) -"etR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/space) "etT" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"etV" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "evl" = ( /obj/machinery/atmospherics/component/binary/pump/on{ dir = 4 @@ -4801,10 +3691,6 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/xenobiology) -"evD" = ( -/obj/structure/stairs/spawner/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) "evI" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; @@ -4813,12 +3699,10 @@ }, /turf/simulated/wall/r_lead, /area/engineering/gravity_gen) -"ewM" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, +"exf" = ( +/obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/port) +/area/medical/virologyisolation) "exk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4828,12 +3712,6 @@ }, /turf/simulated/floor/tiled/dark, /area/tcommsat/entrance) -"exs" = ( -/obj/structure/sign/deck/third{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) "exI" = ( /obj/machinery/fitness/heavy/lifter, /obj/effect/floor_decal/spline/plain, @@ -4867,15 +3745,9 @@ }, /turf/simulated/floor/carpet, /area/medical/psych) -"eyK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/black{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/space) +"eyN" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/workshop) "ezE" = ( /obj/effect/floor_decal/borderfloorblack, /obj/machinery/suit_cycler/pilot, @@ -4894,15 +3766,16 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) -"eAt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"eAR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "eCf" = ( /obj/structure/table/woodentable, /obj/machinery/computer/med_data/laptop, @@ -4918,10 +3791,6 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"eCu" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) "eCW" = ( /obj/structure/barricade, /turf/simulated/floor/reinforced, @@ -4984,24 +3853,6 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"eEB" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"eEI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_shop) "eEV" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Medical Maintenance Access"; @@ -5018,31 +3869,11 @@ }, /turf/simulated/floor/tiled/techmaint, /area/medical/medbay3) -"eEX" = ( -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) "eFd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/old_cargo/red, /area/security/brig) -"eFv" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) "eFB" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/machinery/light/no_nightshift{ @@ -5056,6 +3887,18 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) +"eGq" = ( +/obj/item/tool/wrench{ + desc = "The lower jaw seems to keep jiggling..."; + name = "loose wrench"; + tool_speed = 3 + }, +/obj/random/cigarettes, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) +"eHc" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/robotics/resleeving) "eHk" = ( /obj/structure/morgue, /turf/simulated/floor/tiled/techfloor, @@ -5070,27 +3913,38 @@ }, /turf/simulated/floor/wood, /area/chapel/main) -"eIf" = ( +"eIu" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/medical/psych_ward) +"eIH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) +"eJh" = ( +/obj/machinery/button/windowtint/multitint{ + id = "saunatint"; + name = "Privacy Control"; + pixel_x = -28 + }, +/obj/structure/table/woodentable, +/obj/item/towel/random, +/obj/item/towel/random, /obj/machinery/air_alarm{ - pixel_y = 30 + dir = 1; + pixel_y = -22; + target_temperature = 312.15 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research) -"eIX" = ( -/turf/simulated/wall, -/area/medical/psych/psych_2) +/turf/simulated/floor/wood, +/area/triumph/surfacebase/sauna) "eJn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5118,6 +3972,28 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) +"eKb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"eKh" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) "eKZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -5138,21 +4014,15 @@ }, /turf/simulated/floor/tiled, /area/space) -"eLi" = ( -/turf/simulated/wall/r_wall, -/area/medical/psych_ward) -"eLr" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - id_tag = "MedbayFoyer"; - name = "Recovery Wing"; - req_access = list(5) +"eLh" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) "eLB" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ @@ -5160,23 +4030,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/rnd/test_area) -"eLT" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/machinery/disease2/diseaseanalyser, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/virology) "eLW" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -5189,30 +4042,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/security/brig) -"eMe" = ( -/turf/simulated/floor/glass/reinforced, -/area/hallway/primary/central_three) -"eMf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"eMt" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Medical Compartment"; - req_one_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "eMN" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -5222,14 +4051,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"eMX" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "16-0" +"eNE" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/starboard) +/area/main_map/maintenance/deck_three/starboard) "eOO" = ( /obj/structure/railing/grey{ dir = 1 @@ -5239,43 +4066,14 @@ }, /turf/simulated/open, /area/ai) -"ePv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"ePH" = ( -/obj/effect/floor_decal/borderfloorwhite/corner, -/obj/effect/floor_decal/corner/beige/bordercorner, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "ePS" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"ePW" = ( -/turf/simulated/wall, -/area/medical/resleeving) "eQh" = ( /obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) -"eQF" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/tether/exploration) "eQQ" = ( /turf/simulated/floor/carpet/bcarpet, /area/space) @@ -5283,24 +4081,34 @@ /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, /area/security/brig) +"eRr" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/conveyor{ + dir = 1 + }, +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology) +"eRI" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/workshop) "eRK" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 }, /turf/simulated/floor/tiled, /area/rnd/xenobiology) -"eSB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 9 - }, -/obj/machinery/door/firedoor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) +"eSK" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "eSO" = ( /turf/simulated/floor/tiled/techfloor, /area/chapel/main) +"eTk" = ( +/obj/structure/ladder, +/obj/structure/bookcase, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft) "eTL" = ( /obj/effect/floor_decal/techfloor{ dir = 9 @@ -5312,47 +4120,19 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"eTQ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/machinery/button/windowtint{ - id = "robo_resleeving"; - pixel_x = 10; - pixel_y = 22 - }, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"eTY" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) "eUq" = ( /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"eUw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"eVa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"eUA" = ( -/obj/machinery/computer/aifixer, -/obj/machinery/camera/network/command, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "eVd" = ( /obj/machinery/power/apc/direction_bump/north, /obj/structure/cable/green{ @@ -5360,51 +4140,11 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"eVi" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"eVx" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three) "eVA" = ( /obj/structure/table/sifwoodentable, /obj/item/storage/box/cups, /turf/simulated/floor/wood, /area/medical/medbay3) -"eVO" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) -"eVS" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) -"eXc" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"eXg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/ai) "eXz" = ( /obj/structure/table/standard, /obj/machinery/computer/atmoscontrol/laptop{ @@ -5417,84 +4157,23 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"eXV" = ( -/obj/structure/sign/deck3{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"eYp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"eZz" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, +"eXF" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/main_map/maintenance/deck_three/aft/starboard) +"eYF" = ( /obj/machinery/air_alarm{ dir = 8; pixel_x = 25 }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/brig) -"eZG" = ( -/obj/machinery/shield_diffuser, -/turf/simulated/floor/airless, -/area/rnd/test_area) -"eZP" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/space) -"fao" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/machinery/recharger{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) -"fbf" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/item/radio/intercom{ +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"faU" = ( +/obj/machinery/air_alarm{ dir = 1; - name = "Station Intercom (General)"; - pixel_y = 26 + pixel_y = -22 }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/wood, -/area/space) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "fbj" = ( /obj/machinery/shower{ dir = 4 @@ -5525,11 +4204,6 @@ icon_state = "techmaint" }, /area/security/brig) -"fbW" = ( -/obj/structure/closet/secure_closet/captains, -/obj/item/clothing/accessory/poncho/roles/cloak/captain, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/captain) "fcv" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 @@ -5541,30 +4215,10 @@ /obj/structure/flora/ausbushes/leafybush, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"fcG" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"fde" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"fdf" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) +"fcL" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "fdz" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/grass_edge{ @@ -5572,18 +4226,6 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"fdL" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "fer" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -5594,9 +4236,6 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"feB" = ( -/turf/simulated/wall/r_wall, -/area/quartermaster/warehouse) "feM" = ( /obj/machinery/door/airlock/multi_tile/glass/polarized{ dir = 2; @@ -5605,19 +4244,17 @@ }, /turf/simulated/floor/tiled, /area/triumph/surfacebase/sauna) -"feU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) "ffa" = ( /obj/structure/railing, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) +"ffr" = ( +/obj/machinery/door/airlock{ + name = "Hydroponics"; + req_one_access = list(35) + }, +/turf/simulated/floor/tiled/techmaint, +/area/hydroponics) "ffQ" = ( /obj/machinery/camera/network/cargo{ dir = 8 @@ -5627,38 +4264,32 @@ }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) +"fgc" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/library) "fgj" = ( /obj/machinery/door/airlock, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/old_tile/white, /area/security/brig) -"fhp" = ( +"fhE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/gravity_gen) +"fhU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"fia" = ( -/obj/structure/stairs/spawner/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"fiv" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Bridge Compartment"; - req_one_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cockpit) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) "fiJ" = ( /obj/structure/railing{ dir = 1 @@ -5669,43 +4300,29 @@ /mob/living/simple_mob/animal/passive/fish/koi/poisonous, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) -"fiN" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"fjD" = ( -/obj/structure/table/standard, -/obj/item/melee/baton/slime/loaded, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"fjH" = ( +"fiK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 9 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"fjN" = ( -/obj/structure/cable/green{ - icon_state = "0-2" +/area/main_map/hallway/deck3) +"fiW" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"fkx" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor, +/area/tether/exploration/pilot_office) "fkB" = ( /obj/machinery/recharge_station, /turf/simulated/floor/tiled/steel, /area/security/brig) -"fkE" = ( -/turf/simulated/wall/rshull, -/area/shuttle/excursion/general) "fkM" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/structure/railing, @@ -5714,33 +4331,6 @@ }, /turf/simulated/floor/plating, /area/rnd/storage) -"fkN" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"fkZ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/bedsheet/medical, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = -32 - }, -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"flj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) "flC" = ( /obj/structure/table/steel_reinforced, /obj/machinery/cell_charger, @@ -5758,14 +4348,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"fmu" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "fmE" = ( /obj/machinery/light/small{ dir = 4 @@ -5787,18 +4369,6 @@ /obj/machinery/door/airlock/external, /turf/simulated/floor/tiled/techmaint, /area/space) -"fnI" = ( -/obj/structure/sign/directions/bridge, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = -10 - }, -/obj/structure/sign/directions/cryo{ - dir = 8; - pixel_y = 10 - }, -/turf/simulated/wall, -/area/crew_quarters/theatre) "foe" = ( /obj/structure/fence/door, /obj/machinery/door/firedoor{ @@ -5824,33 +4394,15 @@ }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) +"foL" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/test_area) "foM" = ( /obj/machinery/cryopod{ dir = 4 }, /turf/simulated/floor/carpet, /area/security/brig) -"foQ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/research_foyer_auxiliary) -"foS" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/security/starboard) -"fpm" = ( -/obj/effect/floor_decal/corner/beige/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) "fpr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5858,46 +4410,40 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai/foyer) -"fpu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) +"fpy" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "fpN" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) +"fpS" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/port) +"fqn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) "fqx" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/theatre) -"frd" = ( -/obj/machinery/smartfridge/secure/extract, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +"fqY" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/medical/psych_ward) "frn" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/rdoffice) -"frT" = ( -/obj/machinery/button/windowtint{ - id = "psyche"; - pixel_x = 24; - pixel_y = -2 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay recovery room door."; - dir = 8; - id = "mentaldoor2"; - name = "Door Switch"; - pixel_x = 28; - pixel_y = 9 - }, -/turf/simulated/floor/wood, -/area/space) "frV" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -5906,6 +4452,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) +"frY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) "fsf" = ( /obj/structure/table/standard, /obj/machinery/librarypubliccomp, @@ -5917,17 +4472,6 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_shop) -"fsB" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - id = "mechbay-inner"; - name = "Mech Bay" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "fsG" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/white, @@ -5941,18 +4485,23 @@ }, /turf/simulated/floor/tiled/dark, /area/ai) -"ftm" = ( -/obj/structure/bed/chair/office/dark, -/obj/landmark/spawnpoint/job/roboticist, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "ftq" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/security/brig) -"ftO" = ( -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) +"ftF" = ( +/obj/machinery/camera/network/tcomms{ + dir = 9 + }, +/obj/machinery/space_heater, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/entrance) "fud" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 6 @@ -5987,15 +4536,6 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) -"fuz" = ( -/obj/structure/table/reinforced, -/obj/random/plushie, -/obj/random/plushie, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "fuE" = ( /obj/structure/railing{ dir = 1 @@ -6005,53 +4545,10 @@ }, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) -"fuS" = ( -/obj/machinery/atmospherics/component/unary/freezer{ - icon_state = "freezer_1"; - power_setting = 20; - set_temperature = 73; - use_power = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"fuZ" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/table/rack/shelf{ - name = "voidsuit shelving" - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/item/clothing/suit/space/void/pilot{ - pixel_x = 3 - }, -/obj/item/clothing/suit/space/void/pilot{ - pixel_x = 3 - }, -/obj/item/clothing/suit/space/void/pilot{ - pixel_x = 3 - }, -/obj/item/clothing/head/helmet/space/void/pilot{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/clothing/head/helmet/space/void/pilot{ - pixel_x = -5 - }, -/obj/item/clothing/head/helmet/space/void/pilot{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration/pilot_office) +"fve" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/medical/virology) "fvo" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/structure/bed/chair{ @@ -6060,13 +4557,6 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/white, /area/medical/resleeving) -"fvC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/space) "fxw" = ( /obj/effect/floor_decal/industrial/danger{ dir = 1 @@ -6076,80 +4566,29 @@ "fxX" = ( /turf/simulated/open, /area/ai) -"fyk" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_three/forward/starboard) -"fyv" = ( -/obj/machinery/camera/network/medbay{ - network = list("Psychiatric") - }, -/obj/structure/table/steel_reinforced, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"fzg" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"fzv" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/machinery/air_alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/medical/virologyaccess) -"fzU" = ( -/obj/machinery/door/airlock/maintenance/medical{ - name = "Emergency Maintenance Access Use Only" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/space) -"fAb" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -31 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"fAd" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/bordercorner, -/obj/effect/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/exploration/pilot_office) -"fAD" = ( -/obj/effect/floor_decal/techfloor{ +"fyY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"fAG" = ( -/obj/item/tool/wrench{ - desc = "The lower jaw seems to keep jiggling..."; - name = "loose wrench"; - tool_speed = 3 +/area/main_map/maintenance/deck_three/starboard) +"fzo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/random/cigarettes, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) +"fzE" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/forward/starboard) "fAH" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -6158,21 +4597,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"fAO" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "fBa" = ( /obj/structure/catwalk, /obj/structure/railing{ @@ -6202,41 +4626,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"fCs" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) -"fCA" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) -"fDs" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) +"fCk" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "fDA" = ( /obj/effect/floor_decal/corner/green/full{ dir = 4 @@ -6330,74 +4723,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"fEG" = ( -/obj/machinery/button/windowtint/multitint{ - id = "saunatint"; - name = "Privacy Control"; - pixel_x = -28 - }, -/obj/structure/table/woodentable, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22; - target_temperature = 312.15 - }, -/turf/simulated/floor/wood, -/area/triumph/surfacebase/sauna) -"fEI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"fFI" = ( -/obj/machinery/computer/ship/engines, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cockpit) -"fFL" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) "fGi" = ( /obj/machinery/holoplant, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"fGr" = ( -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/structure/closet/emcloset/legacy, -/obj/item/storage/backpack/parachute, -/obj/item/storage/backpack/parachute, -/obj/item/storage/backpack/parachute, -/obj/item/storage/backpack/parachute, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/general) "fGw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -6407,6 +4737,63 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) +"fGz" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/obj/machinery/camera/network/research{ + network = list("Xenobiology"); + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "xenobio_cooler"; + name = "Cooler Belt" + }, +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "xenobiocoldroom" + }, +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/obj/machinery/camera/network/research{ + network = list("Xenobiology"); + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=73"; + name = "Cold Room Base" + }, +/area/rnd/xenobiology) +"fHn" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/psych/psych_2) "fHp" = ( /obj/structure/railing{ dir = 1 @@ -6450,25 +4837,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"fIK" = ( -/obj/structure/bed/chair/shuttle, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/purple/border, -/obj/machinery/turretid{ - check_access = 0; - control_area = /area/shuttle/excursion/general; - gl_uid = "exploration"; - pixel_x = -30; - req_access = null; - req_one_access = list(19,43,62,67); - uid = "exploration" +"fIR" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/general) -"fIQ" = ( -/turf/simulated/wall/r_wall, -/area/medical/virologyisolation) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) "fJt" = ( /turf/simulated/floor/tiled/dark{ initial_gas_mix = "n2=100;TEMP=80" @@ -6496,13 +4871,9 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"fKz" = ( -/obj/landmark/spawnpoint/latejoin/station/cryogenics, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +"fKv" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/virologyaccess) "fLa" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -6517,66 +4888,36 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/vacant/vacant_shop) -"fLs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"fLv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/purple{ + dir = 1 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"fMp" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) -"fLx" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/machinery/atmospherics/component/unary/vent_pump{ - external_pressure_bound = 0; - frequency = 1445; - icon_state = "map_vent_in"; - id_tag = "burn_out"; - initialize_directions = 4; - pump_direction = 0 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "fMH" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/sleep/cryo) -"fMI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - id_tag = "psychewaiting"; - name = "Psyche Lobby Room"; - dir = 1; - req_one_access = list(5) - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych) -"fMS" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/medbay{ - dir = 1; - network = list("Psychiatric") - }, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) -"fNg" = ( +"fNv" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) -"fNm" = ( -/obj/structure/sign/warning/caution, -/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_three/aft/starboard) +"fNU" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, /area/rnd/storage) "fOF" = ( /turf/simulated/shuttle/wall/voidcraft/hard_corner, @@ -6635,26 +4976,34 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) +"fRL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/wood, +/area/hydroponics/garden) "fRM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) -"fRP" = ( -/turf/simulated/wall/r_wall, -/area/rnd/research_foyer_auxiliary) -"fSb" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/table/gamblingtable, -/obj/item/deck/cards, -/obj/item/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = 5; - pixel_y = 12 +"fSs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/tether/exploration/pilot_office) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "fSB" = ( /obj/machinery/door/firedoor{ dir = 1 @@ -6683,26 +5032,6 @@ }, /turf/simulated/floor/tiled, /area/medical/virology) -"fTd" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4; - pixel_x = -2 - }, -/obj/machinery/door/window/westleft{ - dir = 4; - pixel_x = 3 - }, -/mob/living/simple_mob/animal/passive/snake/noodle, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/tether/exploration/pilot_office) -"fTh" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) "fTu" = ( /obj/structure/window/reinforced, /obj/machinery/disposal, @@ -6727,37 +5056,12 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"fTY" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/white, -/area/space) -"fUc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "fUh" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/reinforced, /area/space) -"fUw" = ( -/obj/structure/sign/deck/third{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) "fUz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -6781,14 +5085,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, /area/space) -"fVf" = ( -/obj/item/tool/wirecutters{ - desc = "It gets jammed a lot."; - name = "janky wirecutters"; - tool_speed = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) "fVG" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/warning, @@ -6808,10 +5104,15 @@ /obj/landmark/spawnpoint/job/scientist, /turf/simulated/floor/tiled, /area/rnd/test_area) -"fXd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +"fXp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "fXE" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -6824,12 +5125,29 @@ }, /turf/simulated/floor/tiled/steel, /area/security/brig) -"fYf" = ( -/obj/effect/floor_decal/techfloor{ +"fYa" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"fYC" = ( +/obj/effect/floor_decal/industrial/loading, +/obj{ + name = "---Merge conflict marker---" + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/prison) "fYM" = ( /obj/machinery/vending/hydronutrients, /turf/simulated/floor/tiled, @@ -6852,47 +5170,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/wood, /area/medical/psych/psych_1) -"fZr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"fZV" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, -/obj/structure/sink{ - pixel_y = 19 - }, -/obj/structure/mirror{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"fZw" = ( -/obj/machinery/holopad, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"fZC" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"fZN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "gaa" = ( /obj/structure/railing, /obj/effect/floor_decal/grass_edge{ @@ -6916,20 +5200,26 @@ }, /turf/simulated/open, /area/ai_upload) -"gax" = ( -/obj/machinery/computer/shuttle_control/explore/excursion, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cockpit) -"gaP" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +"gaw" = ( +/obj/machinery/air_alarm/monitor/isolation{ + alarm_id = "isolation_one"; + dir = 8; + pixel_x = 22 + }, +/obj/structure/table/standard, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/ears/earmuffs, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"gaB" = ( +/obj/effect/floor_decal/industrial/loading{ dir = 8 }, -/obj/machinery/camera/network/medbay{ - dir = 8; - network = list("Psychiatric") - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/tiled/steel, +/area/security/brig) "gaS" = ( /turf/simulated/floor/tiled, /area/medical/psych) @@ -6939,31 +5229,9 @@ }, /turf/simulated/floor/tiled/old_cargo/red, /area/security/brig) -"gbm" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"gbW" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) +"gbn" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/crew_quarters/cafeteria) "gcl" = ( /obj/machinery/door/blast/regular{ density = 0; @@ -6981,18 +5249,6 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor, /area/security/brig) -"gcJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "gdO" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/old_cargo/gray, @@ -7021,11 +5277,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/space) -"gfL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) "ggL" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -7035,6 +5286,10 @@ }, /turf/simulated/floor/tiled, /area/medical/virology) +"ghj" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/techmaint, +/area/space) "ghr" = ( /obj/item/stool/padded, /obj/effect/floor_decal/spline/fancy/wood{ @@ -7064,6 +5319,12 @@ "gjF" = ( /turf/simulated/floor/tiled/old_cargo/red, /area/security/brig) +"gks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/west, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/storage) "gkv" = ( /obj/structure/table/steel_reinforced, /obj/machinery/camera/network/research{ @@ -7072,6 +5333,15 @@ /obj/machinery/cell_charger, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) +"glo" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/port) +"glT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "gmy" = ( /obj/structure/cable{ icon_state = "1-2" @@ -7089,14 +5359,14 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) -"gnx" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized/full{ - id = "robo_resleeving" +"gnr" = ( +/obj/machinery/vending/loadout/uniform, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 }, -/turf/simulated/floor/plating, -/area/space) +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/resleeving) "gnJ" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6 @@ -7104,39 +5374,54 @@ /obj/structure/lattice, /turf/simulated/open, /area/space) +"goY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) +"gpO" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "gqr" = ( /obj/machinery/light/no_nightshift{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"grp" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +"gqu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) "grs" = ( /turf/simulated/floor/carpet/bcarpet, /area/security/brig) -"grP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) "gsh" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 }, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) +"gsA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) "gsM" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 32 @@ -7154,20 +5439,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"gta" = ( -/obj/effect/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/dark, -/area/space) "gtz" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"guT" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "gvc" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -7180,64 +5457,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) -"gvk" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) -"gvo" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/item/suit_cooling_unit, -/obj/item/suit_cooling_unit, -/obj/item/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/structure/closet{ - name = "voidsuit accessories" - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor, -/area/tether/exploration/pilot_office) -"gvr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"gvu" = ( -/obj/machinery/button/doorbell, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) -"gvB" = ( -/obj/structure/closet/secure_closet/pilot, -/obj/effect/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/exploration/pilot_office) -"gvC" = ( -/obj/machinery/ai_slipper, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) "gvK" = ( /obj/machinery/ntnet_relay, /obj/machinery/camera/network/tcomms, @@ -7254,21 +5473,15 @@ }, /turf/simulated/open, /area/ai) -"gwo" = ( -/obj/structure/railing{ - dir = 4 +"gwQ" = ( +/obj/structure/closet/secure_closet/genpop, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 3 }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/deck_three) -"gwT" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/wall/r_wall, -/area/rnd/test_area) +/turf/simulated/floor/tiled/techmaint, +/area/security/prison) "gxi" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -7280,51 +5493,25 @@ }, /turf/simulated/floor/wood, /area/tether/exploration/pathfinder_office) -"gxQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 +"gyL" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/excursion/general) -"gyf" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/research) -"gyE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/research_foyer_auxiliary) +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) "gzl" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"gzn" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 +"gzr" = ( +/obj/structure/cable/green{ + icon_state = "2-4" }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) "gzH" = ( /obj/machinery/button/remote/blast_door{ dir = 4; @@ -7350,10 +5537,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenobiology) -"gzI" = ( -/obj/structure/sign/warning/compressed_gas, -/turf/simulated/wall/r_wall, -/area/rnd/storage) "gzK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -7370,21 +5553,6 @@ /obj/item/slime_extract/grey, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"gAo" = ( -/turf/simulated/wall, -/area/medical/psych/psych_1) -"gAX" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"gBa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) "gBr" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/red, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7398,27 +5566,14 @@ /obj/machinery/biogenerator, /turf/simulated/floor/outdoors/dirt, /area/hydroponics/garden) -"gCz" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"gCT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) +"gDb" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/tether/exploration/pathfinder_office) "gDo" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"gDE" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tether/exploration/pilot_office) "gDL" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -7431,37 +5586,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"gEd" = ( -/obj/structure/table/standard, -/obj/item/tape_recorder{ - pixel_x = -3 - }, -/obj/item/paicard{ - pixel_x = 4 - }, -/obj/item/circuitboard/teleporter, -/obj/item/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/obj/machinery/air_alarm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) -"gEz" = ( -/obj/landmark/spawnpoint/latejoin/station/cryogenics, -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) "gEA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -7471,22 +5595,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/exploration/pilot_office) -"gEM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) -"gFg" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "gFr" = ( /obj/structure/railing{ dir = 4 @@ -7494,28 +5602,25 @@ /obj/structure/railing, /turf/simulated/open, /area/rnd/research) -"gFU" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "gGa" = ( /obj/structure/bed/chair/sofa/black/left, /turf/simulated/floor/wood, /area/library) -"gHg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +"gGt" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 }, +/obj/structure/table/wooden_reinforced, +/obj/item/flame/candle/candelabra/everburn, /turf/simulated/floor/tiled, -/area/triumph/surfacebase/sauna) -"gHC" = ( -/turf/simulated/wall, -/area/tether/exploration/pathfinder_office) +/area/main_map/maintenance/deck_three/forward/port) +"gHG" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "gHK" = ( /obj/structure/railing{ dir = 1 @@ -7531,34 +5636,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tcommsat/entrance) -"gIo" = ( -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 26; - pixel_y = -27 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) -"gIJ" = ( -/obj/structure/bed/chair/office/dark, -/obj/landmark/spawnpoint/job/detective, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"gIT" = ( -/obj/machinery/door_timer/cell_3{ - id = "Cell 2"; - name = "Cell 2"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) -"gIU" = ( -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "gJH" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/structure/railing{ @@ -7597,11 +5674,6 @@ }, /turf/simulated/floor/wood, /area/rnd/xenobiology) -"gJL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "gKi" = ( /obj/structure/railing{ dir = 1 @@ -7609,17 +5681,6 @@ /obj/structure/flora/ausbushes/reedbush, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) -"gKz" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"gKL" = ( -/obj/structure/closet/wardrobe/captain, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/captain) "gKP" = ( /obj/machinery/light/flamp, /obj/effect/floor_decal/grass_edge{ @@ -7627,16 +5688,29 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) +"gKR" = ( +/obj/structure/closet/secure_closet/genpop, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 3 + }, +/turf/simulated/floor/tiled/techmaint, +/area/security/prison) +"gLg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) "gLk" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) -"gLv" = ( -/obj/structure/closet/firecloset/full, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_monitoring) "gLW" = ( /obj/structure/table/bench/wooden, /obj/machinery/light/no_nightshift{ @@ -7644,24 +5718,6 @@ }, /turf/simulated/floor/wood, /area/triumph/surfacebase/sauna) -"gMq" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) "gMD" = ( /obj/random/trash_pile, /turf/simulated/floor/plating, @@ -7675,23 +5731,29 @@ }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/library) -"gNe" = ( -/obj/structure/closet/secure_closet/brig, +"gMT" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/structure/table/wooden_reinforced, /obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/security/prison) -"gOo" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"gOJ" = ( -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/space) +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_three/forward/port) +"gMZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) +"gNU" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/tcommsat/chamber) "gOY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -7720,74 +5782,49 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet/bcarpet, /area/library) -"gPz" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/security/prison) "gPD" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) +"gQl" = ( +/obj/structure/bed/chair/wood/wings, +/turf/simulated/floor/wood, +/area/medical/psych_ward) "gQn" = ( /obj/machinery/atmospherics/pipe/simple/insulated{ dir = 8 }, /turf/simulated/floor/reinforced/airless, /area/space) -"gQr" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) -"gQQ" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Vacant Shop" - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"gQv" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) +/area/crew_quarters/sleep/cryo) +"gQI" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "gRg" = ( /obj/structure/cable/green{ icon_state = "1-4" }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"gRx" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"gRu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/item/radio/intercom{ - pixel_y = -24 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/machinery/mech_recharger, -/turf/simulated/floor/bluegrid, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) "gRE" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 @@ -7818,21 +5855,6 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, /area/ai/foyer) -"gSH" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/reagentgrinder, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/item/stack/material/phoron{ - amount = 25 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "gSI" = ( /turf/simulated/floor/tiled/techfloor, /area/library) @@ -7868,13 +5890,6 @@ /obj/item/melee/baton/slime/loaded, /turf/simulated/floor/tiled, /area/rnd/xenobiology) -"gSU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/tiled/white, -/area/medical/medbay3) "gTc" = ( /obj/structure/closet/radiation, /turf/simulated/floor/tiled/techfloor/grid, @@ -7887,24 +5902,6 @@ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"gTK" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"gUo" = ( -/obj/machinery/door/blast/regular{ - dir = 8; - id = "toxin_storage_vent"; - name = "Toxin Storage Vent" - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/storage) -"gUW" = ( -/turf/simulated/wall/r_wall, -/area/rnd/research) "gVa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -7925,27 +5922,41 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) +"gWe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "gWu" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/xenobiology) -"gWA" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, +"gXF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/port) -"gWN" = ( -/obj/structure/cable/green{ - icon_state = "16-0" +/area/main_map/maintenance/deck_three/forward/starboard) +"gYv" = ( +/obj/machinery/light/small{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) +/turf/simulated/floor/carpet, +/area/medical/psych_ward) "gYD" = ( /obj/machinery/door/airlock/research{ name = "Robotics Surgery Room"; @@ -7956,6 +5967,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) +"gYG" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/triumph/surfacebase/sauna) "gYO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -7995,26 +6010,13 @@ /obj/machinery/door/airlock/glass_external, /turf/simulated/floor/airless/ceiling, /area/space) -"haZ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 +"hbf" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 1 }, -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/grass, -/area/medical/psych_ward) -"hbd" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) -"hbh" = ( -/obj/structure/sign/deck/third, -/turf/simulated/wall, -/area/hallway/primary/central_three) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "hbl" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -8022,12 +6024,6 @@ /obj/structure/closet/bombcloset, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"hbG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) "hbP" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -8037,31 +6033,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/exploration/pilot_office) -"hbY" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 +"hcc" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"hcb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 5 - }, -/turf/simulated/wall/r_wall, -/area/rnd/rdoffice) -"hcd" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) -"hce" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/medical/virology) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "hcj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -8071,25 +6049,9 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"hcw" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "hcS" = ( /turf/simulated/wall, /area/security/brig) -"hcW" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "hdl" = ( /obj/effect/floor_decal/grass_edge{ dir = 1 @@ -8099,70 +6061,43 @@ "hdE" = ( /turf/simulated/floor/carpet/sblucarpet, /area/medical/psych/psych_1) -"hdP" = ( -/turf/simulated/wall/r_wall, -/area/medical/virology) -"hdR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "xenobio7"; - name = "Containment Blast Doors"; - pixel_x = 24; - pixel_y = 24; - req_access = list(55) - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"hdY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/security/mining{ - dir = 4; - name = "psychiatric wing camera monitor"; - network = list("Psychiatric"); - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) "heb" = ( /obj/machinery/computer/telecomms/monitor, /turf/simulated/floor/tiled/techmaint, /area/tcommsat/entrance) -"hfb" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three) -"hfE" = ( -/turf/simulated/wall, -/area/maintenance/deck_three/starboard) +"hel" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/space) +"heB" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) "hgb" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/dark{ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"hgC" = ( -/obj/machinery/camera/network/research{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "hgH" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology) +"hhq" = ( +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) "hiZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -8203,79 +6138,44 @@ }, /turf/simulated/floor/tiled, /area/medical/virology) -"hju" = ( +"hjD" = ( +/obj/structure/ladder, +/obj/structure/stasis_cage, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft) +"hkd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 10 }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/beige/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "hko" = ( /turf/simulated/wall/durasteel, /area/ai) -"hkq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/rshull, -/area/shuttle/excursion/cargo) -"hku" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) -"hlu" = ( -/obj/structure/sign/deck3{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/port) "hlI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel, /area/security/brig) -"hmj" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_three/port) -"hmp" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 2; - name = "Cryogenic Storage" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/space) "hmr" = ( /obj/structure/table/steel_reinforced, /turf/simulated/floor/wood, /area/space) +"hmB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) "hmE" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -8286,24 +6186,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"hmL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techmaint, -/area/security/prison) -"hnR" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/resleeving) "hob" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -8316,15 +6198,6 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"hog" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/exploration/pilot_office) "hox" = ( /obj/structure/table/standard, /obj/item/slime_scanner, @@ -8340,60 +6213,9 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology) -"hoS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/captain) -"hpe" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - id_tag = "psychewaiting"; - name = "Psyche Lobby Room" - }, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled, -/area/medical/psych) "hpl" = ( /turf/simulated/floor/wood, /area/rnd/xenobiology) -"hpr" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/space) -"hpz" = ( -/obj/structure/table/standard, -/obj/item/folder/blue{ - pixel_x = 5 - }, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/item/clothing/glasses/science, -/obj/item/reagent_containers/syringe, -/turf/simulated/floor/tiled/monotile, -/area/rnd/xenobiology) -"hpM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) "hpQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -8406,22 +6228,22 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"hqf" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "hqh" = ( /obj/machinery/light/flamp, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) +"hqD" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) +"hqV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) "hrg" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -8436,34 +6258,17 @@ /obj/structure/table/rack, /turf/simulated/floor/wood, /area/vacant/vacant_shop) -"hrH" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"hrI" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/research) -"hrJ" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "hsd" = ( /obj/effect/mist, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/water/pool, /area/triumph/surfacebase/sauna) -"hsZ" = ( -/obj/structure/closet/secure_closet/detective, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 +"hsO" = ( +/obj/machinery/turnstile/exit{ + dir = 8 }, -/turf/simulated/floor/lino, -/area/security/detectives_office) +/turf/simulated/floor/tiled/techfloor, +/area/security/prison) "hti" = ( /obj/structure/table/steel_reinforced, /obj/effect/floor_decal/borderfloorwhite{ @@ -8489,20 +6294,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"htX" = ( -/obj/machinery/atmospherics/component/binary/pump/on, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"huq" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "xenobiocoldroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ +"hug" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/bluegrid, -/area/rnd/xenobiology) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "huv" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 8 @@ -8516,12 +6313,16 @@ }, /turf/simulated/floor/plating, /area/rnd/storage) -"huU" = ( -/obj/effect/floor_decal/techfloor{ +"huS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) "hvn" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/component/unary/vent_pump/on{ @@ -8535,42 +6336,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/space) -"hwk" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/space) -"hwm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 10 - }, -/obj/machinery/air_alarm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) -"hwq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "hwI" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -8597,58 +6362,43 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/prison) -"hxw" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) "hxC" = ( /obj/effect/mist, /turf/simulated/floor/water/deep/pool, /area/triumph/surfacebase/sauna) +"hxF" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) "hxR" = ( /obj/structure/bookcase/manuals/research_and_development, /turf/simulated/floor/wood, /area/security/brig) -"hyf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) +"hyi" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) "hyw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/xenobiology) -"hyB" = ( -/obj/structure/table/steel, -/obj/item/trash/candle, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) "hyH" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/simulated/floor/reinforced/airless, /area/space) -"hyO" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "xenobiocoldroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/xenobiology) -"hzj" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) -"hzm" = ( +"hyW" = ( +/obj/structure/girder, /turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/starboard) +/area/main_map/maintenance/deck_three/aft/port) "hzp" = ( /obj/structure/railing{ dir = 1 @@ -8669,6 +6419,12 @@ /obj/item/flashlight/lamp/green, /turf/simulated/floor/carpet/sblucarpet, /area/medical/psych/psych_1) +"hzZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) "hAn" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -8692,23 +6448,18 @@ /obj/machinery/librarypubliccomp, /turf/simulated/floor/wood, /area/library) -"hAA" = ( -/obj/machinery/camera/network/medbay, -/obj/structure/closet/secure_closet/psych, -/turf/simulated/floor/wood, -/area/space) "hAT" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) -"hBm" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +"hBM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/storage) "hBQ" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/spawner/window/borosillicate/reinforced/full/firelocks, @@ -8731,54 +6482,32 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"hDH" = ( -/obj/machinery/door/airlock/atmos{ - name = "Science Atmospherics Backup"; - req_access = list(24) - }, +"hDc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "hDQ" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 5 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"hEs" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +"hEY" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) +"hFt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/wood, -/area/space) -"hFi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) -"hFy" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) +/area/triumph/surfacebase/sauna) "hGb" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -8788,24 +6517,20 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"hGy" = ( -/obj/machinery/computer/arcade/battle, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +"hGc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "hGG" = ( /obj/machinery/camera/network/security, /turf/simulated/floor/tiled/steel, /area/security/prison) -"hHs" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/effect/floor_decal/corner/green{ - dir = 6 +"hGW" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "hHE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -8815,55 +6540,38 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"hHI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"hHP" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access"; - req_access = list(16); - req_one_access = list() +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_three) +"hIk" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 }, -/obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techfloor, -/area/ai/foyer) -"hHM" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/area/main_map/maintenance/deck_three/starboard) +"hIN" = ( +/obj/machinery/door/airlock/glass_external, +/turf/simulated/floor/plating, +/area/main_map/Hangar_bay/deck2) +"hJe" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/air_alarm{ + pixel_y = 22 }, /turf/simulated/floor/tiled/white, -/area/medical/ward) -"hIC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/area/medical/virologyaccess) +"hJw" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing{ + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay3) -"hIZ" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "shuttle_hatch"; - name = "Shuttle Rear Hatch" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"hJd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, +/turf/simulated/floor/plating, /area/space) "hJx" = ( /obj/effect/floor_decal/spline/plain{ @@ -8905,11 +6613,15 @@ /obj/structure/table/woodentable, /turf/simulated/floor/carpet/sblucarpet, /area/medical/psych/psych_2) -"hMt" = ( -/obj/structure/ladder, -/obj/structure/ore_box, -/turf/simulated/floor/plating, -/area/space) +"hMw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/door/airlock/glass{ + name = "Garden" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/hydroponics/garden) "hMG" = ( /obj/structure/table/standard, /obj/item/flashlight/lamp, @@ -8924,22 +6636,32 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenobiology) +"hNf" = ( +/obj/structure/bookcase, +/obj/item/book/bundle/custom_library/reference, +/obj/item/book/bundle/custom_library/reference, +/obj/item/book/bundle/custom_library/nonfiction, +/obj/item/book/bundle/custom_library/nonfiction, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/medical/psych_ward) +"hNm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "hNn" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4-8" }, /turf/simulated/floor/reinforced, /area/space) -"hOy" = ( -/obj/machinery/disease2/incubator, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/space) "hOM" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -8961,6 +6683,15 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/hydroponics/garden) +"hQF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "hQS" = ( /obj/structure/filingcabinet/medical{ desc = "A large cabinet with hard copy medical records."; @@ -8974,122 +6705,59 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"hRr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_three) "hRt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"hRD" = ( -/obj/structure/closet/firecloset/full, -/obj/machinery/requests_console/preset/research{ - pixel_x = 32 +"hRu" = ( +/obj/structure/table/standard, +/obj/item/tape_recorder{ + pixel_x = -3 + }, +/obj/item/paicard{ + pixel_x = 4 + }, +/obj/item/circuitboard/teleporter, +/obj/item/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/machinery/air_alarm{ + pixel_y = 30 }, /turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"hRR" = ( -/obj/structure/table/standard, -/obj/item/aiModule/reset, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"hRZ" = ( -/turf/simulated/wall/rshull, -/area/shuttle/excursion/cargo) -"hUe" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/camera/network/security{ - dir = 1 +/area/rnd/rdoffice) +"hSA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/security/prison) -"hUm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"hUy" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "xenobiocoldroom" - }, -/obj/machinery/atmospherics/component/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - on = 1 - }, -/obj/machinery/camera/network/research{ - network = list("Xenobiology"); - dir = 1 - }, -/turf/simulated/floor/bluegrid{ - initial_gas_mix = "n2=500;TEMP=73"; - name = "Cold Room Base" - }, -/area/rnd/xenobiology) -"hUI" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio6"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"hVj" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/reagent_containers/glass/bottle/stoxin, -/obj/item/reagent_containers/glass/bottle/stoxin, -/obj/item/reagent_containers/glass/bottle/stoxin, -/obj/item/storage/box/syringes, -/obj/item/gun/launcher/syringe, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) +/area/main_map/maintenance/deck_three/port) +"hSF" = ( +/turf/simulated/wall/prepainted/civilian, +/area/maintenance/library) +"hTM" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/pool) +"hUd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) +"hUC" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "hVs" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/spline/plain{ @@ -9106,10 +6774,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"hVY" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) "hWz" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -9124,27 +6788,27 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"hXM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"hXp" = ( +/obj/structure/railing{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"hYr" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 +/obj/structure/railing{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"hYR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/open, +/area/main_map/maintenance/deck_three) +"hZk" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) +"hZt" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/ai_upload) +"hZy" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, /area/space) "hZN" = ( /obj/structure/cable{ @@ -9158,16 +6822,10 @@ /obj/structure/flora/tree/jungle_small, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research) -"iac" = ( -/obj/structure/table/standard, -/obj/item/aiModule/nanotrasen, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"iaj" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/corner/beige/full, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +"hZU" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "ian" = ( /obj/structure/railing{ dir = 4 @@ -9177,13 +6835,16 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"iau" = ( -/obj/machinery/cryopod/robot, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 +"iaY" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) +"ibb" = ( +/turf/simulated/wall/prepainted/cargo, +/area/quartermaster/warehouse) "ibG" = ( /obj/machinery/door/airlock/research{ name = "Toxins Storage"; @@ -9192,35 +6853,18 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/rnd/storage) -"icv" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/chamber) -"icR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) -"idh" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ +"ica" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) +"idm" = ( +/obj/machinery/holoplant, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ dir = 4 }, -/obj/machinery/meter, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/hallway/deck3) "idO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -9234,51 +6878,19 @@ }, /turf/simulated/floor/water/pool, /area/triumph/surfacebase/sauna) -"ifq" = ( -/obj/effect/floor_decal/borderfloor{ +"ieW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research_foyer_auxiliary) -"ifJ" = ( -/obj/effect/floor_decal/borderfloorwhite/corner{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/machinery/sleep_console{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/shuttle/excursion/general) -"ifP" = ( -/obj/machinery/camera/network/research{ - dir = 4; - network = list("Xenobiology") - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research_foyer_auxiliary) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "ifR" = ( /obj/structure/flora/ausbushes/leafybush, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"igu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/space) "igD" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -9290,15 +6902,6 @@ /obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_monitoring) -"ihe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai) "ihg" = ( /obj/machinery/door/airlock/maintenance/rnd{ name = "Toxins Maintenance Access"; @@ -9320,83 +6923,30 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"ihM" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) -"ihY" = ( -/obj/machinery/light/fairy{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) -"iif" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"iiP" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, +"ijh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 }, /turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) -"ijf" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/space) +/area/main_map/maintenance/deck_three) "ijo" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/xenobiology) -"ijt" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_three/forward) "ijD" = ( /obj/machinery/light/no_nightshift{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"ijI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "ike" = ( /obj/structure/railing{ dir = 4 @@ -9406,31 +6956,20 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"ikj" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/shuttle/excursion/general) "ikl" = ( /obj/structure/simple_door/wood, /turf/simulated/floor/tiled/dark, /area/vacant/vacant_shop) -"ikB" = ( -/obj/machinery/light/small{ - dir = 8 +"iks" = ( +/turf/simulated/wall/prepainted/civilian, +/area/space) +"ikt" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/starboard) +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_three/forward/starboard) "ikJ" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ @@ -9438,6 +6977,15 @@ }, /turf/simulated/floor/plating, /area/rnd/research) +"ikZ" = ( +/obj/structure/ladder, +/obj/structure/frame, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft) +"ilQ" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "ilW" = ( /obj/machinery/computer/security/engineering{ dir = 4 @@ -9447,77 +6995,19 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_monitoring) -"imf" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/phoronreinforced/full, -/turf/simulated/floor/plating, -/area/medical/psych_ward) -"imj" = ( -/obj/machinery/holoplant, -/obj/structure/railing/grey, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/central_three) "imQ" = ( /obj/machinery/smartfridge/food, /turf/simulated/wall, /area/crew_quarters/kitchen) -"imU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"inA" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) -"imV" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"imX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ dir = 8 }, /turf/simulated/floor/plating, -/area/space) -"inh" = ( -/turf/simulated/floor/tiled/dark, -/area/space) -"inB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_external" - }, -/obj/effect/shuttle_landmark{ - base_area = /area/tether/exploration; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "expshuttle_dock"; - landmark_tag = "tether_excursion_hangar"; - name = "Excursion Shuttle Dock" - }, -/obj/overmap/entity/visitable/ship/landable/excursion, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) +/area/main_map/maintenance/deck_three/port) "inM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /obj/structure/cable/green{ @@ -9527,21 +7017,6 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"inU" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) "ioh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -9551,95 +7026,41 @@ }, /turf/simulated/floor/plating, /area/ai_upload) -"iot" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/stool/padded, -/turf/simulated/floor/wood, -/area/space) "ioF" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 9 }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) -"ioL" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) "ioV" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/gravity_gen) -"ipq" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red, -/turf/simulated/floor/tiled, -/area/rnd/test_area) +"ipp" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait, +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "ipw" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"ipL" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio6"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/northright{ - dir = 8; - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/door/window/brigdoor/northright{ - dir = 4; - name = "Containment Pen"; - req_access = list(55) - }, -/obj/machinery/conveyor{ - dir = 8; - id = "xenobiocoldroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"iqs" = ( -/obj/item/roller_holder, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) +"iqq" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/research) "irh" = ( /obj/machinery/telecomms/server/presets/unused, /turf/simulated/floor/tiled/dark{ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"irk" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"irX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) +"irH" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/kitchen) "ism" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -9649,45 +7070,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/library) -"isq" = ( -/obj/structure/ladder, -/obj/structure/plasticflaps, -/turf/simulated/floor/plating, -/area/space) -"isx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) -"isC" = ( -/obj/machinery/door_timer/cell_3{ - id = "Cell 1"; - name = "Cell 1"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) -"isI" = ( -/obj/machinery/computer/security/telescreen{ - pixel_y = 32 - }, -/obj/machinery/vending/loadout/gadget, -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "isT" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/beige/border, @@ -9707,22 +7089,6 @@ /obj/machinery/power/apc/direction_bump/south, /turf/simulated/floor/tiled/white, /area/medical/psych) -"ita" = ( -/obj/machinery/light/fairy, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) -"itH" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"iuh" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/space) "iul" = ( /obj/machinery/atmospherics/component/unary/outlet_injector{ dir = 1; @@ -9745,24 +7111,16 @@ /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) -"iux" = ( -/obj/machinery/air_alarm/monitor/isolation{ - alarm_id = "isolation_two"; - dir = 8; - pixel_x = 22 +"iuS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/structure/table/standard, -/obj/machinery/light/no_nightshift{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/ears/earmuffs, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"iuN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/medical/medbay_primary_storage) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) "iuT" = ( /obj/structure/table/woodentable, /obj/structure/plushie/ian{ @@ -9772,21 +7130,42 @@ /obj/item/toy/plushie/kitten, /turf/simulated/floor/wood, /area/medical/psych/psych_1) -"iwg" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/machinery/air_sensor{ - frequency = 1445; - id_tag = "burn_sensor"; - output = 63 +"iwI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"ixk" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/plating, +/area/space) +"iwJ" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"iwX" = ( +/obj/structure/bed/chair/wheelchair, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/direction_bump/east, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) "ixl" = ( /obj/structure/sink{ pixel_y = 19 @@ -9834,27 +7213,13 @@ /obj/structure/lattice, /turf/simulated/open, /area/space) -"iyI" = ( +"iyF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"iyO" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) "izc" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/effect/floor_decal/grass_edge{ @@ -9862,55 +7227,26 @@ }, /turf/simulated/floor/outdoors/dirt, /area/hydroponics/garden) -"izL" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ +"izw" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning/cee, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) +"izE" = ( +/obj/structure/sign/hangar/three, +/turf/simulated/wall/r_wall, +/area/main_map/Hangar_bay/deck2) +"iAl" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) +"iAp" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"izT" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) -"izW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/wall/rshull, -/area/shuttle/excursion/cargo) -"iAa" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "iAy" = ( /obj/effect/floor_decal/techfloor{ dir = 4 @@ -9918,63 +7254,44 @@ /obj/machinery/door/window/eastleft, /turf/simulated/floor/tiled/dark, /area/vacant/vacant_shop) -"iAG" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 +"iAX" = ( +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck3) +"iCi" = ( +/obj/structure/sign/deck3{ + pixel_y = 32 }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"iBa" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) +"iCp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/structure/window/phoronreinforced/full, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/rnd/test_area) -"iBj" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/meter, -/obj/machinery/door/firedoor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "iCw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/storage) -"iCy" = ( -/obj/item/book/manual/standard_operating_procedure, -/obj/structure/table/woodentable, -/obj/item/storage/fancy/cigarettes/dromedaryco, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"iDa" = ( -/turf/simulated/open, -/area/hallway/primary/central_three) "iDl" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/library) -"iDG" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/handrail{ +"iDn" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) "iDM" = ( /obj/structure/bookcase/manuals/medical, /turf/simulated/floor/wood, @@ -9991,15 +7308,34 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techmaint, /area/security/prison) -"iDZ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three) +"iEg" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + on = 1 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "Mainframe Base" + }, +/area/tcommsat/chamber) "iEJ" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple, /turf/simulated/floor/tiled, /area/rnd/rdoffice) +"iFC" = ( +/obj/machinery/door/airlock/glass{ + name = "Psyche Lobby Room" + }, +/turf/simulated/floor/tiled, +/area/medical/psych) "iFG" = ( /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/freezer, @@ -10026,30 +7362,10 @@ }, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) -"iGy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/ai) -"iGI" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, +"iGJ" = ( +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) -"iHc" = ( -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay recovery room door."; - dir = 8; - id = "mentaldoor"; - name = "Door Switch"; - pixel_x = 28; - pixel_y = 9 - }, -/turf/simulated/floor/wood, -/area/space) +/area/main_map/maintenance/deck_three/starboard) "iHr" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -10081,24 +7397,6 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/medical/virology) -"iHW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"iIN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) "iIP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -10117,23 +7415,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/cafeteria) -"iIV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) -"iJk" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 18; - pixel_y = 7 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/item/healthanalyzer, -/turf/simulated/floor/tiled/neutral, -/area/shuttle/excursion/general) "iJv" = ( /obj/machinery/door/firedoor/multi_tile, /obj/machinery/door/airlock/multi_tile/glass, @@ -10145,36 +7426,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"iKo" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/wall/rshull, -/area/shuttle/excursion/cargo) "iKt" = ( /obj/item/flame/candle/candelabra, /turf/simulated/floor/tiled/techfloor, /area/space) -"iKw" = ( -/obj/structure/sign/deck3{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/starboard) -"iKN" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/structure/flora/pottedplant/bamboo, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/psych_ward) -"iLI" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "iLO" = ( /obj/machinery/door/airlock/maintenance/sec, /obj/structure/cable/green{ @@ -10189,39 +7444,47 @@ }, /turf/simulated/floor/tiled/techmaint, /area/security/prison) -"iLX" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/structure/table/wooden_reinforced, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/deck_three/forward/port) -"iMD" = ( -/obj/structure/window/reinforced/polarized/full{ - id = "robo_resleeving" - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "robo_resleeving" - }, +"iMc" = ( +/obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/space) +/area/main_map/maintenance/deck_three) "iMM" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_grid, /area/rnd/storage) +"iMP" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/direction_bump/south, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"iMU" = ( +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/space) "iNg" = ( /obj/structure/bookcase/legal/sop, /turf/simulated/floor/wood, /area/security/brig) +"iNA" = ( +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 4; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 0; + pressure_checks_default = 0; + on = 1 + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=100;TEMP=80"; + name = "Mainframe Base" + }, +/area/tcommsat/chamber) "iNJ" = ( /obj/structure/flora/ausbushes/leafybush, /obj/effect/floor_decal/spline/plain{ @@ -10252,15 +7515,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"iOG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) "iOQ" = ( /obj/structure/table/standard, /obj/item/paper_bin{ @@ -10278,6 +7532,15 @@ }, /turf/simulated/floor/wood, /area/security/brig) +"iOT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) "iOW" = ( /obj/machinery/atmospherics/component/unary/freezer{ icon_state = "freezer_1"; @@ -10287,14 +7550,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"iPe" = ( -/obj/machinery/turretid/stun{ - control_area = "\improper AI Chamber"; - name = "AI Upload turret control"; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) "iPw" = ( /obj/structure/sink{ dir = 4; @@ -10334,6 +7589,13 @@ icon_state = "techmaint" }, /area/security/brig) +"iPH" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) "iPT" = ( /obj/item/beach_ball, /turf/simulated/floor/grass, @@ -10348,13 +7610,34 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology) -"iRD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +"iQY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + id_tag = "MedicalResleeving"; + name = "Resleeving Lab"; + req_access = list(5) }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) +"iRy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) "iRT" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 @@ -10362,69 +7645,32 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/dark, /area/tcommsat/entrance) -"iRZ" = ( -/obj/random/plushie, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"iSV" = ( -/obj/structure/table/standard, -/obj/item/gun/energy/taser/xeno, -/obj/item/multitool, -/obj/machinery/camera/network/research{ - dir = 4; - network = list("Xenobiology") +"iTr" = ( +/obj/machinery/light{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/turf/simulated/floor/wood, +/area/hydroponics/garden) "iTP" = ( /turf/simulated/wall/r_wall, /area/maintenance/substation/tcomms) -"iTV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"iUo" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) +"iUy" = ( +/obj/landmark{ + name = "lightsout" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"iUP" = ( -/obj/machinery/light/spot{ - pixel_y = 32 - }, -/turf/simulated/wall/rshull, -/area/shuttle/excursion/cargo) +/turf/simulated/floor/tiled/white, +/area/medical/psych) "iUQ" = ( /obj/machinery/telecomms/processor/preset_two, /turf/simulated/floor/tiled/dark{ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"iVD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/space) -"iVF" = ( -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/door/firedoor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"iVP" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "iVS" = ( /obj/structure/sign/deck3, /turf/simulated/wall/r_wall, @@ -10436,21 +7682,16 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai/foyer) -"iWz" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 +"iWy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/general) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/hydroponics/garden) "iWS" = ( /obj/effect/floor_decal/techfloor{ dir = 10 @@ -10461,35 +7702,10 @@ /obj/machinery/light/small, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"iXe" = ( -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"iXs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "iXA" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) -"iXS" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/structure/flora/pottedplant/minitree, -/turf/simulated/floor/tiled, -/area/maintenance/deck_three/forward/port) "iYh" = ( /obj/effect/floor_decal/grass_edge{ dir = 8 @@ -10497,15 +7713,6 @@ /obj/machinery/portable_atmospherics/hydroponics/soil, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"iYq" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three) "iYL" = ( /turf/simulated/floor/tiled/steel_ridged, /area/medical/medbay3) @@ -10524,12 +7731,6 @@ /obj/structure/railing, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"iZw" = ( -/obj/structure/barricade, -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/plating, -/area/space) "iZx" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -10539,15 +7740,9 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"jac" = ( -/obj/machinery/door/airlock/engineering{ - name = "Hangar Substation" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/space) +"jan" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_three/forward/starboard) "jap" = ( /obj/structure/cable/heavyduty{ icon_state = "0-2" @@ -10557,29 +7752,16 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"jaS" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ +"jaO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"jbe" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/camera/network/medbay{ - network = list("Psychiatric") +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "jbo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -10592,6 +7774,16 @@ }, /turf/simulated/floor/tiled/techmaint, /area/security/prison) +"jbt" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) "jbJ" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 @@ -10605,16 +7797,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"jcA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) "jcE" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -10624,35 +7806,46 @@ }, /turf/simulated/floor/plating, /area/quartermaster/warehouse) -"jdi" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three) +"jds" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/plating, +/area/space) "jdx" = ( /turf/simulated/floor/wood, /area/medical/psych/psych_2) -"jdI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/medbay3) -"jdS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/purple{ - dir = 8 - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology) "jec" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/leafybush, /obj/effect/floor_decal/grass_edge, /turf/simulated/floor/outdoors/dirt, /area/hydroponics/garden) +"jeo" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) +"jev" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) +"jeM" = ( +/obj/machinery/door/blast/regular{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) "jfg" = ( /obj/effect/floor_decal/corner/green/border{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) +"jfJ" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "jfR" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -10688,16 +7881,9 @@ }, /turf/simulated/floor/tiled/techfloor, /area/library) -"jhR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"jig" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) +"jhf" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "jiL" = ( /turf/simulated/floor/tiled, /area/hydroponics) @@ -10705,11 +7891,23 @@ /obj/effect/floor_decal/techfloor/orange, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"jkN" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/glass, +"jje" = ( +/obj/structure/ladder, +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft) +"jjB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, /turf/simulated/floor/tiled/techmaint, -/area/space) +/area/main_map/maintenance/deck_three/aft/starboard) "jkS" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology) @@ -10719,6 +7917,12 @@ }, /turf/simulated/floor/reinforced, /area/space) +"jll" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "jmb" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -10727,6 +7931,11 @@ /obj/structure/lattice, /turf/simulated/open, /area/space) +"jmd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "jmq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -10740,30 +7949,6 @@ }, /turf/simulated/floor/wood, /area/rnd/xenobiology) -"jnH" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"jnJ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/port) -"jnN" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/space) "jok" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -10771,48 +7956,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/medical/morgue) -"joE" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Garden" - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 +"joD" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"joQ" = ( +/obj/machinery/light/small{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 8 }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) -"jpj" = ( -/obj/machinery/vending/loadout/uniform, -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/resleeving) -"jqe" = ( -/obj/structure/table/woodentable, -/obj/item/toy/plushie/siamese_cat, -/obj/item/toy/plushie/therapy/green, -/turf/simulated/floor/wood, -/area/space) -"jqg" = ( -/obj/structure/table/standard, -/obj/item/slime_scanner, -/obj/item/slime_scanner, -/obj/item/storage/box/monkeycubes{ - starts_with = list(/obj/item/reagent_containers/food/snacks/monkeycube/wrapped=10) - }, -/obj/item/storage/box/monkeycubes{ - starts_with = list(/obj/item/reagent_containers/food/snacks/monkeycube/wrapped=10) - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "jqn" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/flora/ausbushes/fullgrass, @@ -10820,18 +7979,6 @@ /obj/effect/floor_decal/grass_edge, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"jqs" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/flashlight/lamp, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/carpet, -/area/security/brig) "jra" = ( /obj/structure/simple_door/hardwood, /turf/simulated/floor/wood, @@ -10843,29 +7990,21 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"jrr" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) "jrL" = ( /obj/structure/sign/deck3{ pixel_y = 32 }, /turf/simulated/floor/reinforced/airless, /area/space) -"jsf" = ( +"jsc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"jsA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/wall/rshull, -/area/shuttle/excursion/general) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"jsB" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/theatre) "jsI" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -10878,36 +8017,29 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"jsU" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/vending/phoronresearch, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"jtR" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/space) -"jtW" = ( -/obj/effect/floor_decal/techfloor, +"jta" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) +"jtb" = ( +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward) +"jtM" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 + }, /turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +/area/medical/morgue) "juz" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/structure/railing, /turf/simulated/floor/plating, /area/rnd/storage) -"juB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) "juN" = ( /obj/effect/floor_decal/grass_edge{ dir = 1 @@ -10915,64 +8047,24 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"juQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/item/storage/box/glasses, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +"jvr" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_three/forward/port) "jvv" = ( /obj/structure/railing, /turf/simulated/open, /area/library) -"jvD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/storage) -"jvL" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/wall/r_wall, -/area/rnd/test_area) "jwm" = ( /obj/structure/table/woodentable, /obj/item/paper_bin, /turf/simulated/floor/wood, /area/tether/exploration/pathfinder_office) -"jxG" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 +"jwV" = ( +/obj/machinery/light/small{ + dir = 1 }, -/turf/simulated/floor/tiled/steel, -/area/security/prison) -"jyk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"jyo" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "jyp" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 @@ -10991,11 +8083,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) -"jyN" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/hydroponics/garden) "jyQ" = ( /obj/item/suit_cooling_unit, /obj/item/suit_cooling_unit, @@ -11017,88 +8104,21 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/exploration/pilot_office) -"jzd" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/medbay{ - dir = 1; - network = list("Psychiatric") - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"jzD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"jzF" = ( -/obj/machinery/button/remote/blast_door{ - id = "xenobio6"; - name = "Containment Blast Doors"; - pixel_y = 28; - req_access = list(55) - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +"jzg" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/tcommsat/entrance) +"jzz" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/rdoffice) "jzH" = ( /turf/simulated/floor/tiled/monotile, /area/security/brig) -"jzU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) -"jAA" = ( -/obj/machinery/porta_turret/ai_defense, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) "jAM" = ( /obj/effect/floor_decal/industrial/danger{ dir = 8 }, /turf/simulated/floor/reinforced, /area/space) -"jAZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Medical Compartment"; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"jCh" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "jCp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/tiled/white, @@ -11110,17 +8130,6 @@ }, /turf/simulated/floor/tiled/steel, /area/security/brig) -"jDe" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret/stationary{ - gl_uid = "exploration"; - installation = /obj/item/gun/energy/phasegun; - name = "exploration turret"; - req_one_access = list(19,43,62,67); - uid = "exploration" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) "jDg" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/atmospherics/component/unary/vent_pump/on{ @@ -11128,12 +8137,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"jDn" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "jDq" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 @@ -11143,16 +8146,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) -"jDB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"jDS" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/captain) +"jDJ" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) "jEd" = ( /obj/machinery/door/airlock/research{ name = "Robotics Resleeving Room"; @@ -11166,27 +8164,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/resleeving) -"jEx" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized/full{ - id = "robo_resleeving" - }, -/obj/structure/window/reinforced/polarized{ - id = "robo_resleeving" - }, -/turf/simulated/floor/plating, -/area/space) "jEQ" = ( /obj/structure/table/bench/steel, /turf/simulated/floor/wood, /area/space) -"jEZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "jFi" = ( /obj/structure/stairs/spawner/south, /obj/structure/railing/grey{ @@ -11194,9 +8175,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai/foyer) -"jFz" = ( -/turf/simulated/floor/carpet, -/area/security/detectives_office) +"jFO" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "jFV" = ( /obj/structure/toilet{ dir = 1 @@ -11206,42 +8188,34 @@ }, /turf/simulated/floor/tiled/old_tile/white, /area/security/brig) -"jGg" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"jGq" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/sleep/cryo) "jGU" = ( /obj/machinery/telecomms/server/presets/service, /turf/simulated/floor/tiled/dark{ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"jHf" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "jHl" = ( /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) +"jHI" = ( +/obj/machinery/door/airlock/maintenance/engi, +/turf/simulated/floor/plating, +/area/engineering/engine_monitoring) +"jHP" = ( +/obj/machinery/door/airlock/atmos{ + name = "Civilian Atmospherics Backup"; + req_access = list(24) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/wall/prepainted/civilian, +/area/space) "jHS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -11254,16 +8228,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"jIc" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"jIE" = ( -/turf/simulated/wall/rshull, -/area/shuttle/excursion/cockpit) "jJp" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -11283,48 +8247,14 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/resleeving) -"jKL" = ( -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"jLo" = ( -/obj/machinery/cryopod/robot, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"jLp" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/surgery, -/obj/item/paper{ - desc = ""; - info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management"; - name = "note to science staff" - }, -/obj/item/robotanalyzer, -/obj/item/robotanalyzer, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"jLx" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) "jLy" = ( /obj/structure/bed/chair/wood/wings, /turf/simulated/floor/carpet, /area/medical/psych_ward) -"jLR" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +"jLT" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "jMp" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -11366,16 +8296,15 @@ }, /turf/simulated/floor/plating, /area/quartermaster/warehouse) -"jMT" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/wood, -/area/space) "jMZ" = ( /turf/simulated/open, /area/space) +"jNF" = ( +/obj/machinery/door/airlock/glass{ + name = "Vacant Shop" + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) "jOg" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -11397,33 +8326,20 @@ }, /turf/simulated/floor/tiled/steel, /area/security/brig) -"jOT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"jOX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass/medical{ - name = "Psychiatric Play-Area Access" - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "jPo" = ( /obj/structure/window/reinforced, /obj/structure/table/glass, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) +"jPD" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward) "jPL" = ( /obj/structure/table/rack{ dir = 8; @@ -11449,28 +8365,12 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"jRm" = ( -/obj/structure/table/woodentable, -/obj/item/storage/photo_album{ - pixel_y = -10 - }, -/obj/item/reagent_containers/food/drinks/flask{ - pixel_x = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/captain) "jRq" = ( /obj/machinery/camera/network/security{ dir = 1 }, /turf/simulated/floor/carpet, /area/security/brig) -"jRt" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) "jRZ" = ( /obj/structure/curtain/black{ anchored = 1; @@ -11479,65 +8379,34 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor, /area/chapel/main) -"jSb" = ( -/obj/machinery/ai_slipper, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"jSi" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/structure/closet/secure_closet/pilot, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration/pilot_office) -"jSo" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) -"jTd" = ( -/obj/structure/closet/crate/bin{ - desc = "A large bin for medical and other personnel that deals with bio-grade waste."; - icon_closed = "biohazard"; - icon_opened = "biohazardopen"; - icon_state = "biohazard"; - name = "biohazard bin" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +"jSQ" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "jTJ" = ( /obj/structure/stairs/spawner/west, /turf/simulated/floor/plating, /area/medical/virologyaccess) -"jTK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) "jUd" = ( /obj/machinery/door/airlock/maintenance/cargo, /turf/simulated/floor/tiled/techmaint, /area/space) -"jVb" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 +"jUD" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/psych_ward) +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "xenobio_cooler"; + name = "Cooler Belt" + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=73"; + name = "Cold Room Base" + }, +/area/rnd/xenobiology) "jVf" = ( /obj/structure/table/glass, /obj/item/reagent_containers/spray/cleaner, @@ -11553,6 +8422,14 @@ }, /turf/simulated/floor/tiled, /area/medical/virology) +"jVk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) "jVy" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -11571,24 +8448,27 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"jWm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"jWP" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ +"jVQ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) +/obj/structure/table/rack, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"jWc" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/ai/foyer) +"jWM" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_three/aft) +"jXa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) "jXf" = ( /turf/simulated/floor/tiled/white, /area/medical/psych_ward) @@ -11603,6 +8483,11 @@ /obj/structure/railing/grey, /turf/simulated/open, /area/ai) +"jXA" = ( +/obj/structure/railing, +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "jXG" = ( /obj/structure/table/standard, /obj/machinery/reagentgrinder, @@ -11615,6 +8500,18 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) +"jXK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/medical/resleeving) "jXZ" = ( /turf/simulated/floor/wood, /area/tether/exploration/pathfinder_office) @@ -11624,37 +8521,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"jYA" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "jYD" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"jYL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) "jYZ" = ( /obj/structure/flora/ausbushes/grassybush, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research) -"kac" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/port) +"jZC" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/robotics/surgeryroom1) "kae" = ( /obj/structure/cable/green, /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ @@ -11666,15 +8544,6 @@ }, /turf/simulated/floor/tiled, /area/medical/virologyaccess) -"kay" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tether/exploration/pilot_office) "kbs" = ( /obj/structure/cable{ icon_state = "1-2" @@ -11722,6 +8591,15 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) +"kdI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "kdM" = ( /obj/structure/stairs/spawner/east, /obj/structure/railing{ @@ -11734,19 +8612,30 @@ /obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/steel, /area/security/prison) +"ken" = ( +/obj/random/plushie, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) +"kep" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/prison) "keq" = ( /obj/effect/floor_decal/corner/green{ dir = 9 }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"kew" = ( -/turf/simulated/wall, -/area/maintenance/deck_three/forward/starboard) "keI" = ( /obj/structure/flora/ausbushes/stalkybush, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) +"keQ" = ( +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft) "kfe" = ( /obj/structure/table/rack/steel, /obj/item/instrument/violin, @@ -11762,43 +8651,10 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/theatre) -"kfB" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "kfL" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/robotics/resleeving) -"kgt" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/obj/item/pen, -/obj/item/pen, -/obj/item/pen, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "kgJ" = ( /obj/structure/cable{ icon_state = "32-4" @@ -11811,6 +8667,11 @@ }, /turf/simulated/open, /area/ai_upload) +"kgS" = ( +/obj/structure/table/steel, +/obj/item/trash/candle, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "khj" = ( /obj/machinery/newscaster{ pixel_y = 32 @@ -11835,45 +8696,6 @@ "khU" = ( /turf/simulated/floor/tiled/techfloor, /area/ai/foyer) -"khX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) -"kip" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/button/remote/blast_door{ - dir = 0; - id = "shuttle_hatch"; - name = "Shuttle Rear Hatch"; - pixel_x = 20; - pixel_y = 25 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) -"kix" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/deck_three/forward) -"kiV" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret/stationary{ - gl_uid = "exploration"; - installation = /obj/item/gun/energy/phasegun; - name = "exploration turret"; - uid = "exploration" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"kjb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) "kjn" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -11889,47 +8711,18 @@ /obj/machinery/power/apc/direction_bump/south, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/resleeving) -"kjA" = ( -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 30; - pixel_y = 32 - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/item/radio/intercom/locked/ai_private{ - dir = 4; - pixel_x = 32 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - dir = 8; - name = "Common Channel"; - pixel_x = -21 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/camera/network/command, -/turf/simulated/floor/bluegrid, -/area/ai) -"kjC" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ +"kkb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) -"kka" = ( -/obj/machinery/light/spot{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/simulated/wall/rshull, -/area/shuttle/excursion/general) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) +"kkq" = ( +/turf/simulated/floor, +/area/main_map/maintenance/deck_three/forward/port) "kkD" = ( /obj/machinery/vending/medical, /obj/effect/floor_decal/industrial/outline/blue, @@ -11941,12 +8734,6 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) -"klg" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) "klF" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -11957,9 +8744,6 @@ /obj/structure/cable, /turf/simulated/floor/reinforced/airless, /area/space) -"klV" = ( -/turf/simulated/wall, -/area/medical/ward) "kmq" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 @@ -11993,26 +8777,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/security/brig) -"kmR" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "shuttle_inbound" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"kmV" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) "kmX" = ( /obj/machinery/vending/hydroseeds, /obj/effect/floor_decal/corner/green{ @@ -12020,6 +8784,11 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) +"kmZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "knr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12050,39 +8819,18 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"knx" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/portable_atmospherics/powered/pump, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"knH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) -"koT" = ( -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cockpit) -"kpb" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/railing{ +"kow" = ( +/obj/landmark/spawnpoint/latejoin/station/cryogenics, +/obj/effect/floor_decal/techfloor{ dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"koU" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/medbay3) "kpf" = ( /obj/structure/disposaloutlet{ dir = 1 @@ -12092,19 +8840,6 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"kpk" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward) -"kpw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/space) "kpL" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -12117,25 +8852,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"kpX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"kqP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/wall/r_wall, -/area/ai) "kqT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12146,11 +8862,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tcommsat/entrance) -"ksh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/bluegrid, -/area/ai) "ksn" = ( /obj/structure/cryofeed, /obj/effect/floor_decal/corner_techfloor_grid{ @@ -12161,20 +8872,11 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/sleep/cryo) -"kst" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, +"ksH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward) -"ksO" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) +/area/main_map/maintenance/deck_three/aft/port) "ksZ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -12186,29 +8888,24 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/ai_upload) -"ktf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"ktu" = ( +/obj/structure/lattice, +/obj/structure/railing{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/port) +"kui" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" }, /turf/simulated/floor/tiled, -/area/medical/psych_ward) -"ktF" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"kug" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) +/area/hydroponics/garden) "kuo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -12233,15 +8930,6 @@ }, /turf/simulated/floor/tiled, /area/medical/resleeving) -"kwB" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) "kwH" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -12251,62 +8939,36 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"kxv" = ( -/obj/structure/dogbed, -/obj/structure/barricade/cutout/fukken_xeno{ - fake_name = "Buddy" - }, -/turf/simulated/floor/airless, -/area/space) "kxI" = ( /turf/simulated/floor/tiled/dark, /area/vacant/vacant_shop) -"kxZ" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/red, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) "kyh" = ( /obj/machinery/cryopod/robot, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/sleep/cryo) -"kyL" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/entrance) -"kzi" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +"kzk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) +"kzs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/general) +/area/main_map/maintenance/deck_three/starboard) "kzu" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"kzD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) +"kAq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward) "kAs" = ( /obj/structure/table/standard, /obj/item/wheelchair, @@ -12327,16 +8989,12 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) -"kAw" = ( -/obj/machinery/doorbell_chime, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) -"kBj" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +"kBs" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "kBz" = ( /obj/effect/floor_decal/techfloor{ dir = 8 @@ -12381,27 +9039,6 @@ /obj/structure/table/steel_reinforced, /turf/simulated/floor/carpet/bcarpet, /area/space) -"kCj" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "expshuttle_docker_pump_out_external" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) "kCv" = ( /turf/simulated/floor/tiled, /area/rnd/xenobiology) @@ -12435,24 +9072,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/exploration/pilot_office) -"kDY" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"kEd" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Chamber"; - req_access = list(16); - req_one_access = list() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/bluegrid, -/area/ai_upload) "kEk" = ( /obj/structure/cable{ icon_state = "32-1" @@ -12461,74 +9080,23 @@ /obj/structure/lattice, /turf/simulated/open, /area/space) -"kEo" = ( -/obj/item/tape_recorder{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet, -/area/security/detectives_office) "kEq" = ( /obj/structure/bookcase/manuals/engineering, /turf/simulated/floor/wood, /area/security/brig) -"kEt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "mechbay-inner"; - name = "Mech Bay"; - pixel_x = 26; - pixel_y = -26; - req_access = list(29,47); - req_one_access = list(47) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"kEW" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "xenobiocoldroom" - }, -/obj/machinery/atmospherics/component/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - on = 1 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/xenobiology) -"kFe" = ( -/obj/machinery/ai_slipper, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/bluegrid, -/area/ai) +"kEO" = ( +/obj/structure/ladder, +/obj/structure/mopbucket, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft) "kFk" = ( /obj/structure/table/woodentable, /turf/simulated/floor/carpet/sblucarpet, /area/medical/psych/psych_1) -"kFA" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +"kFm" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "kFP" = ( /obj/machinery/computer/general_air_control/large_tank_control{ frequency = 1445; @@ -12545,23 +9113,17 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/reinforced, /area/rnd/test_area) -"kGB" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/item/storage/box/glasses, -/obj/item/duct_tape_roll, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"kHE" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/shuttle/excursion/general) +"kGz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_three/starboard) +"kGK" = ( +/obj/spawner/window/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/security/prison) "kIE" = ( /obj/machinery/cryopod{ dir = 4 @@ -12569,16 +9131,13 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/sleep/cryo) -"kIO" = ( -/turf/simulated/wall/r_wall, -/area/rnd/anomaly_lab) -"kJb" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 +"kJa" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/psych_ward) +/turf/simulated/open, +/area/main_map/maintenance/deck_three/port) "kJc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -12589,57 +9148,23 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"kJS" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"kJu" = ( +/obj/structure/railing{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cockpit) -"kKw" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/phoronreinforced/full, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"kKK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "xenobio5"; - name = "Containment Blast Doors"; - pixel_x = 24; - pixel_y = 24; - req_access = list(55) - }, -/obj/effect/floor_decal/borderfloor{ +/obj/structure/railing{ dir = 1 }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "kKV" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) +"kLO" = ( +/obj/structure/sign/department/telecoms, +/turf/simulated/wall/r_wall/prepainted/command, +/area/tcommsat/entrance) "kMe" = ( /obj/structure/window/reinforced{ dir = 1 @@ -12651,6 +9176,31 @@ }, /turf/simulated/floor/tiled, /area/medical/morgue) +"kMi" = ( +/obj/structure/stairs/spawner/west, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) +"kMl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) +"kMD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "kMG" = ( /obj/machinery/door/airlock/glass_external, /turf/simulated/floor/plating, @@ -12662,12 +9212,6 @@ }, /turf/simulated/floor/plating, /area/hydroponics/garden) -"kMS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) "kNz" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -12677,49 +9221,31 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) -"kOn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "kOp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/security/brig) -"kPp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) -"kPG" = ( -/obj/machinery/computer/general_air_control/large_tank_control{ - frequency = 1445; - input_tag = "burn_in"; - name = "Burn Chamber Air Control"; - output_tag = "burn_out"; - pressure_setting = 0; - sensors = list("burn_sensor"="Burn Chamber") +"kOC" = ( +/obj/machinery/door/airlock/glass{ + name = "Psyche Lobby Room" }, -/obj/machinery/button/ignition{ - id = "burn_chamber"; - pixel_y = 36 - }, -/obj/machinery/button/remote/blast_door{ - id = "burn_chamber_v"; - name = "Burn Chamber Vent"; - pixel_x = 4; - pixel_y = 28; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) +/turf/simulated/floor/tiled/white, +/area/medical/psych) "kPN" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/tiled, /area/rnd/xenobiology) +"kPW" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ + start_pressure = 8500 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) "kQk" = ( /turf/simulated/wall/r_wall, /area/rnd/storage) @@ -12729,6 +9255,10 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) +"kQF" = ( +/obj/structure/sign/warning/compressed_gas, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/storage) "kRY" = ( /obj/machinery/gravity_generator/main/station, /turf/simulated/floor/tiled/techfloor/grid, @@ -12737,38 +9267,9 @@ /obj/structure/stairs/spawner/south, /turf/simulated/floor/reinforced/airless, /area/space) -"kSy" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"kSS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"kTy" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/medical/psych_ward) -"kTC" = ( -/obj/machinery/button/remote/blast_door{ - id = "cd-blast"; - name = "Facility Director Lockdown" - }, -/turf/simulated/wall/r_wall, -/area/crew_quarters/captain) +"kSY" = ( +/turf/simulated/floor/plating, +/area/main_map/Hangar_bay/deck2) "kTT" = ( /obj/effect/floor_decal/corner/green{ dir = 9 @@ -12778,15 +9279,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"kUs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/wall/r_wall, -/area/ai) "kUF" = ( /obj/machinery/atmospherics/valve, /turf/simulated/floor/tiled, @@ -12797,18 +9289,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"kUO" = ( -/obj/machinery/camera/network/outside{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/space) -"kUT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) "kVd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 5 @@ -12824,33 +9304,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"kVu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"kVk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) +"kVm" = ( +/obj/structure/bed/chair/sofa/black/right{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/sink{ - pixel_y = 19 - }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/wood, /area/medical/psych_ward) -"kWe" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) -"kWk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_three) -"kWp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +"kWj" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/tether/exploration/pathfinder_office) "kWL" = ( /obj/structure/fitness/punchingbag, /turf/simulated/floor/tiled/monotile, @@ -12864,54 +9332,16 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"kXY" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - id_tag = "PsycheFoyer"; - name = "Psychiatric Processing"; - req_access = list(); - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"kZb" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) "kZe" = ( /obj/structure/flora/tree/jungle, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"kZj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"kZn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"kZi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "kZo" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -12930,33 +9360,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"kZA" = ( -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) "kZD" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"laa" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"lar" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/research_foyer_auxiliary) "lau" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -12988,26 +9397,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"lci" = ( -/obj/structure/table/standard, -/obj/machinery/computer/atmoscontrol/laptop{ - monitored_alarm_ids = list("xenopenvent"); - req_one_access = list(47,24,11) - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"lcm" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/space) "lcE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -13017,20 +9406,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"lcK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"lcV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) "ldh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -13040,37 +9415,48 @@ }, /turf/simulated/floor/bluegrid, /area/ai_upload) -"ldn" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Resleeving Room"; - req_one_access = list(29,47) - }, +"ldj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"ldF" = ( +/turf/simulated/floor/glass/reinforced, +/area/main_map/hallway/deck3) +"ldR" = ( +/obj/structure/bed/chair/sofa/black{ dir = 4 }, +/turf/simulated/floor/wood, +/area/medical/psych_ward) +"lej" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/space) +"lek" = ( +/turf/simulated/floor/wood, +/area/library) +"leq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"ldL" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) +"leC" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) -"lek" = ( -/turf/simulated/floor/wood, -/area/library) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "leJ" = ( /obj/item/reagent_containers/glass/bucket/wood, /turf/simulated/floor/outdoors/grass/heavy/interior, @@ -13084,11 +9470,19 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/medical/virologyaccess) -"lgE" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/techfloor, -/area/tether/exploration/pilot_office) +"lfp" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/port) +"lfA" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "lgI" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 6 @@ -13101,26 +9495,16 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"lhB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "lhH" = ( /obj/machinery/porta_turret/ai_defense, /turf/simulated/floor/bluegrid, /area/ai) -"lhK" = ( -/obj/structure/girder, +"lhN" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 8 + }, /turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) +/area/main_map/maintenance/deck_three) "lhX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -13130,15 +9514,9 @@ }, /turf/simulated/floor/tiled/techmaint, /area/space) -"lhZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"lih" = ( -/obj/structure/sign/deck/third, -/turf/simulated/wall, -/area/rnd/robotics/surgeryroom1) +"liG" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/medbay_primary_storage) "liP" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 @@ -13149,67 +9527,37 @@ /obj/machinery/disposal, /turf/simulated/floor/tiled/techfloor, /area/tether/exploration/pilot_office) -"liX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) -"lkb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced{ +"liQ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ dir = 1 }, -/obj/structure/window/phoronreinforced/full, /turf/simulated/floor/plating, -/area/medical/psych_ward) -"lkf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) -"lkw" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/exploration/pilot_office) -"llr" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/port_gen/pacman/mrs{ - anchored = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, +/area/main_map/maintenance/deck_three/starboard) +"ljK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 10 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) +"lkj" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 }, -/obj/machinery/atmospherics/component/binary/pump/fuel{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) -"lly" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) +/area/crew_quarters/sleep/cryo) +"llw" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward) "llD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -13223,15 +9571,6 @@ /obj/structure/closet/crate/miningcar, /turf/simulated/floor/tiled/techmaint, /area/space) -"llO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cockpit) "llP" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -13257,42 +9596,18 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"lmm" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"lnf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) +"lot" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/medical{ - id_tag = "mentaldoor2"; - name = "Mental Health"; - req_access = list(64) - }, -/turf/simulated/floor/wood, -/area/space) -"lmp" = ( -/obj/machinery/atmospherics/component/unary/heat_exchanger{ - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"lmP" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/table/bench/wooden, -/obj/item/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = 3 - }, -/turf/simulated/floor/wood, -/area/tether/exploration/pilot_office) -"lnF" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/port) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) "low" = ( /obj/effect/floor_decal/corner/green/full, /obj/structure/cable/green{ @@ -13303,23 +9618,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"loE" = ( -/obj/machinery/mineral/equipment_vendor/survey, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/general) -"loO" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "lpZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13334,43 +9632,32 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"lqw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "lqy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled/steel_ridged, /area/hydroponics/garden) -"lqF" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/port) +"lqJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "lrm" = ( /obj/machinery/cryopod, /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/sleep/cryo) -"lrs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"lrG" = ( -/obj/structure/table/marble, -/obj/item/hand_labeler, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/dark, -/area/space) +"lrD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "lrM" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -13379,21 +9666,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel, /area/security/brig) -"lrN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) "lrZ" = ( /obj/machinery/light/no_nightshift{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) +"lsd" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/cups, +/turf/simulated/floor/wood, +/area/medical/psych_ward) "lso" = ( /obj/structure/bed/chair/pew/right{ dir = 4 @@ -13403,48 +9686,20 @@ "lsy" = ( /turf/simulated/wall/r_wall, /area/security/prison) -"lsD" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"lsN" = ( -/obj/machinery/door/airlock{ - name = "Chapel Morgue"; - req_access = list(27) - }, +"lsO" = ( +/obj/spawner/window/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/port) +/area/main_map/maintenance/deck_three/starboard) "lti" = ( /obj/random/trash, /turf/simulated/floor/plating, /area/security/brig) -"ltX" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/vending/loadout, -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/space) +"ltA" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "luo" = ( /turf/simulated/floor/plating, /area/crew_quarters/sleep/cryo) @@ -13462,32 +9717,6 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"lvk" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/camera/network/command{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"lvH" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) "lwa" = ( /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) @@ -13500,16 +9729,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"lxn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) -"lxD" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/medical/psych_ward) "lya" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 @@ -13525,15 +9744,20 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"lyG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 10 - }, -/turf/simulated/wall/r_wall, -/area/rnd/rdoffice) +"lyz" = ( +/obj/structure/sign/deck/third, +/turf/simulated/wall, +/area/main_map/hallway/deck3) "lyN" = ( /turf/simulated/wall, /area/space) +"lyV" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/caution{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "lzd" = ( /obj/machinery/telecomms/bus/preset_one, /obj/machinery/light/small{ @@ -13555,22 +9779,26 @@ }, /turf/simulated/floor/plating, /area/ai_upload) -"lzL" = ( -/turf/simulated/wall, -/area/hydroponics) -"lzY" = ( +"lzR" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) +"lAc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"lAl" = ( -/obj/structure/stairs/spawner/north, -/turf/simulated/floor/plating, -/area/space) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) +"lAD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "lAH" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -13583,36 +9811,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"lBb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - id_tag = "PsycheFoyer"; - name = "Psychiatric Wing"; - req_access = list(); - req_one_access = list(5) - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"lBx" = ( -/obj/item/radio/beacon, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) -"lBR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_three) -"lDb" = ( +"lCE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 + dir = 4 }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) "lDq" = ( /obj/machinery/atmospherics/component/unary/freezer{ dir = 4; @@ -13633,64 +9843,29 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) -"lDy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "lDz" = ( /obj/structure/fence{ dir = 4 }, /turf/simulated/floor/tiled/steel, /area/security/brig) -"lEj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"lEK" = ( -/obj/structure/barricade, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 +"lEi" = ( +/obj/machinery/door/airlock{ + name = "Chapel Morgue"; + req_access = list(27) }, /turf/simulated/floor/plating, -/area/space) -"lEZ" = ( -/turf/simulated/wall/r_wall, -/area/medical/medbay_primary_storage) -"lGd" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Emergecy Flood Storage"; - req_access = list(); - req_one_access = list(7,29) +/area/main_map/maintenance/deck_three/forward/port) +"lEw" = ( +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) +"lFL" = ( +/obj/machinery/light/small{ + dir = 1 }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/research_foyer_auxiliary) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "lGh" = ( /obj/structure/closet/secure_closet/medical_wall/anesthetics{ pixel_x = -32; @@ -13734,6 +9909,16 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) +"lHP" = ( +/obj/machinery/door/airlock/atmos{ + name = "Medical Atmospherics Backup"; + req_access = list(24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "lHT" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -13747,14 +9932,6 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/reinforced, /area/space) -"lIo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/bluegrid, -/area/ai_upload) "lII" = ( /obj/structure/table/woodentable, /turf/simulated/floor/carpet, @@ -13771,41 +9948,24 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/wood, /area/medical/psych/psych_2) -"lKc" = ( -/obj/machinery/suit_cycler/pilot, -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/exploration/pilot_office) "lKy" = ( /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"lKH" = ( -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) "lLh" = ( /obj/structure/filingcabinet/chestdrawer{ name = "Medical Forms" }, /turf/simulated/floor/carpet/sblucarpet, /area/medical/psych/psych_2) -"lLB" = ( -/obj/structure/dispenser, -/turf/simulated/floor/tiled, -/area/rnd/test_area) +"lMp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "lMr" = ( /obj/machinery/bomb_tester, /turf/simulated/floor/tiled, @@ -13814,33 +9974,20 @@ /obj/machinery/transhuman/synthprinter, /turf/simulated/floor/tiled/dark, /area/rnd/robotics/resleeving) -"lNE" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/effect/floor_decal/industrial/warning/full, +"lMC" = ( +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) -"lNH" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "1-8" +/area/space) +"lNT" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 }, -/obj/structure/window/reinforced/polarized/full{ - id = "det_office" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) +/turf/simulated/floor/wood, +/area/security/brig) "lOf" = ( /obj/machinery/light/no_nightshift{ dir = 1 @@ -13855,18 +10002,6 @@ /obj/machinery/power/apc/critical/west_bump, /turf/simulated/floor/plating, /area/ai_upload) -"lOA" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) "lOD" = ( /turf/simulated/floor/tiled, /area/rnd/test_area) @@ -13882,125 +10017,46 @@ }, /turf/simulated/floor/reinforced/airless, /area/rnd/test_area) -"lOT" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 +"lPi" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 10 }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"lPj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 5; + pixel_y = 10 }, -/obj/machinery/door/airlock/hatch{ - name = "Cargo Compartment"; - req_one_access = list(67) +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 5; + pixel_y = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"lPI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 13; + pixel_y = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/ai/foyer) -"lPO" = ( -/turf/simulated/wall/r_wall, -/area/rnd/test_area) -"lQh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 13; + pixel_y = 4 }, /obj/machinery/air_alarm{ pixel_y = 22 }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"lQL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"lQM" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/table/wooden_reinforced, -/obj/item/storage/fancy/cigar/cohiba{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/camera/network/exploration, -/obj/machinery/button/windowtint{ - id = "pilot_office"; - pixel_y = 23 - }, /turf/simulated/floor/wood, /area/tether/exploration/pilot_office) -"lRd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +"lRl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) -"lSa" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) -"lSo" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/item/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"lSr" = ( -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/structure/closet/l3closet/scientist/double, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/area/main_map/maintenance/deck_three/aft/port) "lSA" = ( /obj/effect/mist, /obj/effect/floor_decal/spline/plain{ @@ -14008,18 +10064,16 @@ }, /turf/simulated/floor/water/pool, /area/triumph/surfacebase/sauna) +"lSC" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) "lSL" = ( /obj/structure/table/reinforced, /turf/simulated/floor/glass/reinforced, /area/crew_quarters/cafeteria) -"lSM" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/item/beach_ball, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/psych_ward) "lST" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 @@ -14035,25 +10089,32 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) -"lTe" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/med_data/laptop, -/turf/simulated/floor/wood, -/area/space) +"lTn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/medical/resleeving) "lTX" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, /area/tcommsat/entrance) -"lUf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"lUr" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) -"lUG" = ( -/turf/space, -/area/rnd/xenobiology) +/area/main_map/maintenance/deck_three/aft/starboard) "lUV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /obj/machinery/holopad, @@ -14067,15 +10128,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/cafeteria) -"lVq" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"lVC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/medical/virology) "lVE" = ( /obj/structure/bed/chair/office/dark, /obj/effect/floor_decal/borderfloor{ @@ -14086,64 +10138,39 @@ }, /turf/simulated/floor/tiled, /area/medical/virology) -"lVH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +"lWk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/hydroponics/garden) +"lWv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/space) -"lWM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/air_alarm{ + pixel_y = 22 }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "xenobio4"; - name = "Containment Blast Doors"; - pixel_x = -24; - pixel_y = 24; - req_access = list(55) - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"lWN" = ( /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) -"lWV" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"lXe" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, +/area/main_map/maintenance/deck_three/forward/starboard) +"lWO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/space) -"lXU" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/disease2/diseaseanalyser, -/obj/effect/floor_decal/borderfloor{ +/area/main_map/maintenance/deck_three/port) +"lXa" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/security/prison) "lYn" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -14159,19 +10186,6 @@ /obj/machinery/door/window/southleft, /turf/simulated/floor/tiled, /area/medical/virologyaccess) -"lYu" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -31 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "lYv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -14183,26 +10197,6 @@ /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/reinforced/airless, /area/space) -"lZs" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"lZK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) -"mav" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/landmark/spawnpoint/latejoin/station/cyborg, -/turf/simulated/floor/tiled/techfloor, -/area/space) "maA" = ( /obj/machinery/computer/rcon{ dir = 4 @@ -14216,23 +10210,6 @@ /obj/item/storage/fancy/whitecandle_box, /turf/simulated/floor/tiled/techfloor, /area/space) -"maO" = ( -/obj/machinery/door/window/brigdoor/southleft{ - dir = 4; - id = "Cell 3"; - name = "Cell 3"; - req_access = list(2) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/security/prison) "maP" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -14263,30 +10240,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"maT" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"mbd" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/random/maintenance/cargo, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"mbC" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1; - name = "Toxins Input Connector" - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/door/firedoor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "mbE" = ( /obj/machinery/door/airlock/science{ name = "Pathfinder"; @@ -14300,6 +10253,12 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/tether/exploration/pathfinder_office) +"mcu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 10 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/rdoffice) "mcT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, @@ -14315,62 +10274,49 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"mdV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/obj/machinery/door/firedoor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"mez" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"mdq" = ( +/obj/landmark{ + name = "lightsout" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 5 }, -/obj/structure/noticeboard{ - pixel_y = 32 +/turf/simulated/floor/tiled/techfloor, +/area/tether/exploration/pilot_office) +"mej" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id = "toxin_storage_vent"; + name = "Toxin Storage Vent" }, -/obj/effect/floor_decal/borderfloorwhite{ +/obj/structure/railing, +/obj/structure/railing{ dir = 1 }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"meC" = ( -/turf/simulated/wall/r_wall, -/area/medical/psych/psych_1) -"mfJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"mhs" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/reinforced/airless, /area/rnd/storage) -"mhI" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/window/eastleft, -/obj/effect/floor_decal/industrial/warning{ +"meN" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) +"mfy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"mhx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "mhM" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 @@ -14390,12 +10336,6 @@ "miU" = ( /turf/simulated/floor/tiled/monotile, /area/space) -"mjk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) "mjo" = ( /obj/effect/floor_decal/corner/green/border{ dir = 1 @@ -14421,29 +10361,39 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) +"mjZ" = ( +/turf/simulated/floor/tiled/techfloor, +/area/security/prison) "mkf" = ( /obj/effect/floor_decal/corner/green/border{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"mkA" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, +"mkn" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/security/prison) -"mmv" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 +/area/main_map/maintenance/deck_three/port) +"mkp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/steel, -/area/security/brig) -"mnd" = ( -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/maintenance/deck_three/forward/starboard) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) +"mkW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) +"mmp" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/bluegrid, +/area/ai) "mnq" = ( /obj/effect/mist, /obj/effect/floor_decal/spline/plain{ @@ -14457,20 +10407,15 @@ }, /turf/simulated/floor/carpet, /area/medical/psych) +"mnL" = ( +/turf/simulated/wall/prepainted/civilian, +/area/crew_quarters/cafeteria) "mnT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, /turf/simulated/floor/wood, /area/vacant/vacant_shop) -"moH" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/table/woodentable, -/obj/item/toy/plushie/kitten, -/turf/simulated/floor/wood, -/area/space) "moS" = ( /obj/structure/railing/grey{ dir = 1 @@ -14502,12 +10447,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tcommsat/entrance) -"mpY" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/obj/structure/sign/warning/caution, -/turf/simulated/floor/plating, -/area/rnd/test_area) "mqu" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -14532,16 +10471,22 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"mrd" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ - dir = 4 - }, +"mqY" = ( +/obj/structure/closet/crate, +/obj/item/storage/fancy/candle_box, +/obj/item/flame/lighter/random, /turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"mrh" = ( -/obj/structure/sign/department/telecoms, -/turf/simulated/wall/r_wall, -/area/tcommsat/entrance) +/area/main_map/maintenance/deck_three/aft/starboard) +"mri" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/tether/exploration/pilot_office) "mrF" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 4 @@ -14553,15 +10498,6 @@ /obj/structure/table/sifwoodentable, /turf/simulated/floor/wood, /area/medical/medbay3) -"mrJ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "mrY" = ( /obj/structure/cable{ icon_state = "1-2" @@ -14580,39 +10516,18 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) -"msG" = ( +"msQ" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"msK" = ( -/obj/machinery/scale, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"msZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 6 }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "mtd" = ( /obj/structure/stairs/spawner/east, /obj/structure/railing{ @@ -14650,58 +10565,34 @@ icon_state = "techmaint" }, /area/security/brig) +"mub" = ( +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/wood, +/area/medical/psych_ward) +"muL" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel, +/area/security/brig) "muM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) -"muQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/space) -"muT" = ( -/turf/simulated/wall, -/area/medical/medbay_primary_storage) "mvj" = ( /turf/simulated/floor/wood, /area/chapel/main) -"mvu" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"mwg" = ( -/obj/structure/loot_pile/maint/trash, -/turf/simulated/floor/plating, -/area/maintenance/research) -"mwi" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 +"mvB" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) -"mwu" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) -"mwG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/wall/rshull, -/area/shuttle/excursion/general) +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "mwV" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/structure/railing{ @@ -14726,16 +10617,6 @@ /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"mxN" = ( -/obj/machinery/computer/security/mining{ - dir = 4; - name = "psychiatric wing camera monitor"; - network = list("Psychiatric") - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "myG" = ( /turf/simulated/floor/wood, /area/space) @@ -14756,6 +10637,9 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/rnd/rdoffice) +"mzk" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/psych/psych_1) "mzm" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -14782,6 +10666,15 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) +"mAs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/exploration/pilot_office) "mAF" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 @@ -14791,51 +10684,10 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"mAI" = ( -/obj/machinery/atmospherics/component/binary/pump/high_power/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/space) -"mBB" = ( -/obj/structure/lattice, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/open, -/area/maintenance/deck_three/aft/starboard) -"mBX" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular{ - id = "mechbay-inner"; - name = "Mech Bay" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"mCk" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/item/stool/padded, -/turf/simulated/floor/carpet/bcarpet, -/area/space) +"mBU" = ( +/obj/machinery/turnstile/entry, +/turf/simulated/floor/tiled/techfloor, +/area/security/prison) "mCM" = ( /obj/structure/bed/chair/wheelchair, /obj/effect/floor_decal/industrial/outline/blue, @@ -14862,46 +10714,15 @@ }, /turf/simulated/floor/carpet/sblucarpet, /area/medical/psych/psych_1) -"mDN" = ( -/obj/machinery/message_server, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"mEs" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "sec_fore_pump" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/floor_decal/spline/fancy{ +"mEU" = ( +/obj/effect/floor_decal/corner/green/border{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"mEt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 4 +/obj/landmark{ + name = "lightsout" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) -"mFo" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/deliveryChute, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) "mFz" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/effect/floor_decal/grass_edge{ @@ -14909,33 +10730,47 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"mGU" = ( -/obj/machinery/ai_slipper, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) +"mFY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"mHp" = ( +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "mHS" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/wood, /area/chapel/main) -"mIg" = ( -/obj/machinery/camera/network/tcomms{ - dir = 9 +"mHY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/space_heater, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/entrance) +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "mIP" = ( /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/tiled/dark, /area/vacant/vacant_shop) +"mIV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/hydroponics/garden) "mIX" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -14966,6 +10801,22 @@ }, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) +"mJM" = ( +/obj/structure/table/standard, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/item/clothing/glasses/science, +/obj/item/reagent_containers/syringe, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology) "mKh" = ( /obj/machinery/shower{ dir = 8 @@ -14998,41 +10849,27 @@ icon_state = "techmaint" }, /area/security/brig) -"mKA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "mKB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/space) +"mKL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/tether/exploration/pathfinder_office) "mKU" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/library) -"mLu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay_primary_storage) "mLB" = ( /obj/machinery/light/no_nightshift{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"mLS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) "mMp" = ( /obj/structure/railing, /turf/simulated/wall/r_wall, @@ -15046,22 +10883,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"mMD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/space) -"mNe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cockpit) "mNf" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15079,14 +10900,16 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled/steel, /area/security/brig) -"mNr" = ( -/obj/machinery/holoplant, -/obj/structure/railing/grey, -/obj/structure/railing/grey{ - dir = 4 +"mNy" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/central_three) +/turf/simulated/floor/tiled/techmaint, +/area/space) +"mOb" = ( +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) "mOc" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/white, @@ -15094,28 +10917,6 @@ "mOA" = ( /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) -"mOG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay3) -"mON" = ( -/obj/machinery/holopad, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/ai) "mPe" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled, @@ -15134,67 +10935,21 @@ /obj/item/defib_kit/jumper_kit, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) -"mPX" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"mQa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/obj/machinery/computer/centrifuge, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/medical/virology) -"mQk" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "xenobiocoldroom" - }, -/turf/simulated/floor/bluegrid{ - initial_gas_mix = "n2=500;TEMP=73"; - name = "Cold Room Base" - }, -/area/rnd/xenobiology) "mQs" = ( /obj/structure/closet/secure_closet/pilot, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/techfloor, /area/tether/exploration/pilot_office) -"mRJ" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_three/aft/starboard) -"mSG" = ( -/obj/structure/closet/crate/bin{ - desc = "A large bin for medical and other personnel that deals with bio-grade waste."; - icon_closed = "biohazard"; - icon_opened = "biohazardopen"; - icon_state = "biohazard"; - name = "biohazard bin" +"mSr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "mSL" = ( /obj/structure/table/steel, /obj/fiftyspawner/steel, @@ -15203,17 +10958,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"mTi" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers, -/obj/effect/floor_decal/borderfloor{ - dir = 10 +"mSO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "mTq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -15229,61 +10979,26 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"mTw" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/pipedispenser, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"mTE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "shuttle blast"; - name = "Shuttle Blast Doors"; - pixel_x = -14; - pixel_y = -25; - req_access = list(67) - }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cockpit) "mTG" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_eva) -"mTJ" = ( +"mUe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"mUM" = ( +/obj/structure/table/steel, +/obj/item/integrated_circuit_printer, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, /obj/machinery/air_alarm{ pixel_y = 22 }, -/obj/machinery/atmospherics/component/unary/freezer{ - dir = 8; - icon_state = "freezer_1"; - set_temperature = 73; - use_power = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tcommsat/entrance) -"mUv" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) -"mUD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/obj/machinery/computer/centrifuge, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/space) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) "mUN" = ( /obj/machinery/washing_machine, /turf/simulated/floor/tiled/steel, @@ -15296,36 +11011,15 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) -"mWe" = ( -/obj/machinery/camera/network/medbay{ - dir = 5 - }, -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/turf/simulated/floor/wood, -/area/space) +"mVx" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/tether/exploration/pilot_office) "mWh" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/rnd/research) -"mWl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "mWS" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -15347,6 +11041,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) +"mXH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) "mXM" = ( /obj/structure/railing/grey{ dir = 1 @@ -15356,42 +11057,11 @@ }, /turf/simulated/open, /area/ai) -"mYg" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 8 +"mYM" = ( +/turf/simulated/wall/prepainted/civilian{ + can_open = 1 }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"mYz" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"mYX" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) -"mZD" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"naa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/space) +/area/hydroponics/garden) "nai" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/northleft{ @@ -15405,20 +11075,23 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tcommsat/entrance) +"nak" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) "naB" = ( /obj/structure/bed, /obj/item/bedsheet/ian, /turf/simulated/floor/carpet, /area/security/brig) -"naS" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) "nbl" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -15434,18 +11107,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"nbr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/camera/network/command{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) "nbs" = ( /obj/structure/flora/ausbushes/sunnybush, /obj/effect/floor_decal/grass_edge{ @@ -15457,94 +11118,71 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/carpet/bcarpet, /area/library) -"nbX" = ( +"nch" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"nck" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"ncP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) -"ndf" = ( -/obj/structure/window/reinforced{ - dir = 4 +/area/main_map/maintenance/deck_three) +"ncy" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) +"ndl" = ( +/obj/structure/sign/deck/third, +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck3) +"neC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/tether/exploration/pilot_office) -"neW" = ( /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) -"neX" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) +/area/main_map/maintenance/deck_three/aft/starboard) "nff" = ( /obj/structure/railing, /turf/simulated/floor/reinforced/airless, /area/space) -"nfm" = ( -/obj/item/radio/intercom{ +"nfG" = ( +/obj/machinery/air_alarm{ dir = 4; - pixel_x = 24 + pixel_x = -23 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = -25; + pixel_y = -24; + tag_exterior_door = "virology_airlock_exterior"; + tag_interior_door = "virology_airlock_interior" }, /turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"ngI" = ( -/obj/structure/ladder, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) -"ngX" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/closet/l3closet/scientist/double, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/area/medical/virologyaccess) "nhe" = ( /obj/structure/toilet{ dir = 4 }, /turf/simulated/floor/tiled/old_tile/white, /area/security/brig) -"nhm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) -"nhD" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ +"nhK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) "nhL" = ( /obj/machinery/door/airlock/highsecurity{ name = "AI Upload"; @@ -15613,16 +11251,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techmaint, /area/medical/medbay3) -"nkr" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 +"nku" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/structure/flora/pottedplant/orientaltree, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "nkZ" = ( /turf/simulated/open, /area/chapel/main) @@ -15630,25 +11264,6 @@ /obj/structure/ladder/up, /turf/simulated/floor/plating, /area/space) -"nlh" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) -"nlv" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) "nlA" = ( /obj/structure/table/standard, /obj/item/aiModule/reset, @@ -15663,29 +11278,19 @@ /obj/item/reagent_containers/dropper, /turf/simulated/floor/tiled, /area/medical/virology) -"nlV" = ( -/obj/structure/flora/pottedplant/smallcactus, -/turf/simulated/floor/wood, -/area/space) -"nmD" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_shop) -"nnh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"nmL" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "nnl" = ( /turf/simulated/floor/wood, /area/tether/exploration/pilot_office) +"non" = ( +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "nov" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 9 @@ -15698,47 +11303,38 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) -"npb" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "shuttle_outbound" +"npx" = ( +/obj/machinery/conveyor_switch/oneway, +/obj/map_helper/conveyor/lever{ + id_tag = "xenobio_cooler"; + name = "Cooler Belt" }, -/obj/structure/plasticflaps, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"npk" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "npC" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/tether/exploration/pilot_office) -"npE" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) -"nqQ" = ( +"nqt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) +"nrl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"nrk" = ( -/obj/machinery/vending/loadout/overwear, -/turf/simulated/floor/tiled/dark, -/area/space) +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) "nrm" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -15749,6 +11345,12 @@ }, /turf/simulated/floor/tiled, /area/medical/virologyaccess) +"nrp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/theatre) "nrr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -15774,10 +11376,33 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) +"nsj" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) +"nsI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "nsN" = ( /mob/living/simple_mob/slime/xenobio/rainbow/kendrick, /turf/simulated/floor/reinforced, /area/rnd/rdoffice) +"nsT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "ntc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -15790,60 +11415,24 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/test_area) -"ntx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +"nuz" = ( +/obj/machinery/door/airlock/maintenance/rnd{ + name = "Toxins Maintenance Access"; + req_access = list(8) }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"ntP" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 6; - frequency = 1380; - id_tag = "expshuttle_exterior_sensor"; - master_tag = "expshuttle_docker"; - pixel_x = 4; - pixel_y = 28 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) -"nuk" = ( -/obj/structure/sign/hangar/three, -/turf/simulated/wall, -/area/space) -"nuo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/camera/network/research{ - dir = 8; - network = list("Research","Toxins Test Area") - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"nuv" = ( -/turf/simulated/wall, -/area/crew_quarters/cafeteria) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/storage) +"nuW" = ( +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) "nvU" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -15854,41 +11443,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/tiled, /area/medical/virologyaccess) -"nwI" = ( -/obj/structure/closet/secure_closet/hydroponics{ - req_access = list(28) - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hydroponics) -"nxa" = ( -/obj/structure/table/marble, -/obj/machinery/cash_register/civilian{ - dir = 4; - req_access = list(25) - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"nxI" = ( -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/obj/machinery/vending/loadout/accessory, -/turf/simulated/floor/tiled/dark, -/area/space) -"nxO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/washing_machine, -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) "nxV" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -15914,6 +11468,12 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) +"nys" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "nyE" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 @@ -15923,21 +11483,25 @@ "nyX" = ( /turf/simulated/wall/r_wall, /area/ai_upload) -"nzs" = ( -/obj/landmark/spawnpoint/latejoin/station/cryogenics, -/obj/effect/floor_decal/techfloor{ +"nzw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"nzG" = ( -/obj/machinery/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) "nAl" = ( /obj/machinery/shield_diffuser, /turf/simulated/floor/reinforced/airless, /area/space) +"nAx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "nBf" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -15987,12 +11551,20 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) +"nDe" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "nDh" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/tiled/steel, /area/security/brig) +"nDj" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "nDx" = ( /obj/machinery/newscaster{ pixel_x = 30 @@ -16008,21 +11580,17 @@ }, /turf/simulated/floor/wood, /area/security/brig) -"nDF" = ( -/obj/effect/floor_decal/corner/green{ +"nDD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) +"nEb" = ( +/obj/structure/bed/chair/sofa/black{ dir = 1 }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/wood, /area/medical/psych_ward) -"nDR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) "nEg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -16044,30 +11612,28 @@ }, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) -"nEF" = ( -/obj/structure/stairs/spawner/west, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) "nFd" = ( /obj/structure/fitness/weightlifter, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/monotile, /area/security/brig) +"nFg" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) +"nFh" = ( +/obj/machinery/button/doorbell, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "nGw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel_grid, /area/rnd/storage) -"nGE" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/psych_ward) "nGI" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/effect/floor_decal/grass_edge{ @@ -16075,20 +11641,6 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"nHd" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"nHi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) "nHu" = ( /obj/structure/sink/kitchen{ name = "sink"; @@ -16104,12 +11656,22 @@ "nIe" = ( /turf/simulated/floor/plating, /area/maintenance/library) -"nIh" = ( -/obj/structure/table/rack, -/obj/random/maintenance/security, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/maintenance/security/starboard) +"nIR" = ( +/obj/machinery/door/airlock/medical{ + name = "Medical Storage"; + req_access = list(6) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) "nJh" = ( /obj/machinery/door/airlock/maintenance{ name = "Kitchen Maintenance Access"; @@ -16130,114 +11692,66 @@ "nJC" = ( /turf/simulated/floor/tiled/techfloor, /area/ai_upload) -"nJQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"nJZ" = ( -/obj/structure/table/standard, -/obj/item/defib_kit/jumper_kit, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +"nKb" = ( +/obj/structure/ladder, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft) "nKt" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) +"nKT" = ( +/obj/structure/bed/chair/sofa/black/left{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/medical/psych_ward) "nLn" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_monitoring) +"nLs" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_three/port) +"nLI" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) "nMi" = ( /obj/machinery/photocopier, /turf/simulated/floor/wood, /area/tether/exploration/pathfinder_office) -"nMx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"nMw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) +"nMQ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, -/obj/machinery/newscaster{ - pixel_x = -30; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"nNA" = ( -/obj/structure/bed/chair/shuttle, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/general) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "nNK" = ( /obj/machinery/camera/network/command{ dir = 9 }, /turf/simulated/open, /area/ai) -"nOk" = ( -/obj/machinery/vending/loadout/loadout_misc, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/space) "nPn" = ( /obj/structure/closet/secure_closet/hydroponics{ req_access = list(28) }, /turf/simulated/floor/tiled, /area/hydroponics) -"nPo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"nPw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/tether/exploration/pilot_office) -"nPA" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/storage/fancy/vials, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5 - }, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/space) "nPQ" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 @@ -16271,9 +11785,9 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/medical/resleeving) -"nQz" = ( -/turf/simulated/wall, -/area/medical/virologyaccess) +"nQj" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/space) "nQI" = ( /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/greengrid/airless, @@ -16282,39 +11796,15 @@ /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled/steel_ridged, /area/tether/exploration/pilot_office) -"nRc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +"nRV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) -"nRt" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) -"nRw" = ( -/obj/structure/mirror{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) +"nSZ" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_three) "nTh" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 @@ -16324,26 +11814,19 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"nTv" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/retro/on, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"nTH" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "nTK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/medical/psych/psych_2) +"nTS" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "nUt" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -16383,54 +11866,23 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) +"nUC" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "nVk" = ( /obj/structure/table/marble, /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/dark, /area/vacant/vacant_shop) -"nVK" = ( -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_y = -30 - }, -/obj/machinery/processor, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "nVL" = ( /obj/item/stool/padded, /turf/simulated/floor/wood, /area/security/brig) -"nVV" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "nVX" = ( /obj/effect/floor_decal/grass_edge, /turf/simulated/floor/outdoors/dirt, /area/hydroponics/garden) -"nWn" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/medical/psych_ward) -"nXf" = ( -/obj/machinery/light/spot{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/wall/rshull, -/area/shuttle/excursion/general) "nXr" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 @@ -16444,58 +11896,6 @@ /obj/machinery/camera/network/security, /turf/simulated/floor/tiled/steel, /area/security/brig) -"nXO" = ( -/obj/machinery/door/airlock/medical{ - name = "Medical Storage"; - req_access = list(6) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay_primary_storage) -"nXV" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/item/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/space) -"nXX" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/table/wooden_reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 13; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 13; - pixel_y = 4 - }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/tether/exploration/pilot_office) "nYm" = ( /obj/structure/stairs/spawner/south, /obj/structure/railing{ @@ -16512,39 +11912,19 @@ }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"nYA" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/vending/loadout/clothing, -/turf/simulated/floor/tiled/dark, -/area/space) -"nZd" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/closet/l3closet/scientist/double, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"nZj" = ( -/obj/structure/fuel_port{ - dir = 4; - pixel_x = 29 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) "nZw" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) +"nZL" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/medical/psych_ward) "oac" = ( /mob/living/simple_mob/animal/passive/fish/koi/poisonous, /obj/structure/railing{ @@ -16558,13 +11938,6 @@ }, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) -"oaf" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "oag" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 @@ -16582,14 +11955,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) -"oaX" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) "obA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -16608,13 +11973,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/storage) -"odm" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "odQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -16624,39 +11982,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"odR" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/air_alarm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"oed" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"oew" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +"odS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/bcarpet, +/area/space) "oeC" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, /area/security/brig) -"ofa" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) "oft" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -16669,21 +12002,9 @@ "ofE" = ( /turf/simulated/floor/carpet, /area/medical/psych_ward) -"ofG" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"ofT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) +"ogm" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "ogo" = ( /obj/structure/table/standard, /obj/item/cartridge/signal/science, @@ -16731,18 +12052,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"ohD" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "ohL" = ( /obj/structure/cable/green{ icon_state = "16-0" @@ -16787,12 +12096,14 @@ }, /turf/simulated/floor/tiled/white, /area/engineering/gravity_gen) -"ohZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"ohX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/holopad, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/storage) "oia" = ( /obj/item/stool/padded, /obj/machinery/newscaster{ @@ -16800,19 +12111,18 @@ }, /turf/simulated/floor/wood, /area/security/brig) -"oij" = ( +"oiL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"oiB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "ojM" = ( /obj/machinery/turretid/stun{ control_area = "\improper AI Upload Chamber"; @@ -16821,58 +12131,27 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai/foyer) -"okl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +"ojV" = ( +/turf/simulated/floor/reinforced/airless, +/area/main_map/maintenance/deck_three/aft) +"ojZ" = ( +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/triumph/surfacebase/sauna) +/obj/machinery/power/apc/direction_bump/east, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "olv" = ( /obj/machinery/holopad, /turf/simulated/floor/tiled, /area/medical/morgue) -"olC" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"olF" = ( +"olX" = ( +/obj/structure/stairs/spawner/south, /obj/structure/railing{ dir = 4 }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/deck_three/starboard) -"olR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) -"olY" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) -"omf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) +/area/main_map/Hangar_bay/deck2) "omL" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16893,6 +12172,16 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) +"onb" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/port) "onr" = ( /obj/structure/railing{ dir = 1 @@ -16902,10 +12191,6 @@ }, /turf/simulated/open, /area/rnd/research) -"ook" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/space) "oom" = ( /obj/structure/table/fancyblack, /turf/simulated/floor/wood, @@ -16920,22 +12205,21 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) -"ooN" = ( -/turf/simulated/wall, -/area/rnd/rdoffice) +"ooC" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "ooV" = ( /turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) -"ooZ" = ( -/obj/machinery/door/airlock/atmos{ - name = "Medical Atmospherics Backup"; - req_access = list(24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/space) "opJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -16957,15 +12241,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology) -"oqp" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +"opN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"opU" = ( +/turf/simulated/wall/prepainted/civilian, +/area/main_map/hallway/deck3) "oqO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -16988,16 +12270,6 @@ /obj/structure/railing, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"ory" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) "orT" = ( /obj/machinery/door/window/westleft, /obj/machinery/shower{ @@ -17030,6 +12302,24 @@ /obj/machinery/atmospherics/pipe/zpipe/up/aux, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) +"otq" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) +"otE" = ( +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) "otG" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -17040,34 +12330,6 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"oue" = ( -/obj/machinery/atmospherics/component/unary/heat_exchanger{ - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"ouk" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) -"oul" = ( -/obj/effect/floor_decal/corner/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "ous" = ( /obj/structure/cable/green{ icon_state = "32-8" @@ -17095,52 +12357,34 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) -"ovf" = ( -/turf/simulated/wall, -/area/crew_quarters/pool) -"ovr" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) "ovA" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) -"owf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/test_area) +"owc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "owv" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"owx" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ +"oxh" = ( +/obj/machinery/light/small{ dir = 1 }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "oxC" = ( /obj/structure/cable/heavyduty{ icon_state = "0-8" @@ -17150,9 +12394,32 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"oyC" = ( -/turf/simulated/wall, -/area/library) +"oyb" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) +"oyz" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/storage/belt/medical, +/obj/item/soap/nanotrasen, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) "oyE" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -17162,15 +12429,26 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"oyJ" = ( +"oyH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/door/airlock/glass{ + name = "Garden" }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) +"ozy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "ozR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -17205,37 +12483,14 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/test_area) -"oAu" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -5; - pixel_y = 10 +"oAR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 13; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 13; - pixel_y = 4 - }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/tether/exploration/pilot_office) +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) "oAS" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -17244,6 +12499,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/rnd/test_area) +"oAY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) "oBk" = ( /obj/machinery/disease2/incubator, /obj/effect/floor_decal/borderfloor{ @@ -17254,15 +12514,19 @@ }, /turf/simulated/floor/tiled, /area/medical/virology) -"oBH" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/general) "oBJ" = ( /obj/machinery/ai_slipper, /turf/simulated/floor/bluegrid, /area/ai) +"oCb" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_three/aft/starboard) +"oCe" = ( +/obj/machinery/air_alarm{ + pixel_y = 30 + }, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/rnd/research) "oCr" = ( /obj/machinery/requests_console{ department = "AI"; @@ -17293,6 +12557,21 @@ /obj/landmark/spawnpoint/job/ai, /turf/simulated/floor/tiled/techfloor, /area/ai) +"oCE" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) +"oCJ" = ( +/obj/structure/lattice, +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/port) +"oDa" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "oDj" = ( /obj/machinery/door/airlock/medical{ id_tag = "mentaldoor2"; @@ -17311,30 +12590,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/wood, /area/medical/psych/psych_2) -"oDD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "oEl" = ( /obj/structure/bed/chair/sofa/black/left{ dir = 8 }, /turf/simulated/floor/wood, /area/library) -"oEU" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "xenobiocoldroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/camera/network/research{ - dir = 4; - network = list("Xenobiology") - }, -/turf/simulated/floor/bluegrid, -/area/rnd/xenobiology) "oFJ" = ( /obj/effect/floor_decal/techfloor{ dir = 4 @@ -17344,45 +12605,42 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"oGI" = ( -/obj/item/trash/candle, +"oGv" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/psych_ward) +"oHc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/space) +"oIE" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) +"oIF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) -"oGJ" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/deck_three/starboard) -"oGK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/research_foyer_auxiliary) -"oIy" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/area/main_map/maintenance/deck_three/aft) +"oIR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/theatre) -"oIK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/medical/medbay_primary_storage) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "oJb" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -17390,39 +12648,16 @@ /obj/machinery/holoplant, /turf/simulated/floor/wood, /area/chapel/main) -"oJd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) -"oJf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"oJi" = ( -/obj/structure/table/standard, -/obj/item/mmi, -/obj/item/mmi/digital/posibrain, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "oJq" = ( /obj/structure/table/wooden_reinforced, /turf/simulated/floor/carpet/bcarpet, /area/chapel/main) -"oKf" = ( -/obj/structure/table/steel, -/obj/random/cigarettes, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) +"oJF" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "oKs" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -17441,31 +12676,38 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"oNr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"oKU" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) +"oLB" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward) "oNB" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/medical/medbay_primary_storage) -"oOq" = ( -/obj/machinery/holopad, -/obj/effect/floor_decal/borderfloorwhite/corner{ +"oNC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/space) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "oOs" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 @@ -17480,7 +12722,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/space) -"oQA" = ( +"oPw" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, @@ -17490,67 +12732,40 @@ }, /turf/simulated/floor/tiled/old_cargo/white, /area/security/brig) -"oQT" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/space) -"oRl" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/retro/on, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) -"oSd" = ( -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"oSf" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"oQa" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light{ dir = 1 }, -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 +/turf/simulated/floor/water/deep/indoors, +/area/hydroponics/garden) +"oQn" = ( +/turf/simulated/wall/prepainted/civilian, +/area/hydroponics) +"oSv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/security/brig) -"oSJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"oSL" = ( +/obj/machinery/power/apc/direction_bump/north, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-4" }, -/obj/structure/cable/green{ - icon_state = "2-8" +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) +"oSU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"oTe" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/structure/sink{ - pixel_y = 19 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/carpet/bcarpet, +/area/space) "oTn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -17562,30 +12777,34 @@ /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled/white, /area/medical/psych) -"oTA" = ( -/turf/simulated/floor/tiled, -/area/space) -"oTH" = ( -/obj/item/reagent_containers/food/snacks/monkeycube/wrapped, -/obj/structure/table/standard, -/obj/item/storage/box/monkeycubes{ - starts_with = list(/obj/item/reagent_containers/food/snacks/monkeycube/wrapped=10) +"oTr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/item/storage/box/monkeycubes{ - starts_with = list(/obj/item/reagent_containers/food/snacks/monkeycube/wrapped=10) - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"oTZ" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 4 +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) +"oUk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) +"oUm" = ( +/obj/machinery/door/airlock/glass{ + name = "Psychiatric Wing"; + req_one_access = list(5) + }, +/turf/simulated/floor/wood, +/area/medical/psych_ward) "oUB" = ( /obj/structure/table/wooden_reinforced, /turf/simulated/floor/wood, @@ -17611,36 +12830,18 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"oVG" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 +"oVB" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 8 }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/ai/foyer) -"oWa" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/camera/network/security{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"oWj" = ( -/obj/structure/toilet{ - dir = 1 +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) +"oWg" = ( +/obj/landmark{ + name = "lightsout" }, /turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"oWq" = ( -/obj/structure/closet/secure_closet/brig, -/turf/simulated/floor/tiled/techmaint, -/area/security/prison) -"oWD" = ( -/obj/machinery/door/blast/regular{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/space) +/area/medical/medbay3) "oWF" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/reinforced, @@ -17658,63 +12859,26 @@ /obj/machinery/power/apc/critical/west_bump, /turf/simulated/floor/tiled/dark, /area/tcommsat/entrance) -"oYp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "2-8" +"oYW" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/medical/psych_ward) +"oYX" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/air_alarm{ + pixel_y = 30 }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"oYE" = ( -/obj/machinery/disease2/incubator, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled, -/area/space) -"oYP" = ( -/obj/random/maintenance/research, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/research) -"oZE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/starboard) -"oZS" = ( -/obj/landmark/spawnpoint/latejoin/station/cryogenics, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) "paf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"par" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/vending/loadout/uniform, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"paZ" = ( -/obj/structure/ladder, -/obj/structure/bookcase, -/turf/simulated/floor/plating, -/area/space) "pcf" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -17736,22 +12900,33 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/exploration/pilot_office) -"pcQ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 +"pdl" = ( +/obj/spawner/window/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/plating, /area/space) -"pdz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +"pdt" = ( +/obj/structure/cable/green{ + icon_state = "0-8" }, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/port) +"pdv" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "ped" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -17788,31 +12963,6 @@ }, /turf/simulated/floor/wood, /area/tether/exploration/pilot_office) -"peB" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/storage/fancy/vials, -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) -"peG" = ( -/obj/machinery/disease2/isolator, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/space) "pfh" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/welding, @@ -17830,14 +12980,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/exploration/pilot_office) -"pfp" = ( -/mob/living/simple_mob/animal/passive/snake/noodle, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/tether/exploration/pilot_office) "pfF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/black, /turf/simulated/floor/tiled/techmaint, @@ -17862,6 +13004,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) +"pfX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "pgd" = ( /obj/structure/window/reinforced{ dir = 4 @@ -17899,17 +13048,10 @@ /obj/structure/window/phoronreinforced, /turf/simulated/floor/reinforced/airless, /area/rnd/test_area) -"phg" = ( -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) -"phA" = ( +"piv" = ( +/obj/structure/closet/firecloset, /turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) -"phD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) +/area/main_map/maintenance/deck_three/port) "piB" = ( /obj/machinery/camera/network/research{ dir = 1 @@ -17978,6 +13120,19 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) +"pld" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) +"ple" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/direction_bump/east, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "plD" = ( /obj/machinery/door/firedoor{ dir = 1 @@ -17989,24 +13144,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel, /area/security/brig) -"plO" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"pmg" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"pmY" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "det_office" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) +"pml" = ( +/turf/simulated/wall/prepainted/medical, +/area/main_map/maintenance/deck_three/forward/starboard) "pnf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18018,18 +13158,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"pns" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "pnv" = ( /obj/machinery/transhuman/resleever, /obj/effect/floor_decal/industrial/outline/blue, @@ -18038,22 +13166,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/resleeving) -"pnz" = ( -/obj/structure/ladder, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) -"pod" = ( -/obj/structure/table/reinforced, -/obj/item/toy/eight_ball/conch, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 - }, -/obj/random/toy, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "poi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -18100,19 +13212,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology) +"ppk" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/quartermaster/warehouse) "ppm" = ( /turf/simulated/floor/plating, /area/medical/psych) -"ppx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) "ppL" = ( /obj/machinery/computer/aiupload, /turf/simulated/floor/tiled/techfloor, @@ -18123,14 +13228,21 @@ }, /turf/simulated/floor/wood, /area/medical/psych/psych_1) +"pqb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "pqp" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/security/brig) -"pqP" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) "pqS" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -18145,12 +13257,6 @@ /obj/effect/floor_decal/grass_edge, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"prR" = ( -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) "prU" = ( /obj/effect/mist, /obj/effect/floor_decal/spline/plain{ @@ -18158,19 +13264,17 @@ }, /turf/simulated/floor/water/pool, /area/triumph/surfacebase/sauna) -"prX" = ( -/obj/structure/sign/warning/caution, -/turf/simulated/wall/r_wall, -/area/rnd/test_area) +"prW" = ( +/obj/structure/safe/floor, +/obj/random/cash, +/obj/random/alcohol, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "psf" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"psg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) "psk" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled, @@ -18183,59 +13287,12 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"psD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/door/airlock/atmos{ - name = "Science Atmospherics Backup"; - req_access = list(24) - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"psY" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) -"ptl" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/camera/network/medbay{ - dir = 1; - network = list("Psychiatric") - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +"psP" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_three/port) "ptx" = ( /turf/simulated/floor/wood, /area/security/brig) -"ptN" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/white, -/area/space) -"puq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) "pur" = ( /obj/effect/mist, /obj/effect/floor_decal/spline/plain{ @@ -18243,37 +13300,20 @@ }, /turf/simulated/floor/water/pool, /area/triumph/surfacebase/sauna) -"puw" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cargo) -"puM" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/effect/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/space) -"puN" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, +"puJ" = ( /obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 + dir = 4; + pixel_x = -22 }, -/turf/simulated/floor/reinforced, -/area/rnd/rdoffice) +/turf/simulated/floor/carpet, +/area/medical/psych_ward) +"puL" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) "puQ" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -18283,20 +13323,27 @@ }, /turf/simulated/floor/outdoors/dirt, /area/hydroponics/garden) -"pvE" = ( +"pvF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"pvZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/reinforced, +/area/space) +"pwi" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 8 + }, /turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"pwm" = ( -/obj/random/trash_pile, +/area/main_map/maintenance/deck_three/aft/starboard) +"pwr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/plating, -/area/maintenance/security/starboard) +/area/main_map/maintenance/deck_three/port) "pwv" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -18310,40 +13357,10 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) -"pwU" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Toxins Maintenance Access"; - req_access = list(8) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/storage) "pxE" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/tether/exploration/pilot_office) -"pxL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) -"pxM" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized{ - dir = 10; - icon_state = "fwindow"; - id = "psyche2" - }, -/turf/simulated/floor/plating, -/area/space) "pzv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -18353,6 +13370,15 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) +"pzY" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "pzZ" = ( /obj/landmark{ name = "morphspawn" @@ -18393,11 +13419,31 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"pCv" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, +"pBj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/tiled/techmaint, -/area/hallway/primary/central_three) +/area/main_map/maintenance/deck_three/aft/starboard) +"pBu" = ( +/obj/machinery/door/airlock/glass{ + name = "Psyche Lobby Room"; + req_one_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"pCb" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) "pDe" = ( /obj/effect/floor_decal/techfloor{ dir = 4 @@ -18405,11 +13451,12 @@ /obj/structure/reagent_dispensers/water_cooler/full, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"pDM" = ( -/obj/structure/cable/green, -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/security/prison) +"pDI" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "pDZ" = ( /obj/structure/closet, /turf/simulated/floor/wood, @@ -18427,23 +13474,34 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/medical/psych/psych_2) +"pFL" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "pFP" = ( /obj/structure/railing/grey{ dir = 8 }, /turf/simulated/open, /area/ai) -"pFX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/hydroponics/garden) "pGa" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood, /area/triumph/surfacebase/sauna) +"pGl" = ( +/obj/structure/flora/pottedplant/orientaltree, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_three/forward/port) "pGM" = ( /obj/machinery/door/airlock/security{ name = "Observation"; @@ -18459,19 +13517,6 @@ }, /turf/simulated/floor/plating, /area/rnd/storage) -"pHc" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "xenobiocoldroom" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/bluegrid{ - initial_gas_mix = "n2=500;TEMP=73"; - name = "Cold Room Base" - }, -/area/rnd/xenobiology) "pHd" = ( /obj/item/reagent_containers/food/snacks/monkeycube/wrapped, /obj/structure/table/standard, @@ -18512,14 +13557,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, /area/medical/virologyaccess) -"pIx" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/rack/shelf, -/turf/simulated/floor/tiled/dark, -/area/space) "pID" = ( /obj/structure/stairs/spawner/west, /obj/structure/railing, @@ -18531,13 +13568,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"pIS" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/security/starboard) "pIY" = ( /turf/simulated/wall, /area/hydroponics/garden) @@ -18545,6 +13575,16 @@ /obj/structure/table/bench/padded, /turf/simulated/floor/glass/reinforced, /area/crew_quarters/cafeteria) +"pJc" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) "pJd" = ( /obj/structure/table/steel, /obj/item/storage/box/lights/mixed, @@ -18557,11 +13597,6 @@ }, /turf/simulated/floor/tiled, /area/space) -"pJm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "pJr" = ( /obj/machinery/camera/network/cargo{ dir = 1 @@ -18575,24 +13610,6 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/test_area) -"pKa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/space) -"pKL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "pLE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18608,15 +13625,9 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"pMd" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/space) +"pLU" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/storage) "pMm" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/robotics/surgeryroom1) @@ -18626,13 +13637,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology) -"pMw" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) "pMy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18649,12 +13653,24 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/medical/psych_ward) +"pNq" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/space) "pND" = ( /obj/machinery/atmospherics/pipe/simple/visible/aux{ dir = 10 }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) +"pOa" = ( +/obj/structure/sign/deck/third{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "pOc" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled, @@ -18669,56 +13685,25 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tcommsat/entrance) -"pOR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"pPh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) "pPp" = ( /obj/structure/morgue, /turf/simulated/floor/tiled/techfloor, /area/rnd/robotics/surgeryroom1) -"pQD" = ( -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"pRP" = ( -/turf/simulated/wall, -/area/medical/morgue) -"pSM" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +"pQd" = ( +/obj/structure/railing{ + dir = 8 }, +/turf/simulated/floor/plating, +/area/main_map/Hangar_bay/deck2) +"pSP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 9 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/medical/virology) "pTh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -18729,6 +13714,26 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) +"pTQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"pUQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/door/airlock/atmos{ + name = "Science Atmospherics Backup"; + req_access = list(24) + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "pVf" = ( /turf/simulated/floor/tiled/techmaint, /area/space) @@ -18744,13 +13749,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/sleep/cryo) -"pVC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) "pWD" = ( /obj/structure/railing, /obj/structure/railing{ @@ -18767,6 +13765,9 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) +"pWX" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/medbay3) "pXA" = ( /obj/machinery/camera/network/research{ dir = 4; @@ -18776,17 +13777,6 @@ /obj/item/bedsheet/blue, /turf/simulated/floor/wood, /area/rnd/xenobiology) -"pYt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"pZS" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) "qaa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18805,60 +13795,24 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) -"qba" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"qbh" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_monitoring) -"qbL" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"qbS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) +"qaD" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_three/starboard) "qcI" = ( /obj/structure/bed/chair/sofa/black/right{ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, /area/space) -"qcU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +"qdx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/starboard) -"qcZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "qdX" = ( /obj/structure/cable{ icon_state = "0-2" @@ -18873,54 +13827,44 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"qeM" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"qfJ" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 +"qeU" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) +"qfX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "qgr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/wood, /area/library) -"qhr" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "qhv" = ( /obj/machinery/telecomms/broadcaster/preset_right, /turf/simulated/floor/tiled/dark{ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"qhF" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"qiZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"qhN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/machinery/button/remote/blast_door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_y = -28; - req_access = list(55) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) +/turf/simulated/wall/r_wall/prepainted/command, +/area/ai) "qjd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -18930,11 +13874,12 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"qjp" = ( -/obj/effect/floor_decal/spline/plain, -/obj/item/toy/plushie/red_fox, -/turf/simulated/floor/grass, -/area/medical/psych_ward) +"qjY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) "qkh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -18944,10 +13889,6 @@ }, /turf/simulated/floor/reinforced, /area/rnd/rdoffice) -"qkp" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/lino, -/area/security/detectives_office) "qkG" = ( /obj/structure/sink/puddle, /obj/effect/floor_decal/grass_edge{ @@ -18955,13 +13896,6 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"qkO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/tether/exploration/pilot_office) "qkW" = ( /obj/structure/stairs/spawner/west, /obj/structure/railing, @@ -18970,6 +13904,16 @@ }, /turf/simulated/floor/tiled/techmaint, /area/space) +"qkX" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward) "qle" = ( /obj/machinery/atmospherics/component/unary/outlet_injector{ frequency = 1445; @@ -18986,37 +13930,12 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research) -"qlz" = ( -/obj/item/roller_holder, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) "qlA" = ( /obj/machinery/cryopod{ dir = 4 }, /turf/simulated/floor/carpet, /area/medical/psych_ward) -"qlI" = ( -/obj/machinery/air_alarm/monitor/isolation{ - alarm_id = "isolation_one"; - dir = 8; - pixel_x = 22 - }, -/obj/structure/table/standard, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/ears/earmuffs, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) "qmb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19035,30 +13954,21 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) -"qmL" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Vacant lobby" +"qmG" = ( +/turf/simulated/wall/r_wall, +/area/main_map/Hangar_bay/deck2) +"qnP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"qnW" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 +/obj/machinery/air_alarm{ + pixel_y = 22 }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular{ - pixel_y = 10 - }, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration/pilot_office) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "qoc" = ( /obj/structure/table/standard, /obj/item/gun/energy/taser/xeno, @@ -19069,19 +13979,33 @@ /obj/item/melee/baton/slime/loaded, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) +"qou" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"qoK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "qoR" = ( /obj/structure/railing, /turf/simulated/open, /area/rnd/research) -"qpb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, +"qoZ" = ( +/obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/maintenance/deck_three/port) +/area/maintenance/library) "qpd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -19091,9 +14015,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/library) -"qpy" = ( -/turf/simulated/floor/tiled/white, -/area/medical/resleeving) "qpI" = ( /obj/structure/flora/pottedplant/tropical, /turf/simulated/floor/wood, @@ -19101,11 +14022,6 @@ "qpM" = ( /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"qpR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) "qpV" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -19130,19 +14046,31 @@ }, /turf/simulated/floor/water/pool, /area/triumph/surfacebase/sauna) -"qqS" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"qqU" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/reinforced, +/area/space) +"qqX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) +"qrf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/wood, -/area/space) -"qrb" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "qrM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -19155,17 +14083,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"qsD" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) -"qsM" = ( -/obj/spawner/window/reinforced/full/firelocks, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 +"qsC" = ( +/obj/structure/sign/deck3{ + pixel_y = -32 }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_three) +/turf/simulated/wall, +/area/main_map/maintenance/deck_three/starboard) "qth" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -19195,6 +14118,29 @@ /obj/structure/railing/grey, /turf/simulated/open, /area/ai) +"qtG" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/cable/green{ + icon_state = "32-2" + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/starboard) "quj" = ( /obj/landmark/spawnpoint/job/roboticist, /turf/simulated/floor/tiled/steel_grid, @@ -19212,12 +14158,6 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"quD" = ( -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) "quW" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -19235,72 +14175,42 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"qwx" = ( +"qvM" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) +"qvU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"qxo" = ( +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"qxH" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"qxp" = ( -/obj/structure/cable/green{ - icon_state = "4-9" + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) -"qxx" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"qye" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/main_map/maintenance/deck_three/forward/starboard) +"qyn" = ( +/obj/spawner/window/reinforced/full/firelocks, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "psyche-b-inner"; - name = "Ward A Back Area Access"; - pixel_x = -26; - pixel_y = 24; - req_one_access = list(5) - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "psyche-b-outer"; - name = "Ward B Lockdown"; - pixel_x = -26; - pixel_y = 32; - req_one_access = list(5) - }, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck3) +"qyq" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "qzO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19312,16 +14222,15 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"qAb" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - req_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ +"qzS" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/port) +"qAl" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) "qAp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -19350,41 +14259,22 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) +"qAL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) "qAV" = ( /obj/effect/floor_decal/grass_edge, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"qBp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 2; - name = "Psychiatric Ward"; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "qBW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) -"qCe" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/space) "qCY" = ( /obj/machinery/ai_slipper, /obj/machinery/turretid/stun{ @@ -19410,13 +14300,6 @@ /obj/machinery/holopad, /turf/simulated/floor/tiled/dark, /area/ai) -"qDd" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "qDn" = ( /obj/machinery/button/remote/blast_door{ dir = 4; @@ -19427,9 +14310,6 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"qDw" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_three/forward/port) "qDD" = ( /obj/effect/floor_decal/grass_edge{ dir = 1 @@ -19442,43 +14322,19 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/crew_quarters/cafeteria) -"qEl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"qEo" = ( -/obj/machinery/power/smes/buildable{ - charge = 5e+006; - input_attempt = 1; - input_level = 200000; - output_level = 200000 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"qET" = ( +"qFr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 + dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_three) -"qEY" = ( -/obj/structure/bookcase, -/obj/structure/ladder, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled/techmaint, +/area/space) +"qFt" = ( +/obj/structure/marker_beacon/red, +/turf/simulated/floor/reinforced/airless, /area/space) -"qFS" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/hallway/primary/central_three) "qFU" = ( /obj/effect/floor_decal/industrial/danger/corner, /turf/simulated/floor/reinforced, @@ -19490,39 +14346,6 @@ }, /turf/simulated/floor/wood, /area/rnd/xenobiology) -"qGw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cockpit) -"qGG" = ( -/obj/machinery/atmospherics/component/unary/heater{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"qGI" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"qHg" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/obj/structure/plushie/ian{ - dir = 8; - pixel_y = 6 - }, -/turf/simulated/floor/wood, -/area/space) "qHk" = ( /obj/effect/floor_decal/borderfloorblack, /obj/structure/table/standard, @@ -19533,6 +14356,27 @@ /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/techfloor, /area/tether/exploration/pilot_office) +"qHJ" = ( +/obj/machinery/atmospherics/component/binary/pump/on{ + dir = 8 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) +"qHS" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) +"qHW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/test_area) "qHZ" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 @@ -19543,24 +14387,27 @@ /obj/machinery/seed_storage/garden, /turf/simulated/floor/tiled, /area/hydroponics) +"qIt" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/space) "qIQ" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"qJu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, +"qJe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"qJx" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - AI Subgrid"; - name_tag = "AI Subgrid" +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/bluegrid, -/area/ai) +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) "qKh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -19579,21 +14426,9 @@ }, /turf/simulated/floor/wood, /area/medical/psych/psych_1) -"qLC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) "qLK" = ( /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"qMa" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "qMu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -19604,62 +14439,12 @@ /obj/machinery/holopad, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"qMT" = ( -/obj/structure/table/rack, -/obj/random/maintenance/security, -/turf/simulated/floor/plating, -/area/maintenance/security/starboard) -"qNp" = ( -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/security/starboard) -"qNL" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"qNi" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/item/bedsheet/medical, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = -32 - }, -/obj/structure/bed/padded, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"qNQ" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "xenobiocoldroom" - }, -/turf/simulated/floor/bluegrid, -/area/rnd/xenobiology) -"qNX" = ( -/obj/machinery/computer/diseasesplicer{ - dir = 1 - }, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = -32 - }, -/obj/effect/floor_decal/borderfloor, -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled, -/area/space) -"qOw" = ( -/obj/structure/stairs/spawner/west, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "qOJ" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/machinery/light/no_nightshift{ @@ -19667,24 +14452,12 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/storage) -"qPu" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 +"qPj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/general) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "qPx" = ( /mob/living/simple_mob/animal/sif/fluffy/silky, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -19695,31 +14468,19 @@ }, /turf/simulated/floor/wood, /area/tether/exploration/pathfinder_office) -"qQg" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 +"qPy" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "qQA" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 6 }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"qQE" = ( -/obj/landmark/spawnpoint/latejoin/station/cryogenics, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "qQL" = ( /obj/structure/railing{ dir = 8 @@ -19729,15 +14490,28 @@ }, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) -"qRO" = ( +"qQZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 5 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) +"qRx" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/space) +"qRF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Vacant Shop" + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) "qSF" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/plating, @@ -19752,49 +14526,10 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"qSU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "psyche-doc-access"; - name = "Access Switch"; - pixel_x = -26; - pixel_y = 24; - req_one_access = list(5) - }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "qTn" = ( /obj/structure/railing, /turf/simulated/open, /area/space) -"qTu" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall/rshull, -/area/shuttle/excursion/cargo) -"qTy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) -"qTG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) "qTT" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 6 @@ -19825,13 +14560,23 @@ }, /turf/simulated/open, /area/space) -"qUP" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/structure/cable/green{ - icon_state = "0-4" +"qUN" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward) +"qVh" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) +"qWY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "qWZ" = ( /obj/machinery/button/remote/blast_door{ id = "xenobio6"; @@ -19845,49 +14590,16 @@ /obj/structure/stairs/spawner/south, /turf/simulated/floor/plating, /area/security/brig) -"qYm" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/machinery/vending/loadout/costume, -/turf/simulated/floor/tiled/dark, -/area/space) -"qYZ" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -28; - req_access = list() - }, -/obj/structure/bed/chair/comfy/brown{ +"qYE" = ( +/obj/machinery/light/small{ dir = 4 }, -/turf/simulated/floor/wood, -/area/space) -"qZO" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) +/area/main_map/maintenance/deck_three/aft/starboard) "qZR" = ( /obj/structure/bed/chair/sofa/black/corner, /turf/simulated/floor/carpet/bcarpet, /area/space) -"raa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/highsecurity{ - name = "High-Risk Containment Ward"; - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "rah" = ( /obj/structure/lattice, /turf/space, @@ -19902,6 +14614,16 @@ }, /turf/simulated/floor/plating, /area/rnd/storage) +"raD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) "raT" = ( /obj/machinery/door/airlock/maintenance/rnd, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19928,13 +14650,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"rbb" = ( -/turf/simulated/wall/r_wall, -/area/security/detectives_office) -"rbk" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cockpit) "rbn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -19944,63 +14659,42 @@ }, /turf/simulated/floor/tiled/steel, /area/security/brig) -"rce" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bookcase, -/obj/item/book/manual/barman_recipes, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/standard_operating_procedure, -/obj/item/book/manual/the_humanized_mice, -/obj/item/book/manual/security_space_law, -/obj/item/book/manual/materials_chemistry_analysis, -/obj/item/book/manual/engineering_guide, -/obj/effect/floor_decal/corner/beige{ - dir = 9 +"rbv" = ( +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_three/starboard) +"rbU" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"rcB" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "xenobiocoldroom" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/xenobiology) -"rcV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 }, +/obj/structure/flora/pottedplant/minitree, /turf/simulated/floor/tiled, -/area/medical/psych_ward) -"rdT" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/neutral, -/area/shuttle/excursion/general) +/area/main_map/maintenance/deck_three/forward/port) "ref" = ( /obj/structure/morgue/crematorium, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) -"rfu" = ( -/obj/structure/bookcase, -/obj/item/book/bundle/custom_library/nonfiction, -/obj/item/book/bundle/custom_library/nonfiction, -/turf/simulated/floor/wood, -/area/medical/psych_ward) +"reW" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/morgue) "rfI" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/grass, /area/medical/psych_ward) +"rgf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "rgg" = ( /obj/machinery/door/airlock/multi_tile/glass/polarized{ id_tint = "library_foyer"; @@ -20009,6 +14703,16 @@ /obj/machinery/door/firedoor/multi_tile, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/theatre) +"rgz" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/atmospheric_substation/medical) "rhg" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -20016,6 +14720,12 @@ icon_state = "techmaint" }, /area/security/brig) +"rhh" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "rhu" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics"; @@ -20024,42 +14734,14 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/hydroponics) -"rhF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/space) "rhG" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/carpet, /area/medical/psych_ward) -"rhX" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cargo) -"rij" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) -"riy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hydroponics/garden) -"riH" = ( -/turf/simulated/wall/r_wall, -/area/ai/foyer) +"rjm" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/port) "rkl" = ( /obj/structure/fence/door, /obj/machinery/door/firedoor{ @@ -20067,43 +14749,40 @@ }, /turf/simulated/floor/tiled/steel, /area/security/brig) -"rky" = ( -/obj/structure/bed/chair/office/light{ +"rkx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"rkz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) +"rkJ" = ( +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ +/turf/simulated/floor/wood, +/area/space) +"rlc" = ( +/obj/machinery/camera/network/security{ dir = 1 }, -/obj/machinery/door/window/westleft{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1; - pixel_y = -15 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) +/turf/simulated/floor/tiled/techmaint, +/area/security/prison) "rlk" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/old_tile/white, /area/security/brig) +"rmc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/cafeteria) "rmk" = ( /obj/machinery/door/airlock/research{ id_tag = "researchdoor"; @@ -20126,73 +14805,43 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/xenobiology) +"rmB" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/psych/psych_1) "rnc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"rnn" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/hand_labeler, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"rnZ" = ( -/obj/structure/cable/green{ - icon_state = "0-8" +"roG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/bluegrid, -/area/space) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "roI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"roM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "roX" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"roZ" = ( -/obj/structure/cable/green, -/obj/structure/table/standard, -/obj/item/wheelchair, -/obj/item/storage/box/bodybags{ - pixel_x = -1; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/storage/box/masks{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "rpv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/tiled/dark{ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"rpE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) +"rpG" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward) "rpR" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 @@ -20200,6 +14849,14 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) +"rqa" = ( +/obj/structure/bookcase, +/obj/item/book/bundle/custom_library/religious, +/obj/item/book/bundle/custom_library/religious, +/obj/item/book/bundle/custom_library/fiction, +/obj/item/book/bundle/custom_library/fiction, +/turf/simulated/floor/wood, +/area/medical/psych_ward) "rqb" = ( /obj/machinery/door/airlock/glass/research{ name = "Robotics Lab"; @@ -20211,28 +14868,13 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) -"rqo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/research_foyer_auxiliary) "rre" = ( /turf/simulated/wall/r_wall, /area/security/brig) -"rrJ" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "xenobiocoldroom"; - name = "XenoBio Cold Room" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +"rri" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "rrN" = ( /obj/machinery/telecomms/server/presets/security, /turf/simulated/floor/tiled/dark{ @@ -20247,6 +14889,25 @@ /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/tiled/white, /area/medical/medbay3) +"rsH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/port) +"rsM" = ( +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_three/forward) +"rtg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "rtp" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -20267,32 +14928,23 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/theatre) -"rtF" = ( -/turf/simulated/floor/reinforced, -/area/tether/exploration) "rva" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/rnd/xenobiology) -"rvk" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "rvn" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 10 }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) -"rvq" = ( -/turf/simulated/wall/r_wall, -/area/medical/virologyaccess) +"rvG" = ( +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) +"rvP" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) "rwP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -20308,23 +14960,10 @@ }, /turf/simulated/floor/reinforced/airless, /area/rnd/test_area) -"ryl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "mechbay-inner"; - name = "Mech Bay"; - pixel_x = -26; - pixel_y = -26; - req_access = list(29,47); - req_one_access = list(47) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +"ryJ" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/port) "ryR" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 8 @@ -20340,6 +14979,13 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) +"ryS" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "rzh" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 @@ -20351,30 +14997,6 @@ /obj/item/bedsheet/medical, /turf/simulated/floor/carpet, /area/medical/psych_ward) -"rzN" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"rzO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay_primary_storage) -"rAj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/space) "rAs" = ( /obj/structure/table/woodentable, /obj/item/flashlight/lamp, @@ -20391,13 +15013,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology) -"rBr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/storage) "rBv" = ( /obj/spawner/window/reinforced/full/firelocks, /obj/structure/curtain/black{ @@ -20410,75 +15025,25 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass, /area/medical/psych_ward) -"rCG" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"rDN" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/general) -"rEH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"rCO" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"rEI" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized{ - dir = 10; - icon_state = "fwindow"; - id = "psyche" +/obj/machinery/light/small{ + dir = 8 }, /turf/simulated/floor/plating, -/area/space) -"rEM" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom1) -"rFo" = ( +/area/main_map/maintenance/deck_three/aft/port) +"rDM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_three) +/area/medical/medbay_primary_storage) "rFt" = ( /obj/machinery/atmospherics/pipe/simple/insulated, /turf/simulated/floor/reinforced/airless, @@ -20492,142 +15057,41 @@ "rFz" = ( /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/sleep/cryo) -"rFB" = ( -/obj/structure/coatrack, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/machinery/button/remote/airlock{ - id = "Dressroom"; - name = "Dressroom lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"rFM" = ( -/obj/structure/sign/deck/third, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_three) -"rFZ" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/structure/curtain/open/shower{ - anchored = 1 - }, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/security/brig) -"rGk" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"rGn" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/space) "rGu" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/reinforced/airless, /area/space) -"rHz" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 3 +"rGT" = ( +/obj/machinery/air_alarm/monitor/isolation{ + alarm_id = "isolation_two"; + dir = 8; + pixel_x = 22 }, -/obj/effect/floor_decal/asteroid, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4; - pixel_x = -2 - }, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/tether/exploration/pilot_office) -"rHH" = ( -/obj/structure/table/woodentable, -/obj/item/pen{ - pixel_y = 4 - }, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/simulated/floor/wood, -/area/space) -"rHI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/structure/table/standard, +/obj/machinery/light/no_nightshift{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/ears/earmuffs, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"rIo" = ( +/obj/structure/closet/secure_closet/genpop, +/obj/structure/window/reinforced, /turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) -"rHX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/area/security/prison) +"rJg" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance{ - id_tag = "Dressroom"; - name = "Dressing Room" - }, -/turf/simulated/floor/wood, -/area/space) -"rIc" = ( -/obj/landmark/spawnpoint/job/detective, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"rIQ" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"rJq" = ( -/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/starboard) +/area/main_map/maintenance/deck_three) +"rJt" = ( +/obj/structure/sign/deck3, +/turf/simulated/wall, +/area/main_map/maintenance/deck_three) "rJz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -20651,39 +15115,12 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"rJM" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/medical/psych_ward) -"rJR" = ( -/obj/structure/sign/department/xenolab, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology) "rJV" = ( /obj/structure/railing{ dir = 8 }, /turf/space, /area/space) -"rKj" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"rKl" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_monitoring) -"rKo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) "rKq" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/green{ @@ -20692,27 +15129,18 @@ /obj/machinery/camera/network/security, /turf/simulated/floor/tiled/dark, /area/security/brig) -"rKv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three) -"rLz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"rMb" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" +"rKz" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 }, /turf/simulated/floor/tiled/monotile, -/area/security/prison) +/area/main_map/hallway/deck3) +"rKL" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "rMn" = ( /obj/machinery/door/airlock/maintenance/cargo, /turf/simulated/floor/reinforced, @@ -20724,22 +15152,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"rNn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bookcase, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/book/manual/engineering_particle_accelerator, -/obj/item/book/manual/detective, -/obj/item/book/manual/chef_recipes, -/obj/item/book/manual/anomaly_testing, -/obj/item/book/manual/anomaly_spectroscopy, -/obj/item/book/manual/atmospipes, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +"rMK" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/reinforced, +/area/space) "rNw" = ( /turf/simulated/floor/airless, /area/space) @@ -20749,6 +15165,22 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) +"rNJ" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"rNM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "rNP" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -20768,26 +15200,16 @@ }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"rOW" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 +"rPh" = ( +/obj/machinery/light/fairy{ + dir = 1 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "rPk" = ( /obj/structure/railing, /turf/space, /area/space) -"rPm" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "rPn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -20800,16 +15222,9 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/prison) -"rQd" = ( -/obj/structure/cable/green, -/obj/structure/table/woodentable, -/obj/structure/plushie/ian{ - dir = 8; - pixel_y = 6 - }, -/obj/item/toy/plushie/kitten, -/turf/simulated/floor/wood, -/area/space) +"rPG" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_three/forward) "rQH" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/outdoors/grass/heavy/interior, @@ -20850,16 +15265,32 @@ }, /turf/simulated/floor/airless/ceiling, /area/engineering/engine_eva) -"rSV" = ( -/obj/structure/barricade, +"rSB" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, /turf/simulated/floor/plating, -/area/space) +/area/main_map/maintenance/deck_three) "rTc" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, /turf/simulated/floor/carpet/sblucarpet, /area/medical/psych/psych_1) +"rTd" = ( +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_three) "rTH" = ( /obj/machinery/door/airlock{ name = "Bathroom" @@ -20867,64 +15298,22 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/medical/psych_ward) -"rTJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "rUm" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"rUo" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 8; - id_tag = "PsycheFoyer"; - name = "Psychiatric Wing"; - req_access = list(); - req_one_access = list(5) +"rUQ" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/wood, -/area/medical/psych_ward) -"rUC" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"rUL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"rUV" = ( -/obj/structure/sign/warning/nosmoking_1, -/turf/simulated/wall, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) "rVt" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, @@ -20939,34 +15328,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"rWZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"rYG" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/research) -"rYP" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) -"rZK" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"sba" = ( -/obj/landmark/spawnpoint/latejoin/station/cryogenics, -/obj/effect/floor_decal/techfloor{ - dir = 10 +"rXJ" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) +"sax" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/sleep/cryo) @@ -20982,21 +15350,10 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/tether/exploration/pilot_office) -"sbL" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/research, -/obj/random/maintenance/security, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) -"scB" = ( -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/pickaxe, -/obj/item/pickaxe{ - pixel_y = -5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) +"scp" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) "scE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21004,41 +15361,12 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) -"scK" = ( -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/space) -"scS" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"scZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "sdz" = ( /obj/machinery/door/airlock/maintenance/cargo, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/quartermaster/warehouse) -"sdG" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "sdT" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -21050,41 +15378,29 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) +"seB" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) "seV" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "rnd_can_store" }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"seZ" = ( -/obj/machinery/door/window/brigdoor/southleft{ - dir = 4; - id = "Cell 1"; - name = "Cell 1"; - req_access = list(2) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/security/prison) "sfg" = ( /obj/machinery/atmospherics/component/unary/freezer, /turf/simulated/floor/tiled, /area/rnd/test_area) -"sgC" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = -32; - req_access = null - }, -/turf/simulated/floor/plating, -/area/maintenance/research) "sgQ" = ( /obj/structure/railing, /turf/simulated/floor/reinforced/airless, @@ -21099,18 +15415,6 @@ "sho" = ( /turf/simulated/floor/tiled/steel_ridged, /area/tether/exploration/pathfinder_office) -"shM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "sij" = ( /obj/structure/table/rack/shelf/steel, /obj/item/radio/off, @@ -21119,6 +15423,12 @@ /obj/item/radio/off, /turf/simulated/floor/tiled/dark, /area/tcommsat/entrance) +"siE" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "siI" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -21156,6 +15466,16 @@ "skn" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) +"skW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "skX" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/reinforced, @@ -21166,6 +15486,12 @@ }, /turf/simulated/floor/bluegrid, /area/ai) +"slE" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "smb" = ( /obj/structure/window/reinforced{ dir = 1 @@ -21182,11 +15508,6 @@ }, /turf/simulated/floor/tiled, /area/medical/morgue) -"smn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) "smq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21199,9 +15520,6 @@ }, /turf/simulated/floor/wood, /area/medical/psych/psych_1) -"sms" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/maintenance/deck_three/forward/starboard) "smy" = ( /obj/structure/table/woodentable, /obj/item/folder/yellow{ @@ -21224,22 +15542,6 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/wood, /area/tether/exploration/pathfinder_office) -"smW" = ( -/obj/structure/table/standard, -/obj/item/folder/blue{ - pixel_x = 5 - }, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/item/clothing/glasses/science, -/obj/item/reagent_containers/syringe, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "snm" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -21254,50 +15556,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"snt" = ( -/turf/simulated/floor/tiled, -/area/medical/psych_ward) -"snW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hydroponics/garden) -"snX" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -28; - req_access = list() - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/red, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"soa" = ( -/obj/item/paper_bin, -/obj/item/clothing/glasses/sunglasses, -/obj/item/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/structure/table/woodentable, -/obj/item/handcuffs, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"soh" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid, -/area/space) "soj" = ( /obj/structure/railing{ dir = 4 @@ -21315,13 +15573,31 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/robotics/surgeryroom1) -"soB" = ( +"sow" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/port) -"spb" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) +/area/main_map/maintenance/deck_three/aft/starboard) +"spz" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-6" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) "spY" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -21347,19 +15623,16 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor, /area/security/brig) -"squ" = ( -/obj/random/maintenance/cargo, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"sqy" = ( +"sqJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "srs" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -21370,20 +15643,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"srG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"srO" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/captaindouble, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/captain) "stf" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, @@ -21391,23 +15650,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, /area/maintenance/library) -"stH" = ( -/obj/effect/floor_decal/asteroid, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/tether/exploration/pilot_office) "stI" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/bluegrid, /area/ai_upload) -"stP" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) "sut" = ( /obj/structure/bed/chair/sofa/black/left{ dir = 4 @@ -21428,19 +15676,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel, /area/security/brig) -"suJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) -"suS" = ( -/obj/machinery/computer/timeclock/premade/west, -/turf/simulated/floor/wood, -/area/space) "suZ" = ( /obj/machinery/atmospherics/pipe/vent/high_volume{ dir = 1 @@ -21448,43 +15683,6 @@ /obj/machinery/shield_diffuser, /turf/simulated/floor/reinforced/airless, /area/space) -"svm" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"svz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "psyche-doc-access"; - name = "Access Switch"; - pixel_x = -26; - pixel_y = 24; - req_one_access = list(5) - }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "svC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -21494,105 +15692,40 @@ /obj/machinery/power/apc/direction_bump/west, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"svK" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled/neutral, -/area/shuttle/excursion/general) -"svR" = ( +"svM" = ( +/obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) +/area/main_map/hallway/deck3) "swu" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, /area/security/brig) -"swY" = ( -/obj/machinery/button/windowtint{ - id = "det_office"; - pixel_x = -23 +"swR" = ( +/turf/simulated/wall/prepainted/science, +/area/rnd/robotics/resleeving) +"sxt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"sxs" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/medical/psych) +"syU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"sxJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Bridge Compartment"; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cockpit) -"sxX" = ( -/obj/structure/table/reinforced, -/obj/random/toy, -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"sxZ" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"syM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 8 }, -/turf/simulated/floor/bluegrid, -/area/ai) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/plating, +/area/space) "syV" = ( /turf/simulated/floor/wood, /area/vacant/vacant_shop) -"syW" = ( -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_three) -"szr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/resleeving) -"szv" = ( -/obj/structure/flora/pottedplant/tropical, -/turf/simulated/floor/wood, -/area/space) -"sAj" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"sAE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology) -"sAF" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "sBc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -21602,29 +15735,6 @@ }, /turf/simulated/floor/wood, /area/tether/exploration/pathfinder_office) -"sBB" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"sBC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay_primary_storage) -"sBL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/space) "sCe" = ( /obj/item/radio/intercom{ pixel_y = -24 @@ -21635,35 +15745,26 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"sCr" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "sCK" = ( /obj/machinery/washing_machine, /turf/simulated/floor/tiled/white, /area/medical/psych_ward) -"sCL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"sDv" = ( +/obj/machinery/holoplant, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/space) -"sDA" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"sEz" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/hallway/deck3) +"sEC" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/resleeving) +"sEO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "sEQ" = ( /obj/structure/table/rack/shelf/steel, /obj/item/roller, @@ -21678,75 +15779,33 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) -"sFi" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) "sFn" = ( /obj/machinery/light/no_nightshift{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/ai/foyer) -"sFF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"sFU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) -"sFG" = ( +/area/main_map/maintenance/deck_three) +"sGF" = ( +/obj/machinery/light/fairy{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) +"sHF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/techfloor, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"sFH" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward) -"sFJ" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 + dir = 6 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_three) -"sGb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"sHn" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "psyche-b-inner"; - name = "Ward B"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/psych_ward) +/area/main_map/hallway/deck3) "sHT" = ( /obj/machinery/shower{ dir = 4 @@ -21774,11 +15833,6 @@ icon_state = "techmaint" }, /area/security/brig) -"sIs" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/space) "sIC" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "rnd_can_store" @@ -21807,40 +15861,15 @@ name = "Mainframe Base" }, /area/tcommsat/chamber) -"sJa" = ( -/turf/simulated/wall/r_wall, -/area/hydroponics/garden) -"sJp" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/closet/secure_closet/pilot, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration/pilot_office) "sJr" = ( /obj/machinery/telecomms/server/presets/medical, /turf/simulated/floor/tiled/dark{ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"sJQ" = ( -/obj/structure/stairs/spawner/east, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) +"sJu" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/crew_quarters/theatre) "sKi" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -21854,6 +15883,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) +"sKl" = ( +/obj/machinery/door/airlock/glass{ + name = "Cryogenic Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/sleep/cryo) "sKp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -21877,11 +15914,6 @@ /obj/structure/table/rack, /turf/simulated/floor/wood, /area/vacant/vacant_shop) -"sKV" = ( -/obj/structure/ladder, -/obj/structure/frame, -/turf/simulated/floor/plating, -/area/space) "sLd" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 @@ -21891,12 +15923,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"sLg" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/turf/simulated/wall/r_wall, -/area/rnd/test_area) "sLj" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ywflowers, @@ -21922,22 +15948,6 @@ /obj/structure/railing, /turf/simulated/floor/plating, /area/hydroponics/garden) -"sNP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"sOC" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/shuttle/excursion/general) -"sOZ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "sPf" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/structure/railing, @@ -21946,6 +15956,15 @@ }, /turf/simulated/floor/plating, /area/rnd/storage) +"sPi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) "sPv" = ( /obj/structure/table/standard, /obj/item/storage/box/gloves{ @@ -21965,24 +15984,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"sPE" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/general) "sPO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 5 @@ -22007,17 +16008,18 @@ }, /turf/simulated/floor/tiled, /area/rnd/workshop) -"sQq" = ( +"sQp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/security/prison) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "sQs" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -22036,20 +16038,25 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"sRn" = ( -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/borderfloor{ - dir = 10 +"sQF" = ( +/obj/structure/disposaloutlet{ + dir = 4 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/research_foyer_auxiliary) -"sRu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/space) +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "xenobio_cooler"; + name = "Cooler Belt" + }, +/turf/simulated/floor/bluegrid{ + initial_gas_mix = "n2=500;TEMP=73"; + name = "Cold Room Base" + }, +/area/rnd/xenobiology) "sRA" = ( /obj/machinery/light/flamp, /obj/effect/floor_decal/grass_edge{ @@ -22057,23 +16064,6 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"sRM" = ( -/turf/simulated/floor/plating, -/area/maintenance/research) -"sRY" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/bedsheet/medical, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = -32 - }, -/obj/structure/bed/padded, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "sSb" = ( /obj/structure/table/woodentable, /obj/machinery/computer/med_data/laptop, @@ -22100,11 +16090,6 @@ /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"sSl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/cafeteria) "sSR" = ( /obj/effect/floor_decal/corner/green{ dir = 9 @@ -22151,27 +16136,21 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/steel, /area/security/brig) -"sUg" = ( -/turf/simulated/wall/r_wall, -/area/rnd/rdoffice) -"sVg" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 +"sUn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = -25; - pixel_y = -24; - tag_exterior_door = "virology_airlock_exterior"; - tag_interior_door = "virology_airlock_interior" +/obj/structure/cable/green{ + icon_state = "2-4" }, -/turf/simulated/floor/tiled, -/area/medical/virologyaccess) +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) "sVh" = ( /obj/structure/sink{ pixel_y = 30 @@ -22181,12 +16160,6 @@ }, /turf/simulated/floor/tiled/old_tile/white, /area/security/brig) -"sVr" = ( -/obj/item/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "sVs" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -22196,15 +16169,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) -"sVt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"sVJ" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 + }, +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "sVT" = ( /turf/simulated/wall/r_wall, /area/space) @@ -22220,20 +16196,11 @@ }, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) -"sXg" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular{ - pixel_y = 10 - }, -/obj/item/storage/toolbox/mechanical, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/exploration/pilot_office) +"sWu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/port) "sXp" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 8 @@ -22256,14 +16223,6 @@ }, /turf/simulated/floor/plating, /area/ai_upload) -"sYu" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/polarized/full{ - id = "pilot_office" - }, -/turf/simulated/floor/plating, -/area/tether/exploration/pilot_office) "sYD" = ( /obj/structure/stairs/spawner/north, /turf/simulated/floor/tiled/white, @@ -22282,25 +16241,12 @@ /obj/machinery/vending/phoronresearch, /turf/simulated/floor/tiled, /area/rnd/test_area) -"tat" = ( -/obj/machinery/disease2/isolator, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/medical/virology) -"taR" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ - dir = 4 - }, -/obj/machinery/light/small{ +"taY" = ( +/obj/structure/railing{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/Hangar_bay/deck2) "tbw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22310,90 +16256,68 @@ /obj/machinery/door/airlock/maintenance, /turf/simulated/floor/plating, /area/space) -"tcG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +"tbO" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) +"tcl" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) +"tcx" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) "tcK" = ( /obj/machinery/telecomms/server/presets/supply, /turf/simulated/floor/tiled/dark{ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"tcZ" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Garden" - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/hydroponics/garden) -"tdi" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) "tdl" = ( /obj/item/storage/fancy/blackcandle_box, /turf/simulated/floor/tiled/techfloor, /area/space) -"tdA" = ( -/obj/machinery/door/airlock/maintenance/medical, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/medical/psych_ward) -"tdM" = ( -/obj/machinery/atmospherics/valve{ - name = "VENT TO WASTE" +"teQ" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"tfg" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/ai/foyer) +"teS" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ - dir = 8 + dir = 4 }, /turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) -"tfv" = ( -/obj/machinery/shield_diffuser, -/turf/simulated/floor/airless, -/area/space) +/area/main_map/maintenance/deck_three/aft/starboard) +"teW" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "tfz" = ( /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research) -"tfO" = ( -/obj/machinery/atmospherics/component/unary/engine{ - dir = 1 +"tfK" = ( +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/excursion/cargo) -"tgm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/port) "tgx" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -22403,18 +16327,23 @@ }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"tgI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"thq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) +"ths" = ( +/obj/structure/cable/green{ + icon_state = "16-0" }, -/obj/effect/floor_decal/techfloor{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "0-4" }, -/turf/simulated/floor/tiled/dark, -/area/space) +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "thw" = ( /obj/structure/table/rack/shelf{ name = "voidsuit shelving" @@ -22443,12 +16372,23 @@ /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/techfloor, /area/tether/exploration/pilot_office) -"thP" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 +"thH" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/port) +"thK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) +"tid" = ( +/obj/machinery/door/airlock/engineering{ + name = "Hangar Substation" }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_three) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/Hangar_bay/deck2) "tip" = ( /obj/item/stool/padded, /obj/effect/floor_decal/spline/plain{ @@ -22456,12 +16396,21 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/theatre) -"tiw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"tis" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) +"tja" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "tju" = ( /obj/effect/floor_decal/industrial/danger{ dir = 1 @@ -22476,66 +16425,28 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenobiology) -"tjE" = ( -/obj/machinery/turretid/stun{ - control_area = "\improper AI Upload Chamber"; - name = "AI Upload turret control"; - pixel_y = -26 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai/foyer) -"tkv" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/starboard) "tkG" = ( /obj/effect/floor_decal/corner/green{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/psych_ward) -"tlw" = ( -/turf/simulated/floor/tiled/neutral, -/area/shuttle/excursion/general) -"tlx" = ( -/turf/simulated/wall, -/area/rnd/test_area) +"tlr" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "tlD" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/gravity_gen) -"tme" = ( -/obj/machinery/door/airlock/maintenance/engi, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/space) "tmg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/tiled, /area/medical/morgue) -"tml" = ( -/obj/machinery/door/airlock/medical{ - name = "Psychiatric Ward" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) -"tmm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) "tmF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -22548,15 +16459,6 @@ }, /turf/simulated/floor/wood, /area/library) -"tob" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) "too" = ( /obj/machinery/door/blast/regular{ density = 0; @@ -22571,10 +16473,6 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"tot" = ( -/obj/machinery/holoplant, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) "toX" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 @@ -22599,13 +16497,9 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"tpr" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) +"tpN" = ( +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "tpO" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -22616,9 +16510,10 @@ /obj/machinery/power/apc/direction_bump/north, /turf/simulated/floor/plating, /area/maintenance/library) -"tqD" = ( -/turf/simulated/floor/carpet/sblucarpet, -/area/space) +"tqI" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "tqM" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/toolbox/mechanical, @@ -22644,12 +16539,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/theatre) -"tqW" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/medical/virologyisolation) "try" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -22666,30 +16555,28 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"tsg" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) +"tsd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "tsy" = ( /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"ttj" = ( -/turf/simulated/wall, -/area/triumph/surfacebase/sauna) +"tsZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "ttm" = ( /obj/effect/floor_decal/grass_edge{ dir = 1 }, /turf/simulated/floor/outdoors/dirt, /area/hydroponics/garden) -"ttq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) "ttD" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10 @@ -22697,26 +16584,30 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/rnd/test_area) +"ttR" = ( +/obj/machinery/holoplant, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "ttW" = ( /obj/machinery/pipedispenser/disposal, /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, /area/rnd/xenobiology) -"tuo" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) "tux" = ( /turf/simulated/floor/tiled/steel, /area/security/prison) -"tvy" = ( -/obj/structure/bed/chair{ - dir = 1 +"tuz" = ( +/obj/structure/sign/deck3{ + pixel_y = -32 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) "tvG" = ( /obj/machinery/atmospherics/pipe/simple/insulated{ dir = 10 @@ -22730,89 +16621,49 @@ /obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/monotile, /area/security/prison) -"two" = ( -/obj/structure/bookcase/legal/combo, -/obj/item/book/manual/security_space_law, -/obj/item/book/manual/security_space_law, -/obj/item/book/manual/legal/cr_vol1, -/obj/item/book/manual/legal/cr_vol3, -/obj/item/book/manual/legal/cr_vol2, -/obj/item/book/manual/legal/cr_vol4, -/obj/item/book/manual/legal/cr_vol5, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 +"twq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) -"twD" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/structure/table/wooden_reinforced, -/obj/item/flame/candle/candelabra/everburn, -/turf/simulated/floor/tiled, -/area/maintenance/deck_three/forward/port) -"twK" = ( -/obj/machinery/light/small, -/obj/structure/toilet{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "twW" = ( /obj/structure/table/standard, /obj/item/multitool, /turf/simulated/floor/tiled/techmaint, /area/tcommsat/entrance) -"txf" = ( -/obj/machinery/computer/security/mining{ - name = "psychiatric wing camera monitor"; - network = list("Psychiatric") +"txN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/space) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "txP" = ( /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) +"tzk" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "tzl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/space) -"tzu" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"tAl" = ( -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cockpit) -"tAH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, +"tzv" = ( /obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 + dir = 8; + pixel_x = 25 }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/robotics/surgeryroom1) -"tAI" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled/dark, -/area/space) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) "tCa" = ( /obj/machinery/portable_atmospherics/canister/oxygen/prechilled{ start_pressure = 9000 @@ -22845,23 +16696,16 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tDi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "tDo" = ( /obj/structure/flora/pottedplant/tropical, /turf/simulated/floor/wood, /area/medical/psych/psych_1) -"tDW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 +"tDD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/wall/rshull, -/area/shuttle/excursion/general) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "tEr" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 9 @@ -22871,12 +16715,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"tFQ" = ( +"tFl" = ( /obj/structure/railing{ dir = 8 }, -/turf/simulated/floor/plating, -/area/space) +/turf/simulated/open, +/area/main_map/maintenance/deck_three/forward) "tGc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -22886,41 +16730,37 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"tGf" = ( -/obj/item/stool/padded, -/turf/simulated/floor/wood, -/area/space) "tGv" = ( /obj/machinery/disposal, /turf/simulated/floor/wood, /area/space) -"tGW" = ( -/turf/simulated/wall, -/area/maintenance/security/starboard) -"tHl" = ( -/obj/structure/table, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/research) -"tIp" = ( -/obj/structure/table/woodentable, -/obj/machinery/recharger, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 +"tHe" = ( +/obj/structure/cable/green{ + icon_state = "32-8" }, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"tJa" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor, +/obj/structure/lattice, +/turf/simulated/open, +/area/space) "tJt" = ( /turf/simulated/wall, /area/rnd/robotics/resleeving) +"tJF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "tKH" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /obj/effect/floor_decal/borderfloorwhite{ @@ -22938,99 +16778,48 @@ "tLp" = ( /turf/simulated/floor/carpet/sblucarpet, /area/medical/psych/psych_2) -"tLG" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/security/starboard) -"tMu" = ( -/obj/structure/closet/secure_closet/medical_wall/anesthetics{ - pixel_x = -32; - req_access = list(); - req_one_access = list(29,45) - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/button/windowtint{ - id = "robo_surg"; - pixel_y = 25 - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"tMx" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/lino, -/area/security/detectives_office) -"tMC" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_three/aft) -"tMD" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced, -/area/space) "tMG" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"tMQ" = ( -/turf/simulated/floor/airless, -/area/rnd/test_area) -"tNa" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/hydroponics/garden) -"tNc" = ( -/obj/machinery/air_alarm/server{ - dir = 4; - pixel_x = -21 - }, -/turf/simulated/floor/bluegrid{ - initial_gas_mix = "n2=100;TEMP=80"; - name = "Mainframe Base" - }, -/area/tcommsat/chamber) -"tNg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shuttle_sensor{ - dir = 5; - id_tag = "shuttlesens_exp_int"; - pixel_y = -24 - }, -/obj/structure/closet/walllocker/emergsuit_wall{ - dir = 8; - pixel_x = -32 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/industrial/warning{ +"tNp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) +"tNw" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "tNA" = ( /obj/machinery/atmospherics/pipe/simple/visible/aux{ dir = 4 }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) -"tNN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/purple{ - dir = 1 - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology) +"tNE" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/resleeving) "tNP" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/storage) +"tNW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "tOj" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -23040,18 +16829,20 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_shop) -"tOW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) "tOZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) +"tPo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/gravity_gen) "tPC" = ( /turf/simulated/floor/carpet/bcarpet, /area/library) @@ -23070,14 +16861,16 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) -"tPW" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/adv{ - pixel_y = 10 +"tQb" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/item/robotanalyzer, -/turf/simulated/floor/tiled/neutral, -/area/shuttle/excursion/general) +/obj/machinery/door/airlock/maintenance/int{ + req_access = list(27); + name = "Chapel Access" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/port) "tQs" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, @@ -23089,18 +16882,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/hydroponics/garden) -"tQv" = ( -/turf/simulated/wall/r_wall, -/area/rnd/robotics/resleeving) -"tQF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/port) +"tQt" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/space) "tQO" = ( /obj/structure/railing{ dir = 8 @@ -23124,12 +16909,25 @@ "tRw" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) +"tRK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "tRO" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/plating, /area/hydroponics/garden) +"tSn" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/morgue) "tSs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -23139,34 +16937,16 @@ }, /turf/simulated/floor/bluegrid, /area/ai_upload) -"tSx" = ( -/obj/machinery/vending/cola, -/obj/effect/floor_decal/corner/beige{ - dir = 10 +"tSJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"tSP" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/obj/structure/railing{ +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor{ dir = 4 }, -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/deck_three/starboard) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) "tTe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -23182,13 +16962,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"tTp" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +"tTl" = ( +/obj/landmark{ + name = "lightsout" }, -/obj/structure/closet/bombcloset, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/storage) "tTC" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 @@ -23207,10 +16986,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/robotics/surgeryroom1) -"tUi" = ( -/obj/structure/morgue, -/turf/simulated/floor/tiled/techfloor, -/area/space) "tUL" = ( /obj/structure/stairs/spawner/south, /turf/simulated/floor/tiled/techfloor, @@ -23238,6 +17013,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) +"tVU" = ( +/obj/machinery/turnstile/entry{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/prison) "tWk" = ( /obj/structure/closet/secure_closet/psych, /turf/simulated/floor/carpet/sblucarpet, @@ -23265,31 +17046,31 @@ "tXn" = ( /turf/simulated/floor/wood, /area/crew_quarters/theatre) +"tXu" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/main_map/maintenance/deck_three/port) +"tYk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "tYw" = ( /obj/item/toy/plushie/voxie, /turf/simulated/floor/grass, /area/medical/psych_ward) -"tYL" = ( -/obj/structure/railing{ - dir = 8 +"tYZ" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, -/obj/item/stack/cable_coil/random_belt, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"tYP" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "tZE" = ( /obj/effect/floor_decal/industrial/danger/corner{ dir = 1 @@ -23307,14 +17088,25 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, /area/rnd/xenobiology) -"uax" = ( -/obj/structure/ladder/updown, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) "uaN" = ( /obj/structure/flora/ausbushes/reedbush, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) +"uaO" = ( +/obj/structure/stairs/spawner/west, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) +"ubp" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) "ubJ" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -23326,17 +17118,6 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"ubP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) "ubY" = ( /obj/structure/toilet{ dir = 8 @@ -23353,25 +17134,6 @@ }, /turf/simulated/floor/tiled/dark, /area/tcommsat/entrance) -"uce" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"ucf" = ( -/turf/simulated/floor/lino, -/area/security/detectives_office) -"ucs" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Engine Compartment"; - req_one_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) "ucD" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/firstaid/adv, @@ -23391,13 +17153,6 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) -"ucH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/asteroid, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/tether/exploration/pilot_office) "udv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -23409,44 +17164,36 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"udx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/theatre) +"udD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "udF" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/tiled, /area/rnd/test_area) -"udW" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) -"ueX" = ( -/obj/structure/window/reinforced{ - dir = 8 +"ueM" = ( +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/forward) +"ueY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/structure/window/reinforced, -/obj/machinery/recharger, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"ufe" = ( -/obj/structure/bed/psych, -/turf/simulated/floor/wood, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "ufg" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/holopad, /turf/simulated/floor/tiled/steel, /area/security/brig) -"ufV" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) "ugg" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -23467,15 +17214,19 @@ /obj/machinery/atmospherics/pipe/simple/visible/aux, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) -"ugw" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 +"ugi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/window/phoronreinforced/full, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Psyche Lobby Room"; + req_one_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) "ugA" = ( /obj/structure/window/reinforced{ dir = 1 @@ -23498,18 +17249,6 @@ }, /turf/simulated/floor/plating, /area/ai_upload) -"uhg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/space) -"uhp" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/tether/exploration) "uhr" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -23521,24 +17260,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"uhy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) -"uhF" = ( -/obj/structure/table/steel, -/obj/item/integrated_circuit_printer, -/obj/effect/floor_decal/techfloor{ - dir = 1 +"uhz" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/medical/psych_ward) +"uhC" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) +/obj/random/junk, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "uhH" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -23576,40 +17308,6 @@ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"uii" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) -"uiB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) -"uji" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "ujr" = ( /obj/effect/floor_decal/techfloor{ dir = 9 @@ -23619,6 +17317,10 @@ /obj/item/retail_scanner, /turf/simulated/floor/tiled/dark, /area/vacant/vacant_shop) +"ujK" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "ujP" = ( /obj/structure/railing/grey{ dir = 8 @@ -23629,9 +17331,25 @@ /obj/machinery/door/airlock/maintenance, /turf/simulated/floor/tiled/techmaint, /area/hydroponics/garden) -"ukF" = ( -/obj/machinery/light/small, +"uke" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) +"ukp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) +"ukS" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, /area/space) "ulm" = ( /obj/effect/floor_decal/spline/fancy/wood{ @@ -23670,58 +17388,19 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"ulQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"umQ" = ( +/obj/machinery/light/no_nightshift, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"umn" = ( -/obj/structure/memorial, -/turf/simulated/floor/glass/reinforced, -/area/hallway/primary/central_three) -"umB" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) -"une" = ( -/obj/machinery/porta_turret/crescent{ - density = 1; - faction = "neutral" - }, -/turf/simulated/floor/airless/ceiling, -/area/bridge) +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_three/starboard) "unz" = ( /obj/machinery/telecomms/processor/preset_four, /turf/simulated/floor/tiled/dark{ initial_gas_mix = "n2=100;TEMP=80" }, /area/tcommsat/chamber) -"unH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass/medical{ - name = "Psychiatric Play-Area Access" - }, -/obj/machinery/door/blast/regular{ - id = "psyche-doc-access"; - name = "Play Area Access" - }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "unQ" = ( /obj/structure/railing{ dir = 8 @@ -23730,16 +17409,15 @@ /obj/structure/railing, /turf/simulated/floor/reinforced/airless, /area/space) -"uod" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"uoz" = ( -/obj/machinery/light/fairy{ - dir = 4 +"uoR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted/command, +/area/ai) "uoT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -23756,19 +17434,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"uoZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) -"upf" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) "upr" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -23782,32 +17447,26 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/prison) -"upO" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) +"ups" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "upZ" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 5 }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"uqS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/wall{ - can_open = 1 - }, -/area/space) -"uqY" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +"uqF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "uri" = ( /obj/structure/railing{ dir = 8 @@ -23829,26 +17488,6 @@ /obj/machinery/holoplant, /turf/simulated/floor/wood, /area/chapel/main) -"urA" = ( -/obj/structure/closet/crate/hydroponics{ - desc = "All you need to start your own honey farm."; - name = "beekeeping crate" - }, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/beehive_assembly, -/obj/item/bee_smoker, -/obj/item/bee_pack, -/obj/item/tool/crowbar, -/turf/simulated/floor/tiled, -/area/hydroponics) -"urY" = ( -/obj/structure/grille, -/turf/simulated/floor/airless, -/area/space) "urZ" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -23871,37 +17510,13 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/storage) -"utj" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/wall/r_wall, -/area/rnd/test_area) -"uve" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/structure/closet/secure_closet/personal{ - name = "hazardous patient closet"; - req_access = list(45) - }, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) -"uvA" = ( -/obj/structure/sign/warning/hot_exhaust, -/turf/simulated/wall/r_wall, -/area/rnd/test_area) -"uvC" = ( +"utp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_three) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "uwC" = ( /obj/structure/table/woodentable, /obj/item/flashlight/lamp/green{ @@ -23921,18 +17536,32 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/test_area) -"uxx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"uwN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) -"uyK" = ( -/obj/structure/closet/l3closet/scientist/double, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/obj/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/tether/exploration/pathfinder_office) +"uxE" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/south, +/turf/simulated/floor/wood, +/area/crew_quarters/theatre) +"uyl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay3) "uyO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -23945,18 +17574,6 @@ "uyV" = ( /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"uyX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "uzg" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -23983,27 +17600,41 @@ "uzO" = ( /turf/simulated/floor/airless/ceiling, /area/space) -"uAf" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/machinery/sparker{ - id = "burn_chamber"; - pixel_x = -26 +"uAk" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_1) +"uAG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/wall{ + can_open = 1 + }, +/area/main_map/maintenance/deck_three/aft) +"uAJ" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/port) "uAM" = ( /obj/machinery/camera/network/security, /turf/simulated/floor/plating, /area/security/brig) -"uBi" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/captain) "uBz" = ( /obj/effect/floor_decal/industrial/danger/corner{ dir = 8 @@ -24019,9 +17650,6 @@ }, /turf/simulated/floor/tiled/steel, /area/security/brig) -"uCd" = ( -/turf/simulated/wall/r_wall, -/area/medical/psych) "uCq" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "rnd_can_store" @@ -24031,6 +17659,16 @@ "uCC" = ( /turf/simulated/open, /area/engineering/engine_monitoring) +"uDg" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/test_area) +"uDr" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) "uDG" = ( /obj/structure/railing{ dir = 4 @@ -24048,36 +17686,19 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"uFp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ +"uFT" = ( +/obj/structure/railing{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) -"uFV" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/psych/psych_1) +/obj/structure/railing, +/turf/simulated/open, +/area/main_map/maintenance/deck_three) "uGp" = ( /obj/structure/table/rack/shelf/steel, /obj/item/clothing/mask/gas, /obj/item/tool/crowbar, /turf/simulated/floor/plating, /area/security/brig) -"uGv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology) "uGJ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-8" @@ -24087,12 +17708,15 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"uHe" = ( -/obj/machinery/camera/network/security{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) +"uGR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) +"uHx" = ( +/obj/structure/sign/warning/hot_exhaust, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/test_area) "uHP" = ( /obj/structure/window/reinforced{ dir = 1 @@ -24109,12 +17733,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/security/prison) -"uIz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/space) "uIP" = ( /obj/structure/bookcase/legal/corpreg, /turf/simulated/floor/wood, @@ -24123,14 +17741,6 @@ /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/triumph/surfacebase/sauna) -"uKa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/exploration/pilot_office) "uKj" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -24138,6 +17748,16 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) +"uKW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) "uLd" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/tree/jungle_small, @@ -24153,12 +17773,6 @@ /obj/machinery/holopad, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) -"uLZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "uMc" = ( /obj/structure/railing/grey{ dir = 4 @@ -24168,6 +17782,9 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/theatre) +"uMe" = ( +/turf/simulated/wall/prepainted/civilian, +/area/hydroponics/garden) "uMP" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/brflowers, @@ -24196,24 +17813,27 @@ /obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/white, /area/medical/resleeving) -"uNU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ +"uNX" = ( +/obj/structure/railing{ dir = 1 }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) "uNZ" = ( /obj/machinery/transhuman/resleever, /obj/machinery/camera/network/research{ @@ -24221,29 +17841,9 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/robotics/resleeving) -"uOz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/spline/plain{ - dir = 1; - pixel_y = -15 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) +"uOf" = ( +/turf/simulated/wall/prepainted/civilian, +/area/triumph/surfacebase/sauna) "uOL" = ( /obj/machinery/telecomms/bus/preset_four, /turf/simulated/floor/tiled/dark{ @@ -24263,10 +17863,6 @@ }, /turf/simulated/floor/wood, /area/medical/psych/psych_1) -"uPn" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) "uPq" = ( /obj/machinery/button/windowtint{ id = "draama"; @@ -24280,33 +17876,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/theatre) -"uPG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) -"uPL" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "uPU" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/floor_decal/corner/blue{ @@ -24331,6 +17900,15 @@ }, /turf/simulated/floor/wood, /area/medical/psych/psych_2) +"uQa" = ( +/obj/machinery/doorbell_chime, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) +"uQp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/virology) "uRh" = ( /obj/spawner/window/reinforced/full/firelocks, /obj/structure/curtain/black, @@ -24360,137 +17938,26 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"uSs" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/space) -"uSZ" = ( -/obj/structure/dispenser/oxygen, +"uSP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"uTc" = ( -/turf/simulated/wall/r_wall, -/area/medical/medbay3) -"uTd" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft) +/area/main_map/hallway/deck3) "uTy" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/medical/psych_ward) -"uTz" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Cargo Compartment"; - req_one_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"uTT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/component/binary/pump/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/component/binary/pump/fuel{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) -"uUd" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"uUm" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/tether/exploration/pilot_office) -"uUX" = ( -/obj/machinery/ai_slipper, -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"uVK" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) +"uVy" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) "uVV" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/green, /obj/machinery/power/apc/direction_bump/south, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"uVW" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/storage/belt/medical, -/obj/item/soap/nanotrasen, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/medical/medbay_primary_storage) -"uWt" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) -"uWQ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"uWX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "uXm" = ( /obj/structure/cable{ icon_state = "1-8" @@ -24516,6 +17983,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) +"uYe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/test_area) "uYB" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -24539,29 +18014,9 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/monotile, /area/security/prison) -"uZa" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"uZJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration) -"vag" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) -"vau" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) +"uZt" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/medbay_primary_storage) "vav" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 @@ -24569,12 +18024,43 @@ /obj/machinery/atmospherics/pipe/simple/visible/aux, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) +"vaw" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "vaA" = ( /obj/effect/floor_decal/grass_edge{ dir = 5 }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) +"vbd" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) +"vbt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) +"vbL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/hallway/deck3) +"vcc" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "vci" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Medbay Deck 3 Entrance"; @@ -24597,46 +18083,21 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) -"vdL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "vdM" = ( /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"vek" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"vei" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/east, +/obj{ + name = "---Merge conflict marker---" }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"ven" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/valve{ - name = "EMERGENCY VENT TO SPACE" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"veO" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled/techfloor, -/area/space) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "vfI" = ( /obj/effect/floor_decal/corner/green{ dir = 10 @@ -24652,27 +18113,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"vfJ" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"vfZ" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -24; - pixel_y = -5 - }, -/obj/structure/handrail{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) "vgx" = ( /obj/machinery/computer/diseasesplicer{ dir = 1 @@ -24687,19 +18127,12 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_shop) -"vgW" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/med_data/laptop{ - dir = 4 +"vgG" = ( +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) -"vhb" = ( -/obj/machinery/camera/network/command{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_three/forward/starboard) "vhj" = ( /obj/structure/table/standard, /obj/item/storage/firstaid/surgery, @@ -24718,6 +18151,13 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) +"vhQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) "vhY" = ( /obj/structure/stairs/spawner/east, /obj/structure/railing{ @@ -24725,39 +18165,21 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) +"vhZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/common, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "vie" = ( /turf/simulated/wall/r_wall, /area/tether/exploration/pilot_office) -"vje" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) -"vjg" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/direction_bump/east, -/turf/simulated/floor/tiled/techmaint, -/area/space) "vjz" = ( /obj/structure/closet/secure_closet/psych, /turf/simulated/floor/carpet/sblucarpet, /area/medical/psych/psych_1) -"vjT" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) "vkf" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -24767,27 +18189,25 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"vkg" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 +"vkh" = ( +/obj/structure/cable/green{ + icon_state = "0-4" }, -/obj/effect/floor_decal/borderfloorwhite{ +/obj/machinery/power/apc/direction_bump/south, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"vkD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"vkR" = ( -/turf/simulated/wall, -/area/maintenance/library) -"vll" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/bluegrid, -/area/ai) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) +"vkM" = ( +/turf/simulated/wall/r_wall/prepainted/engineering/atmos, +/area/main_map/maintenance/atmospheric_substation/medical) "vlH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -24797,39 +18217,60 @@ }, /turf/simulated/floor/bluegrid, /area/ai_upload) -"vlU" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "vmn" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/wood, /area/library) +"vmH" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/port) "vmT" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, /turf/simulated/floor/tiled, /area/medical/medbay_primary_storage) -"vnh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"vnt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) +"vny" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft) +"vnz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) +"vnI" = ( +/obj/machinery/light/small{ dir = 4 }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) +"vnY" = ( +/obj/structure/sign/deck/third, +/turf/simulated/wall/prepainted/science, +/area/rnd/robotics/surgeryroom1) "vom" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) +"vop" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/steel, +/area/security/prison) "voO" = ( /obj/machinery/camera/network/civilian{ dir = 1 @@ -24852,26 +18293,10 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"vqh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"vqs" = ( -/obj/machinery/air_alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/filingcabinet/medical{ - desc = "A large cabinet with hard copy medical records."; - name = "Medical Records" - }, -/turf/simulated/floor/wood, -/area/space) +"vqr" = ( +/obj/machinery/door/airlock/maintenance/cargo, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) "vqG" = ( /obj/structure/bed/chair/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -24887,33 +18312,25 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"vrl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 4 +"vqV" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/structure/table/rack, +/obj/machinery/light/no_nightshift{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) "vrF" = ( /turf/simulated/floor/grass, /area/medical/psych_ward) -"vsu" = ( -/obj/structure/toilet{ - dir = 8 +"vsl" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ + dir = 1 }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "vsA" = ( /obj/machinery/door/airlock/maintenance/rnd, /turf/simulated/floor/tiled/techmaint, @@ -24930,36 +18347,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) -"vtN" = ( -/turf/simulated/floor/plating, -/area/maintenance/security/starboard) "vuD" = ( /obj/effect/floor_decal/corner/green{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/psych_ward) +"vuQ" = ( +/obj/machinery/turnstile/exit{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/prison) "vva" = ( /turf/space, /area/space) -"vvE" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"vvR" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tether/exploration/pilot_office) "vws" = ( /obj/structure/table/rack/shelf/steel, /obj/item/paper_bin{ @@ -24987,6 +18389,14 @@ }, /turf/simulated/floor/tiled/steel, /area/security/brig) +"vwU" = ( +/obj/machinery/door/airlock/glass/mining{ + name = "Cargo Bay"; + req_access = list(31); + req_one_access = list() + }, +/turf/simulated/floor/tiled/techmaint, +/area/space) "vwV" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -24994,9 +18404,6 @@ /obj/machinery/power/apc/direction_bump/east, /turf/simulated/floor/tiled, /area/rnd/test_area) -"vxD" = ( -/turf/simulated/floor, -/area/maintenance/deck_three/forward/port) "vxF" = ( /obj/structure/table/rack, /obj/item/clothing/ears/earmuffs/headphones, @@ -25013,16 +18420,6 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research) -"vym" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/paper_bin, -/obj/item/clothing/glasses/sunglasses, -/obj/item/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) "vzf" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 10 @@ -25036,47 +18433,32 @@ }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"vzh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +"vzm" = ( +/obj/machinery/door/airlock/atmos{ + name = "Science Atmospherics Backup"; + req_access = list(24) }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) -"vzs" = ( -/obj/machinery/atmospherics/component/unary/vent_pump{ - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - on = 1 - }, -/turf/simulated/floor/bluegrid{ - initial_gas_mix = "n2=100;TEMP=80"; - name = "Mainframe Base" - }, -/area/tcommsat/chamber) -"vzI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) +"vzL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) "vAf" = ( /obj/machinery/door/blast/regular{ density = 0; @@ -25091,17 +18473,23 @@ /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor, /area/security/brig) -"vAT" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) +"vAR" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) "vBa" = ( /obj/structure/table/rack/shelf/steel, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"vBb" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) +"vBl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft/port) "vCD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -25115,31 +18503,10 @@ /obj/effect/floor_decal/techfloor/corner, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"vDj" = ( -/obj/structure/ladder/up, +"vDi" = ( +/obj/machinery/door/airlock/maintenance/command, /turf/simulated/floor/plating, -/area/maintenance/deck_three) -"vDw" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "shuttle_hatch"; - name = "Shuttle Rear Hatch" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "shuttle_hatch"; - name = "Shuttle Rear Hatch"; - pixel_x = -25 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) -"vFl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/space) +/area/main_map/maintenance/deck_three/forward) "vFz" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -25166,25 +18533,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"vFM" = ( -/obj/machinery/atmospherics/component/unary/heat_exchanger{ - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"vFY" = ( -/obj/structure/safe/floor, -/obj/random/cash, -/obj/random/alcohol, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) "vGi" = ( /obj/structure/table/standard, /obj/item/storage/box/bodybags{ @@ -25199,56 +18547,34 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/robotics/surgeryroom1) -"vGS" = ( +"vHe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) +"vJE" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/component/unary/freezer{ + dir = 8; + icon_state = "freezer_1"; + set_temperature = 73; + use_power = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/entrance) +"vKP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) -"vHM" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/landmark/spawnpoint/latejoin/station/cyborg, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"vIc" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) -"vIq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"vJs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"vKd" = ( -/obj/structure/closet/secure_closet/guncabinet/excursion, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) -"vKv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/exploration/pilot_office) -"vKR" = ( -/obj/structure/closet/crate, -/obj/item/storage/fancy/candle_box, -/obj/item/flame/lighter/random, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/aft/starboard) +/area/main_map/hallway/deck3) "vLT" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 4 @@ -25261,19 +18587,45 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) -"vMu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +"vMd" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) +"vMF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/medical/resleeving) "vNt" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/space) +"vNI" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) "vNZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -25287,41 +18639,31 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/prison) -"vOo" = ( -/obj/random/maintenance/security, -/turf/simulated/floor/plating, -/area/maintenance/security/starboard) "vOB" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/techfloor, /area/engineering/gravity_gen) -"vPG" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor, +"vPw" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three) +/area/main_map/maintenance/deck_three/aft/starboard) +"vPF" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_three/forward/port) "vPK" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood, /area/medical/psych/psych_1) -"vPY" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/black, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"vQa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) "vQj" = ( /obj/machinery/disease2/isolator, /obj/effect/floor_decal/borderfloor{ @@ -25380,27 +18722,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) -"vQU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/space) -"vRa" = ( -/turf/simulated/wall, -/area/medical/medbay3) "vSu" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/railing{ @@ -25411,22 +18732,16 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"vSP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, +"vSG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay3) -"vSX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) "vSY" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -25440,24 +18755,6 @@ /obj/effect/floor_decal/grass_edge, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"vTE" = ( -/obj/structure/table/standard, -/obj/item/book/manual/robotics_cyborgs, -/obj/item/clothing/glasses/omnihud/rnd, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "vUi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -25474,60 +18771,20 @@ /obj/structure/railing, /turf/simulated/floor/reinforced, /area/space) -"vUv" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ +"vVb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) +"vVB" = ( +/obj/structure/railing{ dir = 1 }, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/tether/exploration/pilot_office) -"vUK" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cockpit) -"vUL" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) -"vUV" = ( -/obj/structure/cryofeed{ - dir = 4 +/obj/structure/railing{ + dir = 8 }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) -"vVD" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"vVJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) "vVT" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -25566,30 +18823,18 @@ "vWE" = ( /turf/simulated/floor/plating, /area/space) -"vXp" = ( -/obj/random/junk, +"vXa" = ( +/obj/machinery/door/airlock/maintenance/engi{ + name = "Elevator Shaft Access"; + req_one_access = null + }, /turf/simulated/floor/plating, -/area/maintenance/security/starboard) -"vXw" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - name = "Cryogenic Storage" - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/sleep/cryo) -"vXK" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, +/area/main_map/maintenance/deck_three/forward/starboard) +"vXr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "vXR" = ( /obj/structure/railing, /obj/structure/railing{ @@ -25609,6 +18854,9 @@ }, /turf/simulated/floor/wood, /area/chapel/main) +"vYY" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/psych) "vZb" = ( /obj/structure/musician/piano, /obj/effect/floor_decal/spline/plain{ @@ -25616,24 +18864,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/crew_quarters/theatre) -"vZy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/shuttle/excursion/cargo) -"vZP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) "vZR" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -25643,22 +18873,19 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"waG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"waf" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/medical/virology) -"wbo" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ - start_pressure = 8500 +/turf/simulated/open, +/area/main_map/maintenance/deck_three) +"waJ" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/turf/simulated/open, +/area/main_map/maintenance/deck_three/forward/starboard) "wbz" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -25688,67 +18915,62 @@ }, /turf/simulated/floor/plating, /area/hydroponics) -"wdM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, +"wcY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 4 }, -/turf/simulated/floor/tiled, -/area/medical/resleeving) -"weI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/hydroponics/garden) -"weN" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on{ - dir = 8 +/turf/simulated/wall/r_wall/prepainted/command, +/area/ai) +"wdc" = ( +/obj/structure/cable/green{ + icon_state = "4-9" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) +"wdG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) +/area/space) +"weH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "weT" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/wood, /area/library) -"weU" = ( +"wfh" = ( /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/robotics/surgeryroom1) +"wfS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"wfo" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"wfx" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/theatre) -"wfI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) "wgi" = ( /obj/machinery/button/remote/blast_door{ id = "burn_chamber_v"; @@ -25774,40 +18996,25 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) -"wij" = ( -/obj/machinery/cryopod/robot, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/space) "wiB" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/floor/tiled, /area/rnd/test_area) -"wlq" = ( -/obj/machinery/computer/centrifuge, -/turf/simulated/floor/tiled, +"wjE" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, /area/space) -"wlG" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ +"wkm" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/plating, -/area/space) -"wlK" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 +/obj/structure/table/standard, +/obj/item/flashlight/lamp, +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) +/turf/simulated/floor/carpet, +/area/security/brig) "wmo" = ( /obj/machinery/vending/hydronutrients, /obj/effect/floor_decal/corner/green{ @@ -25840,27 +19047,11 @@ }, /turf/simulated/floor/outdoors/dirt, /area/hydroponics/garden) -"wnl" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_three) -"woh" = ( -/obj/structure/cable/green{ - icon_state = "32-1" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/obj/structure/lattice, -/obj/machinery/door/firedoor, -/turf/simulated/open, -/area/maintenance/deck_three/forward/port) +"wnp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) "woS" = ( /obj/machinery/button/remote/blast_door{ id = "xenobiovs"; @@ -25893,39 +19084,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenobiology) -"woU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) -"woZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) -"wpv" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector/fuel, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) -"wpI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 27 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/captain) "wpW" = ( /obj/structure/fence/door, /obj/structure/cable/green{ @@ -25963,20 +19121,32 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"wrQ" = ( -/obj/structure/handrail{ +"wrO" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/closet/walllocker/emergsuit_wall{ - dir = 1; - pixel_y = -32 +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) +"wrX" = ( +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/structure/closet/walllocker/emergsuit_wall{ - dir = 4; - pixel_x = 32 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) +/area/main_map/maintenance/deck_three/aft/starboard) +"wsf" = ( +/obj/structure/ladder, +/obj/structure/ore_box, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft) "wsx" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 @@ -25992,14 +19162,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) -"wsQ" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"wsM" = ( +/obj/landmark/spawnpoint/latejoin/station/cryogenics, +/obj/effect/floor_decal/techfloor{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/bluegrid, -/area/ai) +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) "wsR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -26015,6 +19184,30 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) +"wsT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) +"wtr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "wtw" = ( /obj/structure/table/rack/shelf, /obj/effect/floor_decal/spline/fancy/wood{ @@ -26041,18 +19234,26 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/surgeryroom1) -"wvs" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/camera/network/research{ - dir = 6; - network = list("Research","Toxins Test Area") +"wuL" = ( +/obj/structure/closet/crate/hydroponics{ + desc = "All you need to start your own honey farm."; + name = "beekeeping crate" }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/beehive_assembly, +/obj/item/bee_smoker, +/obj/item/bee_pack, +/obj/item/tool/crowbar, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 25 }, /turf/simulated/floor/tiled, -/area/rnd/test_area) +/area/hydroponics) "wvv" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 @@ -26101,126 +19302,50 @@ }, /turf/simulated/floor/tiled, /area/space) -"wwv" = ( -/obj/structure/bookcase/legal/combo, -/obj/item/book/manual/legal/sop_vol1, -/obj/item/book/manual/legal/sop_vol2, -/obj/item/book/manual/legal/sop_vol3, -/obj/item/book/manual/legal/sop_vol4, -/turf/simulated/floor/lino, -/area/security/detectives_office) "wwF" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 }, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"wxp" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/security/starboard) -"wyn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) -"wyN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"wzh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 - }, +"wwG" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/power/apc/direction_bump/south, /turf/simulated/floor/tiled, -/area/rnd/test_area) +/area/crew_quarters/cafeteria) +"wyl" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) +"wzc" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) +"wzz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/hydroponics/garden) "wzH" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"wzP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) "wAb" = ( /turf/simulated/floor/tiled, /area/hydroponics/garden) -"wAz" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) "wAN" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 5 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/gravity_gen) -"wAT" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Surgery Room"; - req_one_access = list(29,47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"wBl" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/bluegrid, -/area/ai) "wBm" = ( /obj/landmark/spawnpoint/job/ai/secondary, /turf/simulated/floor/greengrid, /area/ai) -"wBq" = ( -/obj/machinery/atmospherics/component/unary/vent_pump{ - dir = 4; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 0; - pressure_checks_default = 0; - on = 1 - }, -/turf/simulated/floor/bluegrid{ - initial_gas_mix = "n2=100;TEMP=80"; - name = "Mainframe Base" - }, -/area/tcommsat/chamber) "wBN" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /obj/structure/bed/padded, @@ -26246,47 +19371,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"wCq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio6"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"wCS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/port) -"wCW" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ - start_pressure = 8500 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "wDe" = ( /obj/structure/cable/heavyduty{ icon_state = "2-4" @@ -26312,9 +19396,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"wEk" = ( -/turf/simulated/wall, -/area/rnd/workshop) +"wEo" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) "wEB" = ( /obj/machinery/computer/atmos_alert{ dir = 4 @@ -26393,13 +19479,9 @@ }, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) -"wGr" = ( -/obj/structure/table/steel, -/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/pilot{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cockpit) +"wGE" = ( +/turf/simulated/wall/prepainted/medical, +/area/medical/psych) "wGI" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -26412,19 +19494,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay3) -"wHt" = ( -/obj/effect/floor_decal/corner/beige/full{ +"wGL" = ( +/obj/structure/railing{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"wHH" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft/starboard) +/area/main_map/Hangar_bay/deck2) "wHX" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -26449,48 +19524,25 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"wJl" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) -"wJA" = ( -/obj/structure/bed/chair/office/dark{ +"wKe" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/starboard) +"wKf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/carpet/sblucarpet, -/area/space) -"wLz" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"wLS" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +/obj/machinery/air_alarm{ + pixel_y = 22 }, -/turf/simulated/floor/wood, -/area/space) -"wNc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/medbay{ - dir = 8; - network = list("Psychiatric") - }, -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "wNi" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 @@ -26498,32 +19550,10 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"wNA" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/medical{ - id_tag = "mentaldoor"; - name = "Mental Health"; - req_access = list(64) - }, -/turf/simulated/floor/wood, -/area/space) -"wOw" = ( -/obj/machinery/air_alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/reagent_dispensers/watertank, +"wNL" = ( +/obj/structure/stairs/spawner/west, /turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/area/main_map/hallway/deck3) "wPd" = ( /obj/structure/catwalk, /obj/structure/railing, @@ -26553,6 +19583,12 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/medical/psych_ward) +"wQg" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_three/starboard) "wQr" = ( /obj/machinery/button/windowtint{ id = "robo_resleeving"; @@ -26567,13 +19603,10 @@ /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/resleeving) -"wQR" = ( -/obj/machinery/atmospherics/valve, -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, +"wQx" = ( +/obj/structure/stairs/spawner/south, /turf/simulated/floor/tiled, -/area/rnd/test_area) +/area/main_map/hallway/deck3) "wQY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -26602,12 +19635,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"wRI" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) "wSj" = ( /obj/structure/cable/heavyduty{ icon_state = "0-2" @@ -26624,10 +19651,12 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"wSv" = ( -/obj/structure/closet/excavation, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) +"wSs" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) "wSK" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 @@ -26637,6 +19666,10 @@ "wSL" = ( /turf/simulated/wall/r_lead, /area/engineering/gravity_gen) +"wSX" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "wSZ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/glass{ @@ -26656,48 +19689,51 @@ }, /turf/simulated/floor/wood, /area/tether/exploration/pathfinder_office) -"wTD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) -"wTZ" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/machinery/suit_cycler/pilot, -/turf/simulated/floor/tiled/dark, -/area/tether/exploration/pilot_office) "wUe" = ( /obj/machinery/pipedispenser, /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, /area/rnd/xenobiology) -"wVb" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/bluegrid, -/area/space) -"wWN" = ( -/obj/structure/ladder, -/turf/simulated/floor/plating, -/area/space) -"wWO" = ( -/obj/machinery/camera/network/command{ - dir = 9 +"wUf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/closet/hydrant{ - pixel_x = 32 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three) +"wUU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/ai_upload) -"wWQ" = ( -/turf/simulated/wall, -/area/hallway/primary/central_three) +/area/tether/exploration/pilot_office) +"wVA" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) +"wVX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) +"wXb" = ( +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/space) +"wXh" = ( +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_three/forward/starboard) "wXJ" = ( /obj/machinery/computer/borgupload, /turf/simulated/floor/tiled/techfloor, @@ -26707,6 +19743,12 @@ /obj/machinery/vending/hydronutrients, /turf/simulated/floor/outdoors/dirt, /area/hydroponics/garden) +"wYk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck3) "wYv" = ( /obj/machinery/camera/network/research{ dir = 8; @@ -26720,87 +19762,34 @@ }, /turf/simulated/floor/wood, /area/library) -"wZt" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"xad" = ( +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology) +"xae" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ dir = 8 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/general) -"wZu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cargo) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "xar" = ( /obj/structure/bed/chair/sofa/black, /turf/simulated/floor/carpet/bcarpet, /area/space) -"xav" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/deck_three) -"xbN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) -"xcC" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "det_office" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"xcT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 1; - network = list("Psychiatric") - }, -/turf/simulated/floor/tiled/white, +"xbw" = ( +/turf/simulated/wall/r_wall/prepainted/medical, /area/medical/psych_ward) +"xbW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/purple{ + dir = 8 + }, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/xenobiology) +"xdf" = ( +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "xdh" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ppflowers, @@ -26810,16 +19799,9 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"xdm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"xdp" = ( -/obj/structure/sign/deck3, +"xdq" = ( /turf/simulated/wall, -/area/maintenance/deck_three) +/area/main_map/maintenance/deck_three/aft) "xdz" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -26829,17 +19811,6 @@ "xdN" = ( /turf/simulated/floor/tiled/techmaint, /area/tcommsat/entrance) -"xdS" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai/foyer) "xet" = ( /obj/machinery/firealarm{ layer = 3.3; @@ -26847,25 +19818,11 @@ }, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) -"xew" = ( -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +"xez" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/security/prison) "xeB" = ( /turf/simulated/floor/plating, /area/medical/virologyaccess) @@ -26884,48 +19841,10 @@ }, /turf/simulated/floor/reinforced/airless, /area/rnd/test_area) -"xfn" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/aft) -"xgc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"xgA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/exploration/pilot_office) -"xgF" = ( -/obj/machinery/light/small{ - dir = 1 - }, +"xgq" = ( +/obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/maintenance/deck_three/forward/starboard) +/area/main_map/maintenance/deck_three/port) "xgU" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -26963,6 +19882,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/psych) +"xii" = ( +/obj/structure/sign/deck/third, +/turf/simulated/wall/prepainted/civilian, +/area/main_map/hallway/deck3) "xiE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -26982,24 +19905,6 @@ "xiJ" = ( /turf/simulated/floor/carpet, /area/security/brig) -"xiY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled, -/area/rnd/test_area) -"xiZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"xjd" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/hallway/primary/central_three) "xje" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/wooden_reinforced, @@ -27008,40 +19913,25 @@ }, /turf/simulated/floor/wood, /area/rnd/xenobiology) -"xjs" = ( -/obj/machinery/atmospherics/pipe/vent/high_volume, -/turf/simulated/floor/airless, -/area/rnd/test_area) -"xjI" = ( +"xjj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"xjM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/structure/bed/chair{ - dir = 1 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) +"xjC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 }, -/turf/simulated/floor/tiled/white, -/area/medical/resleeving) +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/direction_bump/west, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) "xjO" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -27076,82 +19966,35 @@ /obj/structure/flora/ausbushes/reedbush, /turf/simulated/floor/water/deep/indoors, /area/hydroponics/garden) -"xmB" = ( -/turf/simulated/wall, -/area/maintenance/deck_three/port) -"xmF" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/landmark/spawnpoint/job/roboticist, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"xnd" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access = list(6) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"xnT" = ( +"xkK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/starboard) -"xnZ" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) +"xmI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/beige/border, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/starboard) "xof" = ( /obj/structure/table/sifwoodentable, /obj/structure/reagent_dispensers/water_cooler/full, /turf/simulated/floor/wood, /area/medical/medbay3) -"xoD" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wood, -/area/tether/exploration/pilot_office) +"xoM" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/main_map/maintenance/deck_three/forward/starboard) "xpm" = ( /turf/simulated/floor/tiled/techmaint, /area/maintenance/substation/tcomms) -"xpI" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/turf/simulated/floor/tiled/techmaint, -/area/space) -"xpN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) -"xql" = ( -/turf/simulated/open, -/area/maintenance/deck_three/aft/starboard) "xqw" = ( /obj/structure/bed, /obj/item/bedsheet/brown, @@ -27160,10 +20003,6 @@ }, /turf/simulated/floor/carpet, /area/security/brig) -"xrh" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/white, -/area/space) "xrC" = ( /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/beige/bordercorner, @@ -27210,62 +20049,35 @@ /obj/machinery/door/airlock/lift, /turf/simulated/floor/holofloor/tiled/dark, /area/space) -"xtv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, +"xtN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 8 }, -/obj/structure/sink{ - pixel_y = 19 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"xtz" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_three/port) -"xtS" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/hatch{ - name = "Engine Compartment"; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/general) +/turf/simulated/floor/carpet/bcarpet, +/area/space) "xtV" = ( /obj/machinery/holopad, /turf/simulated/floor/tiled/monotile, /area/security/prison) -"xui" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) +"xuo" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/medical/psych/psych_2) +"xuE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/hydroponics/garden) "xvc" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"xvf" = ( -/obj/structure/filingcabinet/chestdrawer{ - name = "Medical Forms" - }, -/turf/simulated/floor/wood, -/area/space) -"xvr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) "xwb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -27288,54 +20100,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"xwi" = ( -/turf/simulated/wall, -/area/maintenance/deck_three/aft) -"xwq" = ( -/obj/structure/ladder, -/obj/structure/stasis_cage, -/turf/simulated/floor/plating, -/area/space) -"xwv" = ( -/turf/simulated/wall, -/area/quartermaster/warehouse) -"xwB" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/prison) -"xxm" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-6" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) -"xxD" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) -"xyd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_three) +"xwK" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/wood, +/area/vacant/vacant_shop) +"xxo" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/main_map/maintenance/deck_three/forward/starboard) "xyY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -27348,14 +20119,16 @@ /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled/white, /area/medical/psych) -"xzt" = ( -/obj/machinery/vending/loadout/uniform, -/turf/simulated/floor/tiled/dark, -/area/space) "xzI" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/tether/exploration/pathfinder_office) +"xAK" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/retro/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/starboard) "xBv" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, @@ -27365,25 +20138,13 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"xBz" = ( -/obj/machinery/door/airlock/atmos{ - name = "Civilian Atmospherics Backup"; - req_access = list(24) - }, -/obj/machinery/door/firedoor, +"xCb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/space) -"xBA" = ( -/obj/structure/lattice, -/obj/structure/bookcase, -/turf/simulated/open, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/port) "xCx" = ( /obj/machinery/door/airlock/research{ name = "Toxins Lab"; @@ -27397,10 +20158,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/test_area) -"xCA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/test_area) "xCM" = ( /obj/structure/bookcase{ name = "bookcase (Religious)" @@ -27408,11 +20165,12 @@ /obj/item/book/custom_library/religious, /turf/simulated/floor/wood, /area/security/brig) -"xDd" = ( -/obj/structure/ladder, -/obj/structure/mopbucket, -/turf/simulated/floor/plating, -/area/space) +"xDv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck3) "xDD" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5 @@ -27460,34 +20218,21 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/resleeving) -"xEt" = ( -/obj/structure/handrail{ +"xEJ" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/engineering/engine_monitoring) +"xFo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/machinery/oxygen_pump{ - pixel_y = -30 - }, -/obj/machinery/oxygen_pump{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/general) -"xEu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/central_three) -"xEL" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_three/forward) -"xFc" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/tether/exploration/pilot_office) +/area/crew_quarters/sleep/cryo) +"xFx" = ( +/turf/simulated/wall/r_wall/prepainted/medical, +/area/medical/virologyaccess) "xFI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -27500,6 +20245,10 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) +"xFR" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/port) "xGE" = ( /turf/simulated/floor/wood, /area/medical/medbay3) @@ -27510,6 +20259,11 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) +"xGX" = ( +/obj/structure/lattice, +/obj/structure/bookcase, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/aft) "xHk" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -27522,40 +20276,9 @@ }, /turf/simulated/floor/tiled/techmaint, /area/quartermaster/warehouse) -"xHU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "psyche-a-inner"; - name = "Ward A Back Area Access"; - pixel_x = -26; - pixel_y = 24; - req_one_access = list(5) - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "psyche-a-outer"; - name = "Ward A Lockdown"; - pixel_x = -26; - pixel_y = 32; - req_one_access = list(5) - }, -/turf/simulated/floor/tiled, -/area/medical/psych_ward) -"xIw" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/excursion/cockpit) +"xIq" = ( +/turf/simulated/open, +/area/main_map/maintenance/deck_three/forward) "xIG" = ( /obj/structure/fence{ dir = 4 @@ -27575,46 +20298,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/rnd/test_area) -"xJB" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/turf/simulated/floor/reinforced/airless, -/area/rnd/test_area) -"xJG" = ( -/obj/structure/flora/pottedplant/orientaltree, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/deck_three/forward/port) -"xJH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/machinery/camera/network/research, -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"xJS" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) "xKX" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple, /obj/machinery/meter, @@ -27625,22 +20308,22 @@ /obj/structure/flora/tree/jungle, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/hydroponics/garden) -"xLo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"xLl" = ( +/obj/structure/railing, +/obj/structure/lattice, +/turf/simulated/open, +/area/main_map/maintenance/deck_three/starboard) +"xLI" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) -"xLD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/camera/network/command, -/turf/simulated/floor/carpet/bcarpet, -/area/crew_quarters/captain) +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techmaint, +/area/security/prison) "xMz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -27671,39 +20354,19 @@ }, /turf/simulated/floor/wood, /area/tether/exploration/pilot_office) -"xMH" = ( -/obj/machinery/suspension_gen, -/turf/simulated/floor/tiled, -/area/rnd/anomaly_lab) -"xMO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "xNb" = ( /obj/machinery/camera/network/command, /turf/simulated/floor/tiled/techfloor, /area/ai/foyer) -"xNA" = ( -/obj/structure/window/reinforced{ +"xNF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/handrail{ dir = 8 }, -/obj/item/pen, -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/hand_labeler, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/storage) "xNJ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -27714,21 +20377,6 @@ /obj/structure/flora/pottedplant/orientaltree, /turf/simulated/floor/tiled/white, /area/medical/psych) -"xOm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "xOL" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -27741,27 +20389,6 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"xPe" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "xPi" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -27807,14 +20434,13 @@ }, /turf/simulated/floor/tiled, /area/medical/morgue) -"xQX" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 2; - pixel_y = -28 - }, -/turf/simulated/floor/bluegrid, -/area/space) +"xRa" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "xRd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27844,13 +20470,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/security/brig) -"xSj" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "xenobiocoldroom" - }, -/turf/simulated/floor/bluegrid, -/area/rnd/xenobiology) "xSt" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -27862,9 +20481,6 @@ }, /turf/simulated/floor/tiled/steel, /area/security/prison) -"xSx" = ( -/turf/simulated/wall/r_wall, -/area/medical/morgue) "xSy" = ( /turf/simulated/floor/tiled/old_cargo/white, /area/security/brig) @@ -27887,50 +20503,43 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"xTC" = ( -/turf/simulated/wall, -/area/maintenance/deck_three/forward/port) +"xTH" = ( +/obj/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay_primary_storage) "xTN" = ( /obj/machinery/holoplant, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) -"xTX" = ( -/turf/simulated/wall, -/area/crew_quarters/theatre) "xUh" = ( /obj/structure/railing/grey{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/ai/foyer) -"xUD" = ( -/obj/structure/window/reinforced{ +"xUl" = ( +/obj/machinery/light/small{ dir = 8 }, -/obj/machinery/computer/crew{ - dir = 4; - req_one_access = list(5) - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay4) -"xVh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) +"xUy" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/atmospheric_substation/medical) +"xVc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/obj/machinery/conveyor_switch/oneway{ - id = "shuttle_outbound" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "2-4" }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/excursion/cargo) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "xVj" = ( /obj/structure/bed/psych, /turf/simulated/floor/wood, @@ -27970,52 +20579,31 @@ }, /turf/simulated/floor/plating, /area/space) -"xVO" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/obj/effect/floor_decal/borderfloorwhite{ +"xWX" = ( +/obj/structure/closet/secure_closet/genpop, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) -"xWr" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_three) -"xXm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/security/prison) "xXQ" = ( /obj/machinery/light/no_nightshift{ dir = 4 }, /turf/simulated/floor/tiled/monotile, /area/rnd/xenobiology) -"xYa" = ( -/obj/machinery/computer/cryopod/robot{ - dir = 1; - pixel_y = -28 +"xXU" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/forward/starboard) +"xYD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/mech_recharger, -/turf/simulated/floor/bluegrid, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/aft/port) "xYL" = ( /obj/structure/morgue{ dir = 2 @@ -28036,25 +20624,6 @@ /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, /area/medical/virology) -"xZC" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"xZJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/central_three) "yaj" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 @@ -28067,16 +20636,12 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"yan" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 +"yav" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "yaR" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 10 @@ -28096,25 +20661,6 @@ /obj/structure/curtain/open/shower/engineering, /turf/simulated/floor/tiled/white, /area/engineering/gravity_gen) -"ybk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/psych_ward) "ybO" = ( /turf/simulated/floor/reinforced/airless, /area/engineering/engine_eva) @@ -28127,6 +20673,13 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_monitoring) +"ybQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/retro/on, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three) "yce" = ( /obj/effect/floor_decal/techfloor{ dir = 8 @@ -28135,29 +20688,22 @@ /obj/fiftyspawner/steel, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"ycj" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4; - pixel_x = -2 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 3 - }, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/tether/exploration/pilot_office) "ycp" = ( /obj/structure/table/standard, /turf/simulated/floor/wood, /area/security/brig) +"ycN" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "ydr" = ( /obj/machinery/light/no_nightshift, /turf/simulated/floor/wood, /area/medical/psych/psych_1) +"ydK" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_three/forward/starboard) "ydS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28167,34 +20713,47 @@ }, /turf/simulated/floor/tiled/steel, /area/security/brig) +"yer" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/space) +"yfn" = ( +/obj/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) "yfv" = ( /obj/machinery/processor, /turf/simulated/floor/tiled, /area/rnd/xenobiology) -"yfH" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/forward/starboard) "ygf" = ( /obj/machinery/cryopod{ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/sleep/cryo) -"ygh" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/cafeteria) -"ygB" = ( -/turf/simulated/wall/r_wall, -/area/rnd/robotics/surgeryroom1) +"ygv" = ( +/obj/machinery/computer/timeclock/premade/north, +/turf/simulated/floor/wood, +/area/space) "ygJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/bluegrid{ @@ -28221,29 +20780,23 @@ }, /turf/simulated/floor/tiled/white, /area/medical/resleeving) -"yiy" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide, -/turf/simulated/floor/plating, -/area/space) -"yiC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"yhr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck3) +"yix" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/reinforced, +/area/main_map/Hangar_bay/deck2) +"yjh" = ( +/obj/structure/bed/chair/sofa/black/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/space) -"yjq" = ( -/obj/structure/closet/secure_closet/detective, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/lino, -/area/security/detectives_office) +/turf/simulated/floor/wood, +/area/medical/psych_ward) "yjI" = ( /obj/structure/railing{ dir = 8 @@ -28253,15 +20806,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/space) -"yjN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_three/starboard) "yjY" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ @@ -28269,16 +20813,11 @@ }, /turf/simulated/floor/plating, /area/rnd/research) -"ykc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/dark, -/area/space) +"ykj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_three/aft/starboard) "ykH" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -28292,12 +20831,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/theatre) -"ylB" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai) "ylJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -28310,19 +20843,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/test_area) -"ymh" = ( -/obj/machinery/conveyor{ - id = "shuttle_inbound" +"ylN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/plasticflaps, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/excursion/cargo) +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_three/forward/starboard) (1,1,1) = {" vva @@ -28887,22 +21413,22 @@ vva vva vva vva -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -29081,22 +21607,22 @@ vva vva vva vva -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -rah -rah -rah +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -29232,6 +21758,17 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -29264,33 +21801,22 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -29426,6 +21952,17 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -29458,33 +21995,22 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -29620,6 +22146,17 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -29652,33 +22189,22 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -29814,6 +22340,17 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -29845,34 +22382,23 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -lUG -rNw -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -30008,6 +22534,17 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -30039,34 +22576,23 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -uGv -lKH -hMU -hMU -woS -hMU -hMU -hMU -wRg -hMU -hMU -qiZ -uGv -rNw -rNw -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -30186,10 +22712,33 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV vva -wlG -wlG -wlG +vva +vva +vva +vva +vva +vva +vva +vva +vva +vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -30221,46 +22770,23 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -uGv -wOw -hcW -odm -hgC -kCv -kCv -kCv -kCv -kCv -iQI -ven -kKw -cxC -tfv -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -30321,9 +22847,16 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva -dff -dff vva vva vva @@ -30373,6 +22906,11 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -30380,12 +22918,21 @@ vva vva vva vva -uSs vva vva vva -ijf vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -30417,44 +22964,23 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -uyX -vJs -fXd -tdM -guT -nVK -uGv -rNw -rNw -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -30515,11 +23041,16 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva -dff -dff -dff -dff vva vva vva @@ -30569,19 +23100,33 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV vva vva vva vva vva -uSs vva vva vva -ijf vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -30613,42 +23158,23 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -bZd -kCv -kCv -kCv -jyk -lSr -uGv -rNw -rah -rah +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -30709,13 +23235,16 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva -dff -dff -dff -dff -dff -dff vva vva vva @@ -30765,19 +23294,39 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV vva vva vva -uSs vva vva vva -ijf vva vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -30796,9 +23345,6 @@ vva vva vva vva -oTA -oTA -oTA vva vva vva @@ -30806,43 +23352,23 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -bZd -kCv -kCv -kCv -gTK -qGI -uGv -urY -urY -urY +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -30903,22 +23429,23 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva -dff -dff -dff -dff -dff -dff -rGu -dff vva vva vva vva vva +qFt vva -dff vva vva vva @@ -30961,11 +23488,13 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV vva vva -arJ -arJ -arJ vva vva vva @@ -30986,13 +23515,16 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva vva -oTA -oTA -oTA vva vva vva @@ -31002,41 +23534,35 @@ vva vva vva vva +qFt vva vva vva vva vva vva -dff vva vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -hdR -myX -jqg -kCv -jaS -cji -uGv -rNw -rNw -rNw +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -31097,15 +23623,15 @@ vva vva vva vva -vva -dff -dff -dff -dff -dff -nff -gOJ -llX +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31183,12 +23709,12 @@ vva vva vva vva -vva -oTA -oTA -oTA -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31214,23 +23740,23 @@ vva vva vva vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -lEj -wSK -gSP -mtS -qhF -aOk -uGv -kxv -kUO -rNw +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -31291,15 +23817,15 @@ vva vva vva vva -vva -dff -dff -dff -dff -dff -nff -gOJ -llX +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31313,6 +23839,13 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31370,19 +23903,12 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -oTA -oTA -oTA -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31408,23 +23934,23 @@ vva vva vva vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -iyI -kCv -pfh -opM -evl -frd -uGv -rYG -rYG -rYG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -31485,15 +24011,15 @@ vva vva vva vva -vva -dff -dff -dff -dff -dff -nff -gOJ -llX +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31507,15 +24033,15 @@ vva vva vva vva -vie -aNF -aNF -aNF -vie -kWe -kWe -kWe -tot +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31571,12 +24097,12 @@ vva vva vva vva -lyN -oTA -oTA -oTA -lyN -vva +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31602,23 +24128,23 @@ vva vva vva vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -iyI -kCv -kCv -ped -xdm -kCv -qAb -hrI -aCd -hrI +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -31679,15 +24205,15 @@ vva vva vva vva -vva -dff -dff -dff -dff -dff -nff -gOJ -llX +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31701,15 +24227,15 @@ vva vva vva vva -vie -nXX -gDE -vvR -vie -vie -vie -vie -kWe +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31765,12 +24291,12 @@ vva vva vva vva -lyN -jMZ -jMZ -jMZ -lyN -vva +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31796,23 +24322,23 @@ vva vva vva vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -kKK -kCv -lci -ped -gKz -kCv -uGv -mwg -oYP -gyf +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -31873,15 +24399,15 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31895,15 +24421,15 @@ vva vva vva vva -vie -xoD -asC -xFc -pfm -ogM -lkw -vie -kWe +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31959,12 +24485,12 @@ vva vva vva vva -lyN -jMZ -jMZ -jMZ -lyN -vva +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -31990,23 +24516,23 @@ vva vva vva vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -iyI -jYA -uwH -jzF -bzF -otG -dnH -crp -rYG -rYG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -32089,15 +24615,15 @@ vva vva vva vva -vie -lQM -cOv -nPw -hbP -bXA -lgE -bOy -kWe +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -32153,12 +24679,12 @@ vva vva vva vva -lyN -lyN -lyN -lyN -lyN -vva +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -32184,23 +24710,23 @@ vva vva vva vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -lWM -fAb -uwH -ipL -hUI -wCq -uwH -cbQ -kCv -wCW +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -32283,15 +24809,15 @@ vva vva vva vva -vie -bLt -ogM -ogM -fAd -pct -gvo -vie -vie +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -32310,11 +24836,11 @@ dff dff dff dff -dff -sVT -sVT -sVT -sVT +ojV +jWM +jWM +jWM +jWM dff dff wqC @@ -32378,23 +24904,23 @@ vva vva vva vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -kZj -xZC -uwH -huq -oEU -efe -uwH -uGv -kCv -dSb +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -32477,15 +25003,15 @@ vva vva vva vva -vie -sXg -bXA -bXA -lgE -vUv -pfp -qkO -aNF +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -32502,13 +25028,13 @@ dff dff dff dff -sVT -sVT -sVT -sVT -vWE -vWE -sVT +jWM +jWM +jWM +jWM +vny +vny +jWM dff dff dFe @@ -32572,23 +25098,23 @@ vva vva vva vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -iyI -kCv -uwH -alo -hyO -qNQ -uwH -uWX -bGS -kCv +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -32662,24 +25188,24 @@ vva vva vva vva -sVT -sVT -sVT -sVT -sVT +qmG +qmG +qmG +qmG +qmG vva vva vva vva -vie -gvB -bWu -bWu -lKc -dBk -ndf -ucH -aNF +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -32692,17 +25218,17 @@ dff dff dff dff -dff -sVT -sVT -sVT -sVT -vWE -vWE -vWE -vWE -vWE -sVT +ojV +jWM +jWM +jWM +jWM +vny +vny +vny +vny +vny +jWM dff dff mhM @@ -32766,23 +25292,23 @@ vva vva vva vva -vva -lUG -lUG -lUG -lUG -lUG -lUG -xJH -iVF -uwH -kEW -rcB -qNQ -uwH -fuS -lhZ -kCv +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -32854,15 +25380,15 @@ vva vva vva vva -sVT -sVT -sVT -vWE -vWE -vWE -sVT -sVT -sVT +qmG +qmG +qmG +kSY +kSY +kSY +qmG +qmG +qmG vva vva vva @@ -32884,19 +25410,19 @@ dff dff dff dff -sVT -sVT -sVT -sVT -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -sVT +jWM +jWM +jWM +jWM +vny +vny +vny +vny +vny +vny +vny +vny +jWM dff dff gnJ @@ -32960,23 +25486,23 @@ vva vva vva vva -vva -uwH -rnn -iSV -oTH -fjD -dBA -dLS -myX -uwH -xSj -qNQ -qNQ -uwH -fuS -oDD -mPX +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -33047,17 +25573,17 @@ vva vva vva vva -sVT -sVT -vWE -vWE -vWE -vWE -vWE -vWE -vWE -sVT -sVT +qmG +qmG +kSY +kSY +kSY +kSY +kSY +kSY +kSY +qmG +qmG vva vva vva @@ -33075,22 +25601,22 @@ dff dff dff dff -sVT -sVT -sVT -sVT -xBA -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -sVT +jWM +jWM +jWM +jWM +xGX +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +jWM dff dff mhM @@ -33154,23 +25680,23 @@ vva vva vva vva -vva -uwH -tTp -kCv -kCv -kCv -rky -xMO -oSd -uwH -xSj -qNQ -qNQ -uwH -wbo -oDD -kCv +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -33239,21 +25765,21 @@ vva vva vva vva -sVT -sVT -sVT -vWE -vWE -vWE -sVT -lAl -vWE -vWE -vWE -vWE -sVT -sVT -sVT +qmG +qmG +qmG +kSY +kSY +kSY +qmG +cZP +kSY +kSY +kSY +kSY +qmG +qmG +qmG vva vva vva @@ -33269,22 +25795,22 @@ dff dff dff dff -sVT -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -sVT +jWM +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +jWM dff dff gnJ @@ -33308,7 +25834,7 @@ hcS nVL xgU cUh -oSf +lNT hcS hcS xGK @@ -33348,23 +25874,23 @@ vva vva vva vva -vva -ugw -kCv -kCv -mZD -mZD -kCv -shM -wSK -uwH -uwH -uwH -uwH -uwH -apv -fde -kCv +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -33431,54 +25957,54 @@ vva vva vva vva -sVT -sVT -sVT -vWE -vWE -vWE -vWE -vWE -vWE -tFQ -tFQ -vWE -vWE -vWE -vWE -vWE -sVT -sVT -sVT -sVT +qmG +qmG +qmG +kSY +kSY +kSY +kSY +kSY +kSY +pQd +pQd +kSY +kSY +kSY +kSY +kSY +qmG +qmG +qmG +qmG sVT sVT sVT sVT dff dff -vie -vie -vie +mVx +mVx +mVx dff bYV dff -sVT -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -sVT +jWM +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +jWM dff dff mhM @@ -33543,22 +26069,22 @@ sVT vva vva vva -ugw -bFB -kCv -mZD -mZD -kCv -gcJ -kCv -tJa -dQQ -ifP -sRn -fRP -acC -sxs -nZd +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -33624,55 +26150,55 @@ vva vva vva dff -sVT -sVT -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE +qmG +qmG +kSY +kSY +kSY +kSY +kSY +kSY +kSY +kSY +kSY +kSY +kSY +kSY +kSY +kSY +kSY +kSY +kSY +kSY +kSY vWE vWE vWE vie -vie +mVx pxE -vie +mVx uzs -vie +mVx dff bYV dff -sVT -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -sVT +jWM +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +jWM dff dff gnJ @@ -33737,22 +26263,22 @@ bCw fBa drw vva -uwH -bFB -kCv -mZD -mZD -kCv -gcJ -sVr -iyb -ifq -oGK -lar -lGd -jsf -nfm -ngX +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -33818,55 +26344,55 @@ vva vva vva dff -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -nuk -vWE -vWE -bIt -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -vie -vie -vie -vie -vie +qmG +qmG +qmG +qmG +qmG +qmG +qmG +qmG +aTt +kSY +kSY +izE +qmG +qmG +qmG +qmG +qmG +qmG +qmG +qmG +qmG +mVx +mVx +mVx +mVx +mVx bZH sbJ bdf -vie +mVx dff bYV dff -sVT -vWE -vWE -vWE -vWE -vWE -oVx -paZ -xDd -wWN -vWE -vWE -vWE -vWE -vWE -sVT +jWM +vny +vny +vny +vny +vny +bMK +eTk +kEO +keQ +vny +vny +vny +vny +vny +jWM dff dff mhM @@ -33907,46 +26433,46 @@ rre dff dff dff -aEV -sAE -sAE -jdS -sAE -sAE -sAE -jdS -sAE -sAE -sAE -jdS -sAE -sAE -sAE -jdS -sAE -sAE -sAE -cjv -uwH -uwH +mUe +opN +opN +xbW +opN +opN +opN +xbW +opN +opN +opN +xbW +opN +opN +opN +xbW +opN +opN +opN +qjY +aje +aje cUp vva -ugw -dmW -qDd -cLB -gJL -pJm -pns -qwx -ctg -ekF -gyE -foQ -fRP -uwH -uwH -uwH +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -34012,55 +26538,55 @@ vva vva vva dff -sVT -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -bsW -oAu +qmG +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +mVx +lPi pet xMG aNF bZH aUy npC -vie +mVx dff bYV dff -sVT -vWE -vWE -vWE -vWE -vWE -hMt -sKV -wWN -wWN -vWE -vWE -vWE -vWE -vWE -sVT +jWM +vny +vny +vny +vny +vny +wsf +ikZ +keQ +keQ +vny +vny +vny +vny +vny +jWM dff dff gnJ @@ -34101,16 +26627,16 @@ rre dff bYV dff -uGv +gLg dwG aZd eqa kpf -uwH +aje dwG eqa kpf -uwH +aje eEb eqa aZd @@ -34118,29 +26644,29 @@ cdt dwG eqa kpf -uwH +aje dwG eqa kpf -uwH +aje cUp vva -ugw -lSo -smW -gSH -hRD -wPh -uyK -uyK -rJR -ifq -rqo -foQ -fRP -tHl -sRM -sgC +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -34206,27 +26732,27 @@ vva vva vva dff -sVT -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -vQa +qmG +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +cos aNF oUB asC @@ -34235,26 +26761,26 @@ bsW nQJ aNF aNF -vie +mVx dff bYV dff -sVT -vWE -vWE -vWE -vWE -vWE -isq -wWN -wWN -wWN -vWE -vWE -vWE -vWE -vWE -sVT +jWM +vny +vny +vny +vny +vny +nKb +keQ +keQ +keQ +vny +vny +vny +vny +vny +jWM dff dff mhM @@ -34272,7 +26798,7 @@ rre siX sjz sjz -eZz +cnL fDA xIG ptx @@ -34280,7 +26806,7 @@ aTB grs iDM hcS -cZH +bAl dVc kWL jDg @@ -34295,16 +26821,16 @@ rre dff bYV dff -uGv +gLg aZd aZd aZd qth -uwH +aje aZd aZd qth -uwH +aje qth aZd aZd @@ -34312,11 +26838,11 @@ cdt aZd gAi qth -uwH +aje aZd gAi qth -uwH +aje cUp vva vva @@ -34328,11 +26854,11 @@ vva vva vva vva -lyN -oTA -oTA -oTA -lyN +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -34400,27 +26926,27 @@ vva sVT sVT dff -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos aNF mJk nnl @@ -34429,26 +26955,26 @@ pfm ogM ogM jyQ -vie +mVx dff bYV dff -sVT -vWE -vWE -vWE -vWE -vWE -xwq -wWN -wWN -wWN -vWE -vWE -vWE -vWE -vWE -sVT +jWM +vny +vny +vny +vny +vny +hjD +keQ +keQ +keQ +vny +vny +vny +vny +vny +jWM dff dff bYV @@ -34489,16 +27015,16 @@ rre dff bYV dff -uGv +gLg aZd aZd aZd qth -uwH +aje aZd aZd qth -uwH +aje qth aZd aZd @@ -34506,11 +27032,11 @@ cdt aZd aZd qth -uwH +aje aZd aZd qth -uwH +aje cUp sVT sVT @@ -34522,11 +27048,11 @@ vva vva vva vva -lyN -oTA -oTA -oTA -lyN +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -34594,55 +27120,55 @@ dff dff dff dff -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -vie +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +mVx aNF aNF -vie +mVx hbP bXA bXA thw -vie +mVx dff bYV dff -sVT -vWE -vWE -vWE -vWE -vWE -bIE -bXv -wWN -wWN -vWE -vWE -vWE -vWE -sVT -sVT +jWM +vny +vny +vny +vny +vny +jje +doQ +keQ +keQ +vny +vny +vny +vny +jWM +jWM sVT dff dff @@ -34683,28 +27209,28 @@ rre dff bYV dff -uGv +gLg skX skX luL bQc -uwH +aje skX xrN bQc -uwH +aje bQc cxK skX -uwH +aje skX too bQc -uwH +aje skX bUR bQc -uwH +aje cUp dff dff @@ -34716,11 +27242,11 @@ vva vva vva vva -lyN -oTA -oTA -oTA -lyN +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -34788,55 +27314,55 @@ dff dff dff dff -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos vNt jMZ jMZ aNF -hbP -bXA +fiW +mdq bXA qHk -vie +mVx dff bYV dff -sVT -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -sVT -sVT +jWM +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +jWM +jWM sVT dff dff @@ -34872,33 +27398,33 @@ xSy dvX xSy dvX -oQA +oPw rre dff bYV dff -uGv +gLg dyx jPo elz fLa -uwH +aje jPo elz fLa -uwH +aje fTu elz ugA -uwH +aje aVI elz fLa -uwH +aje jPo elz fLa -uwH +aje ciN fBa fBa @@ -34910,11 +27436,11 @@ vva vva vva vva -lyN -oTA -oTA -oTA -lyN +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -34982,55 +27508,55 @@ dff sVT sVT sVT -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos vNt jMZ jMZ aNF hbP -gEA +wUU bXA ezE -vie +mVx dff bYV dff -sVT -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -sVT -sVT +jWM +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +jWM +jWM sVT dff dff @@ -35071,7 +27597,7 @@ rre dff bYV dff -uGv +gLg hMU hMU hMU @@ -35092,7 +27618,7 @@ wRg hMU hMU iHw -uwH +aje sVT sVT sVT @@ -35104,11 +27630,11 @@ vva vva vva vva -lyN -oTA -oTA -oTA -lyN +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -35170,61 +27696,61 @@ vva vva vva vva -dff +qFt dff dff sVT sVT sVT -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -sVT +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +nQj dNp dNp -vie -hbP -gEA +mVx +mri +mAs bXA mQs -vie +mVx dff bYV dff -sVT -vWE -vWE -vWE -vWE -vWE -vWE -qEY -paZ -vWE -vWE -vWE -vWE -vWE -vWE -sVT +jWM +vny +vny +vny +vny +vny +vny +cgK +eTk +vny +vny +vny +vny +vny +vny +jWM dff dff bYV @@ -35265,7 +27791,7 @@ rre dff bYV dff -uGv +gLg kCv kCv kCv @@ -35286,23 +27812,23 @@ myX kCv kCv wFN -uwH +aje sVT sVT sVT cUp dff -dff +qFt vva vva vva vva vva -lyN -vva -vva -vva -lyN +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -35370,27 +27896,27 @@ dff sVT sVT sVT -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos iJv pVf pVf @@ -35399,26 +27925,26 @@ hbP gEA bXA mQs -vie +mVx dff bYV dff -sVT -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -sVT +jWM +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +jWM dff dff gnJ @@ -35459,7 +27985,7 @@ rre dff bYV dff -uGv +gLg kCv kCv kCv @@ -35480,7 +28006,7 @@ kCv kCv kCv kCv -uwH +aje sVT sVT sVT @@ -35492,11 +28018,11 @@ vva vva vva vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -35564,27 +28090,27 @@ nff ciN dff kSx -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos pVf pVf pVf @@ -35593,26 +28119,26 @@ liP kCX pct agK -vie +mVx dff bYV dff -sVT -vWE -etR -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -vWE -sVT +jWM +vny +oIF +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +vny +jWM dff dff mhM @@ -35634,7 +28160,7 @@ hcS iPw hcS mKh -rFZ +avV fDS iPG hcS @@ -35653,7 +28179,7 @@ rre dff bYV dff -uGv +gLg wUe ttW gSP @@ -35672,9 +28198,9 @@ xXQ akT kCv kCv -rrJ +npx otG -uwH +aje dTX rGu fJB @@ -35758,55 +28284,55 @@ nff ciN unQ dff -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -sVT +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +nQj osk osk -vie -bsW +mVx +mVx aaO aNF -bsW -vie +mVx +mVx dff bYV dff -sVT -lyN -uqS -lyN -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT +jWM +xdq +uAG +xdq +jWM +jWM +jWM +jWM +jWM +jWM +jWM +jWM +jWM +jWM +jWM +jWM sVT dff gnJ @@ -35847,7 +28373,7 @@ rre dff bYV dff -uGv +gLg uwH uwH uwH @@ -35866,9 +28392,9 @@ evz akT kCv qWZ -uwH +aje bQc -uwH +aje dff dff dff @@ -35952,27 +28478,27 @@ vva sVT cUp sVT -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos vNt pVf pVf @@ -35985,11 +28511,11 @@ cmq dff bYV dff -tMC -neW -cMi -phA -tMC +cKv +cNP +xYD +qvM +cKv dff dff dff @@ -36041,7 +28567,7 @@ dff dff bYV dff -uGv +gLg pXA hpl pDZ @@ -36053,7 +28579,7 @@ qKh iyb hbl jHl -jHl +xad xPi nrT iyb @@ -36061,8 +28587,8 @@ akT kCv yfv skX -mQk -uwH +sQF +aje dff sVT sVT @@ -36146,27 +28672,27 @@ vva rPk cUp dff -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos vNt bmG bmG @@ -36179,11 +28705,11 @@ cmq dff bYV dff -tMC -neW -iOG -neW -tMC +cKv +cNP +nzw +cNP +cKv bYV bYV bYV @@ -36220,7 +28746,7 @@ bYV bYV bYV rre -cZH +bAl qjd uBW rre @@ -36235,7 +28761,7 @@ bYV bYV bYV dff -tNN +fLv iul hpl hpl @@ -36255,8 +28781,8 @@ uie mtS kPN azA -hUy -uwH +fGz +aje dff vva vva @@ -36264,17 +28790,17 @@ vva vva vva vva -fzg -ftO -ftO -ftO -lPO -lPO -lPO -lPO -mpY -dzX -tlx +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -36340,31 +28866,31 @@ vva rPk cdq dff -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -sVT -sVT -sVT -sVT +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +nQj +nQj +nQj +nQj pVf lhX asI @@ -36373,11 +28899,11 @@ cmq dff bYV dff -tMC -phA -iOG -phA -tMC +cKv +qvM +nzw +qvM +cKv dff dff dff @@ -36429,7 +28955,7 @@ dff dff dff dff -uGv +gLg qGh xje jmG @@ -36448,9 +28974,9 @@ jHl jHl ped iQI -art -pHc -uwH +eRr +jUD +aje dff vva vva @@ -36458,17 +28984,17 @@ vva vva vva vva -xMH -ftO -ftO -uSZ -lPO -sfg -kht -qUP -qGG -tgm -knx +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -36534,27 +29060,27 @@ vva vva rah dff -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos iJv pVf pVf @@ -36563,22 +29089,22 @@ pVf lhX asI asI -tMC -tMC -tMC -tMC -tMC -kZb -ppx -kZb -tMC -tMC -tMC -tMC -tMC -tMC -tMC -tMC +dFJ +cKv +cKv +cKv +cKv +hyW +raD +hyW +cKv +cKv +cKv +cKv +cKv +cKv +cKv +cKv iTP iTP iTP @@ -36618,21 +29144,21 @@ rre rre rre rre -mRJ -mRJ -mRJ -mRJ -mRJ -uGv -uwH -uwH -uwH -uwH -uwH -uwH +oCb +oCb +oCb +oCb +oCb +gLg +aje +aje +aje +aje +aje +aje rmv -uwH -uwH +aje +aje mxF jHl jHl @@ -36642,9 +29168,9 @@ jHl jHl evl opM -uwH -uwH -uwH +aje +aje +aje rah vva vva @@ -36652,17 +29178,17 @@ vva vva vva vva -xMH -ftO -ftO -wSv -lPO -dDv -xCA -oYp -omf -axK -sdG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -36728,51 +29254,51 @@ vva vva rah dff -oWD -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -dlT -tzl -tzl +jeM +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +eVa tzl tzl tzl +qFr tzl +mFY mKB mKB -qZO -iIV -etj -phA -kZb -fkx -jcA -eCu -xwi -phA -phA -phA -phA -taR -phA -phA +gMZ +ksH +erV +qvM +hyW +bOc +huS +hxF +aLq +qvM +qvM +qvM +qvM +rCO +qvM +qvM iTP lKy lKy @@ -36812,21 +29338,21 @@ rre sVh jFV rre -udW -udW -lhK -udW -udW -khX -elw -udW -udW -udW -ofa -udW -upO -udW -uwH +nDe +nDe +dWB +nDe +nDe +dPN +eey +nDe +nDe +nDe +xAK +nDe +eSK +nDe +aje mxF xjO jHl @@ -36838,7 +29364,7 @@ eRK gWu rBp ppe -uwH +aje rah vva vva @@ -36846,17 +29372,17 @@ vva vva vva vva -dRq -ftO -ftO -ftO -lPO -seV -lOD -rvk -lOD -rTJ -lLB +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -36922,51 +29448,51 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -aRI +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +gDb xzI xzI mbE -gHC -gHC +gDb +gDb asI -lyN -xwi -phA -aBw -fNg -lUf -uxx -suJ -pVC -iIV -iIV -wTD -aFp -aFp -sFF -neW -neW +nQj +dFJ +qvM +lRl +sWu +jXa +gqu +frY +mkp +ksH +ksH +mXH +mkW +mkW +qAL +cNP +cNP wha xpm xpm @@ -37006,23 +29532,23 @@ rre fgj rre rre -udW -udW -lhK -gWN -udW -vrl -umB -lqw -lqw -lqw -lDy -upO -upO -upO -uwH +nDe +nDe +dWB +ths +nDe +dlL +fNv +ykj +ykj +ykj +xjj +eSK +eSK +eSK +aje knt -hpz +mJM eXz jXG awI @@ -37032,7 +29558,7 @@ wSK kCv hgH ual -uwH +aje rah vva vva @@ -37040,17 +29566,17 @@ vva vva vva vva -cek -ftO -ftO -ftO -lPO -udF -lOD -lOD -lOD -vdL -mTw +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -37116,28 +29642,28 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -aRI +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +gDb btT jXZ sBc @@ -37145,22 +29671,22 @@ jXZ sho asI asI -xwi -phA -neW -phA -xwi -kjC -neW -xfn -kZb -phA -psY -phA -phA -phA -phA -phA +dFJ +lfp +rsH +bDW +qvM +dOe +cNP +iDn +hyW +qvM +boH +qvM +qvM +qvM +qvM +qvM iTP lKy xpm @@ -37195,38 +29721,38 @@ ufg bIM hcS foM -jqs +wkm bON xiJ rre -udW -udW -udW -lhK -pSM -lqw -mEt -elw -upO -udW -apE -tfg -udW -udW -upO -uwH -uwH -uwH -uwH -uwH +nDe +nDe +nDe +dWB +msQ +ykj +rgf +eey +eSK +nDe +qYE +pwi +nDe +nDe +eSK +aje +aje +aje +aje +aje bRL evz -uwH +aje kCv kCv hgH exK -uwH +aje rah vva vva @@ -37234,17 +29760,17 @@ vva vva vva vva -ftO -rUC -aPb -wLz -lPO -wvs -bco -rFy -wiB -aaf -lOD +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -37310,51 +29836,51 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos xzI wTa wTa qPx jXZ -gHC +gDb asI asI -xwi -phA -neW -neW -xwi -phA -neW -neW -xwi -uTd -klg -phA -ngI -klg -tpr -nlh +dFJ +rjm +fpS +bDW +qvM +qvM +cNP +cNP +aLq +eLh +nLI +tzv +hhq +nLI +iaY +vAR iTP oyE lau @@ -37393,29 +29919,29 @@ poi xiJ jRq rre -udW -udW -udW -lhK -fdL -udW -lyG -hcb +nDe +nDe +nDe +dWB +vPw +nDe +mcu +dbO cXj -sUg -ooN -ooN -ooN -ooN -upO -udW -udW -udW -udW -gUW +jzz +aDu +aDu +aDu +aDu +eSK +nDe +nDe +hZU +dKw +iqq xMz uRt -uwH +aje kCv kCv fcv @@ -37428,17 +29954,17 @@ vva vva vva vva -kIO -kIO -kIO -kIO -lPO -udF -sAj -poT -owf -nJQ -lMr +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -37504,57 +30030,57 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos xzI jwm smy -sBc +uwN nMi -gHC +gDb asI asI -xwi -xwi -neW -xwi -xwi -icv -icv -icv -icv -icv -icv -icv -icv -icv -kyL -kyL -kyL -kyL +dFJ +rjm +oCJ +bDW +aLq +gNU +gNU +gNU +gNU +gNU +gNU +gNU +gNU +gNU +jzg +jzg +jzg +jzg bbl -kyL -kyL -kyL +jzg +jzg +jzg cBh tvG dfU @@ -37567,13 +30093,13 @@ cBh mTG sVT rre +gaB bIM bIM bIM bIM bIM -bIM -mmv +muL bIM bIM bIM @@ -37587,34 +30113,34 @@ xqw naB vxF rre -udW -udW -udW -lhK -fdL -udW -sUg +nDe +nDe +nDe +dWB +vPw +nDe +jzz qup qpM -sUg +jzz niE nsN -puN -ooN -upO -upO -upO -upO -upO +cix +aDu +eSK +eSK +eSK +eSK +eSK dDD wFj rmn -uwH +aje wPh wPh jkS jkS -uwH +aje rah vva vva @@ -37622,17 +30148,17 @@ vva vva vva vva -vva -eZG -tMQ -lPO -bfN -bfN -sAj -lOD -lOD -lOD -nQI +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -37698,46 +30224,46 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -aRI +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +gDb gxi -jXZ -jXZ +kWj +mKL dKj -gHC +gDb asI asI -xwi -phA -neW -phA -phA -icv +dFJ +rjm +fpS +bDW +qvM +gNU tcK sIT iUQ lzd -tNc +ass dTg sIT gTx @@ -37748,7 +30274,7 @@ moZ fRt wbJ oXn -kyL +jzg rvn oaT oaT @@ -37761,8 +30287,8 @@ ioF mTG vWE rre -lsy -lsy +tVU +hsO lsy lsy lsy @@ -37781,34 +30307,34 @@ lsy lsy lsy rre -udW -udW -udW -lhK -fdL -udW -sUg +nDe +nDe +nDe +dWB +vPw +nDe +jzz sXp qpM -sUg +jzz bcl oWF qkh -ooN -udW -udW -apE -udW -udW -gUW +aDu +nDe +nDe +qYE +nDe +nDe +iqq wFj rmn -lPO -lPO -lPO -lPO -lPO -lPO +foL +foL +foL +foL +foL +foL rah vva vva @@ -37816,17 +30342,17 @@ vva vva vva vva -vva -xjs -dtX -iBa -jsU -dnu -gFg -scZ -scZ -xiY -bjB +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -37892,41 +30418,41 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -aRI +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +gDb gsM uRJ qto gSo -gHC +gDb asI asI -xwi -phA -neW -phA -phA -icv +dFJ +rjm +fpS +bDW +qvM +gNU jGU sIT fJt @@ -37935,14 +30461,14 @@ sIT sJr sIT cRw -kyL +jzg pOC -mIg -kyL +ftF +jzg dnk exk jPL -kyL +jzg ybO ybO gLk @@ -37954,55 +30480,55 @@ ybO ybO mTG vWE -vWE +sVT +mjZ +kep lsy -uHe -spb -lsy -uHe -spb -lsy -uHe -spb +xWX +cHQ +rIo +xWX +cHQ +rIo lsy kej tvM avm mWX -hmL -mkA -oWq -hUe +xLI +lXa +cHQ +rlc lsy -elw -elw -elw -elw -elw -lhB -gvk -sUg -hwm +eey +eey +eey +eey +eey +sQp +vsl +jzz +dAP upZ -sUg -sUg +jzz +jzz avx xRd -sUg -sUg -sUg -sUg -sUg -udW -gUW +jzz +jzz +jzz +jzz +jzz +nDe +iqq pAZ rmn -lPO +foL sfg kht -hFy +heB tTj -lPO +foL rah vva vva @@ -38010,17 +30536,17 @@ vva vva vva vva -lPO -lPO -lPO -lPO -lPO -kPG -efY -flO -flO -lOD -flO +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -38086,57 +30612,57 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -tMC -xwi -xwi -xwi -xwi -xwi -xwi -xwi -xwi -phA -neW -cqW -phA -icv +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +dFJ +dFJ +dFJ +dFJ +dFJ +dFJ +dFJ +dFJ +dFJ +ktu +dtO +bDW +qvM +gNU irh -wBq +iNA fJt fJt sIT qhv sIT sKP -kyL -kyL -kyL -kyL +jzg +jzg +jzg +jzg sij exk fot -kyL +jzg uEO uEO gLk @@ -38148,16 +30674,16 @@ uEO uEO mTG vWE -vWE +sVT +mjZ +mjZ lsy -jSo -qrb -fDD -cgb -wfI -pDM -jSo -rMb +xWX +cHQ +rIo +xWX +cHQ +rIo lsy llP upr @@ -38168,35 +30694,35 @@ jbo wPq mxt iLO -qhr -qhr -hzj -upf -elw -fdL -udW -sUg +neC +neC +teW +teS +eey +vPw +nDe +jzz iOW xKX rUm -sUg +jzz ixQ jMB kpL frn frn tUL -sUg -pnz -gUW +jzz +non +iqq fJO wNi -lPO +foL sIC lOD lOD xVK -lPO +foL rah vva vva @@ -38204,17 +30730,17 @@ vva vva vva vva -prX -plO -uAf -scS -xJB -mrJ -lOD -gtz -gtz -sxZ -jHf +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -38280,41 +30806,41 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -tMC -phA -phA -phA -phA -phA -phA -phA -phA -phA -neW -cqW -phA -icv +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +cKv +cNP +cNP +cNP +cNP +cNP +cNP +cNP +cNP +bDW +bDW +bDW +cNP +gNU gvK gaq ygJ @@ -38330,7 +30856,7 @@ lTX omL bHu iRT -kyL +jzg mTG mTG iVS @@ -38342,34 +30868,34 @@ mTG mTG mTG vWE -vWE +sVT +mjZ +mjZ lsy -xwB -ehu -lsy -uiB -ehu -lsy -xwB -ehu +gKR +cHQ +gwQ +gKR +cHQ +gwQ lsy hGG xtV rPn aZc uHP -gNe -oWq -oWq +dyu +cHQ +cHQ lsy -udW -oRl -vjT -iRD -cEl -fUc -qsD -sUg +dKw +ltA +thq +ueY +xRa +txN +bUa +jzz iOW iEJ mMB @@ -38377,20 +30903,20 @@ mzh uhr rAV hja -sUg -sUg -sUg -sUg -gUW -gUW -eIf +jzz +jzz +jzz +jzz +iqq +iqq +cpz rmn -lPO +foL udF jmq qHZ bfN -lPO +foL rah vva vva @@ -38398,17 +30924,17 @@ vva vva vva vva -rwY -hrH -hxw -fLx -kwB -iBj -htX -osM -gtz -qQA -ipq +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -38474,48 +31000,48 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -tMC -neW -neW -neW -ttq -neW -neW -neW -neW -neW -ttq -cqW -phA -icv +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +cKv +cNP +qvM +qvM +bkR +qvM +qvM +qvM +qvM +uAJ +vBl +tfK +cNP +gNU cUm sIT fJt nrM sIT clW -vzs +iEg rpv qtn pfF @@ -38524,7 +31050,7 @@ lTX cQB exk cyt -kyL +jzg lgI oaT oaT @@ -38536,18 +31062,18 @@ ugh ouC mTG vWE -vWE -lsy -seZ -lsy -lsy -cpo -lsy -lsy -maO -lsy -lsy -jxG +sVT +mjZ +mjZ +mjZ +mjZ +mjZ +mjZ +mjZ +mjZ +mjZ +vuQ +fYC uYO dTn aZc @@ -38556,22 +31082,22 @@ lsy lsy lsy lsy -udW -apE -cuK -lNE -elw -fdL -udW -sUg -bdT +hZU +qYE +tja +lUr +eey +vPw +nDe +jzz +kPW iEJ jbJ -sUg +jzz ogo ath xBv -sUg +jzz kuI kuI kuI @@ -38579,30 +31105,30 @@ dms vWD opJ rmn -lPO +foL dVQ hRt lOD bfN -lPO -lPO +foL +foL vva vva vva vva vva vva -rwY -plO -hxw -uWQ -auY -aEQ -lOD -lOD -gtz -vFM -bBo +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -38668,41 +31194,41 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -tMC -neW -phA -xwi -tMC -tMC -tMC -tMC -tMC -tMC -tMC -tMC -tMC -icv +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +cKv +egQ +aLq +aLq +cKv +cKv +cKv +cKv +cKv +cKv +cKv +cKv +cKv +gNU uih sIT uOL @@ -38711,14 +31237,14 @@ sIT poP sIT hgb -kyL +jzg obA xdN xdN ucc exk cyt -kyL +jzg jMp hLM ybO @@ -38730,42 +31256,42 @@ otp rSy mTG vWE -vWE +sVT +mjZ +mjZ +ust +xez +xez +xez +xez +xez +xez +kGK +uHY +uHY +hxo +vop lsy -sQq -isC -jSo -gPz -gIT -jrr -sQq -bYa -ust -ust -ust -gQr -aZc -lsy -vFY -sbL -vKR -elw -elw -elw -elw -elw -elw -fdL -udW -sUg +prW +lfA +mqY +eey +eey +eey +eey +eey +eey +wsT +nDe +jzz nik tEr qpM -sUg -gEd +jzz +hRu ugg eDE -sUg +jzz kuI kuI kuI @@ -38773,30 +31299,30 @@ ohs fSB mTq rmn -lPO +foL udF hRt lOD lOD lMr -lPO +foL vva vva vva vva vva vva -rwY -hrH -iwg -bLP -kwB -mbC -owv -lOD -gtz -oue -lmp +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -38862,32 +31388,32 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -hmj -cUO -vBb -vBb -hmj +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +psP +bHk +jeo +jeo +psP jMZ jMZ sVT @@ -38896,7 +31422,7 @@ bYV bYV bYV bYV -icv +gNU fVI sIT unz @@ -38905,92 +31431,92 @@ sIT rrN sIT fJt -kyL -mTJ +jzg +vJE wFO twW sTJ exk fmR -kyL -qbh -qbh -qbh +jzg +xEJ +xEJ +xEJ psf psf psf -qbh -qbh -qbh -qbh +xEJ +xEJ +xEJ +xEJ vWE -vWE -lsy -cwV -oJd -lcV -vje -uHY -jzU -fCs -uHY -uHY -uHY -uHY -hxo +sVT +mjZ +mjZ +mjZ +mjZ +mjZ +mjZ +mjZ +mjZ +dOm +mBU +ust +ust +ust kej lsy -udW -udW -udW -lhK -udW -udW -udW -pZS -elw -wyn -tuo -sUg -sUg -sUg -sUg -sUg -sUg +nDe +nDe +nDe +dWB +nDe +nDe +nDe +ilQ +eey +rNM +qHS +jzz +jzz +jzz +jzz +jzz +jzz xDI -sUg -sUg +jzz +jzz emk -gUW +iqq emk -gUW -gUW +iqq +iqq vQH rmn -lPO +foL sZZ gVa rzh lOD nQI -lPO +foL vva vva vva vva vva vva -rwY -plO -hxw -uWQ -auY -mdV -idh -wQR -nuo -kfB -osM +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -39056,57 +31582,57 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -hmj -cUO -vBb -vBb -hmj +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +psP +bHk +jeo +jeo +psP jMZ -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -kyL -kyL -kyL -kyL -kyL +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +jzg +jzg +jzg +jzg +jzg wEF -mrh -kyL +kLO +jzg nLn ilW ybP @@ -39116,10 +31642,9 @@ ihc efP maA nLn -qbh -qbh -qbh -lsy +xEJ +xEJ +xEJ lsy lsy lsy @@ -39130,23 +31655,24 @@ iDP lsy lsy lsy +lsy cGy cGy lsy lsy -oGI -udW -udW -udW -udW -udW -pZS -udW -elw -fdL -udW -fEk -fEk +bDB +nDe +nDe +nDe +nDe +nDe +ilQ +nDe +eey +vPw +nDe +iqq +iqq dvl vyf geF @@ -39161,7 +31687,7 @@ vYz qoR wFj rmn -lPO +foL blr mtk chN @@ -39174,17 +31700,17 @@ vva vva vva vva -prX -hrH -beg -scS -oaX -eSB -lPO -lPO -lPO -lPO -seV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -39250,34 +31776,34 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -hmj -cUO -vBb -vBb -hmj +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +psP +bHk +jeo +jeo +psP sVT -bsG +dfd fxX fxX fxX @@ -39292,11 +31818,11 @@ wPm fxX fxX fxX -bsG -jMZ -sVT -vWE -qbh +dfd +cZD +iMU +oVx +xEJ kZq cSu mAg @@ -39310,36 +31836,36 @@ mAg vZR mAg fmq -jWP -edJ -qbh -xWr -xWr -xWr -xWr -xWr -xWr -cmP -jdi -jdi -xWr +pTQ +erC +xEJ +oCE +oCE +nSZ +tpN +tpN +fCk +dyA +dyA +oCE +lzR lsy tux tux lsy -mjk -udW -udW -udW -lhK -udW -udW -udW -pZS -elw -fdL -udW -fEk +nMQ +nDe +nDe +nDe +dWB +nDe +nDe +nDe +ilQ +eey +vPw +nDe +iqq qlk jYZ hpQ @@ -39368,17 +31894,17 @@ vva vva vva vva -lPO -lPO -lPO -lPO -lPO -lPO -lPO -une -lPO -lPO -lPO +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -39444,34 +31970,34 @@ vva vva rah dff -oWD -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -hmj -cUO -vBb -bVE -hmj +jeM +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +psP +bHk +jeo +bwU +psP bYV -bsG +dfd fxX lhH cYJ @@ -39486,11 +32012,11 @@ cYJ cYJ lhH fxX -bsG -jMZ -qbh -qbh -qbh +dfd +hZy +xEJ +xEJ +xEJ tRh cWW wRr @@ -39504,36 +32030,36 @@ did nXr did jiS -nLn -gTc -qbh -xWr -xWr -xWr -xWr -xWr -xWr -cmP -jdi -jdi -xWr +lSC +eKh +xEJ +oCE +oCE +wSX +pDI +pDI +uFT +dyA +dyA +oCE +gHG lsy dax dax lsy -oKf -tvy -udW -hyB -lhK -pZS -udW -udW -pZS -elw -fdL -udW -fEk +cqg +wrO +nDe +kgS +dWB +ilQ +nDe +nDe +ilQ +eey +vPw +nDe +iqq dpj hZT bJx @@ -39543,7 +32069,7 @@ vsF xwb pnf pnf -pnf +abz pnf pnf pnf @@ -39563,16 +32089,16 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -39638,34 +32164,34 @@ vva vva rah dff -oWD -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -hmj -cUO -vBb -vBb -hmj +jeM +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +psP +bHk +jeo +jeo +psP bYV -bsG +dfd fxX cYJ fxX @@ -39680,9 +32206,9 @@ fxX fxX cYJ fxX -bsG -jMZ -qbh +dfd +cZD +xEJ cgd ian hDQ @@ -39699,34 +32225,34 @@ hWz xTg fIj nLn -gTc -qbh -xWr -xWr -cmP -cmP -vUL -cmP -cmP -jdi -jdi -xWr +nLn +jHI +hEY +hEY +dRj +dyA +dyA +dyA +dyA +dyA +oCE +pdv lsy lsy lsy lsy -elw -elw -elw -elw -elw -elw -elw -elw -elw -elw -gbW -cVE +eey +eey +eey +eey +eey +eey +eey +eey +eey +eey +wrX +dfa raT emG emG @@ -39743,23 +32269,13 @@ knu knu mWS gzl -lPO +foL sIC vwV cUN eaE bjB -lPO -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva +foL vva vva vva @@ -39767,6 +32283,16 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -39832,34 +32358,34 @@ vva vva rah dff -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -hmj -cUO -vBb -vBb -hmj +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +psP +bHk +jeo +jeo +psP bYV -bsG +dfd fxX bHo fxX @@ -39874,54 +32400,54 @@ fxX fxX bHo fxX -bsG -dff -qbh -qbh -qbh -qbh -qbh -qbh +dfd +hZy +xEJ +xEJ +xEJ +xEJ +xEJ +xEJ hwI -qbh +xEJ sdT jiS -gLv -rKl +gTc +gTc aol evI wSL xVC wSL wSL -qbh -xWr -xWr -cmP -jdi -jdi -jdi -jdi -jdi -jdi -jdi -qMa -upO -jEZ -phD -phD -phD -vzI -vau -vau -vau -tDi -vau -wHH -vau -pKL -imU -fEk +xEJ +oCE +oCE +nSZ +oJF +oJF +waf +dyA +hEY +hEY +hEY +ujK +eSK +nRV +tsd +tsd +tsd +xVc +oiL +kMD +iCp +wVX +kMD +ipp +kMD +jjB +oNC +iqq uMP jYZ auB @@ -39929,38 +32455,38 @@ gVf gVf oKs qzO -lih -ctw -ctw -ctw -ctw +vnY +jZC +jZC +jZC +jZC egS rqb egS -ygB -lPO -lPO -lPO -lPO +dhv +foL +foL +foL +foL oAS -lPO +foL vva vva vva vva vva vva -tMu -csz -kpX -jTd -aJP -tUi -tUi -lyN -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -40026,34 +32552,34 @@ vva rPk qqh dff -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -vQa -hmj -cUO -vBb -vBb -hmj +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +cos +psP +bHk +jeo +jeo +psP bYV -bsG +dfd fxX bHo fxX @@ -40068,18 +32594,18 @@ mXM gwi xDS fxX -bsG -dff -sVT +dfd +iMU +vWE vWE vWE lyN eym tbw -eZP -sVT +bmJ +bQV sdT -lOT +jiS wSL wSL wSL @@ -40088,73 +32614,73 @@ bgR pkO ohO wSL -cmP -xWr -xWr -cmP -jdi -jdi -jdi -jdi -jdi -jdi -jdi -upO -upO -uLZ -upO -upO -upO -irX -upO -upO -upO -iXs -upO -upO -upO -upO -imU -fEk -fEk -eew +nSZ +wyl +lzR +nSZ +tpN +tpN +fCk +dyA +hEY +hEY +hEY +ujK +eSK +tDD +eSK +eSK +eSK +oUk +eSK +eSK +nsT +pBj +eSK +eSK +eSK +eSK +xkK +iqq +iqq +oCe eFB tfz qlk qAE bLD -ctw +jZC lGh poz -tAH -ctw +aFG +jZC fRy jVy oWY -ctw +jZC xsc pPp pPp -lPO +foL aLu -lPO -lPO +foL +foL vva vva vva vva vva -yan -xXm -maT -sEz -avt -asI -dSC -lyN -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -40220,34 +32746,34 @@ vva mMp ciN sVT -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -qeM -cUO -cUO -vBb -hmj +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +cos +nDj +bHk +bHk +jeo +psP dff -bsG +dfd qtu ujP ujP @@ -40257,21 +32783,21 @@ hko hko fsN hko -vll +mmp cYJ bHo bHo aeP -bsG -dff -sVT +dfd +tQt vWE vWE -lyN +vWE +lMC btL nlf -cHo -sVT +vzL +bQV uCC uCC wSL @@ -40282,42 +32808,42 @@ fPL ozR yaR wSL -cmP -cmP -cmP -cmP -jdi -jdi -xWr -uax -pxL -xWr -xWr -elw -udW -tfg -udW -udW -mBB -pKL -upO -apE -udW -btj -udW -elw -udW -apE -cST -flj -elw -wEk -wEk +nSZ +nSZ +nSZ +nSZ +tpN +tpN +fCk +diF +hEY +hEY +oCE +eey +nDe +pwi +nDe +nDe +qtG +jjB +eSK +qYE +ple +xae +nDe +eey +dKw +cjM +sow +qWY +eXF +eRI +eyN rBv rBv sQh -wEk -ctw +eyN +jZC pwv try ooo @@ -40329,26 +32855,26 @@ rmk sot pMm iQH -lPO +foL aLu lOD -lPO -lPO +foL +foL vva vva vva vva -jLp -vZP -nJZ -roZ -lyN -asI -bMz -lyN -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -40414,34 +32940,34 @@ sVT mMp ciN ciN -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -hmj -vBb -cUO -vBb -hmj +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +cos +psP +jeo +bHk +jeo +psP dff -bsG +dfd jXx wBm bHo @@ -40456,16 +32982,16 @@ bHo bHo wBm wBQ -bsG -dff -sVT +dfd +ukS +vWE vWE vWE lyN xVM tbw -hwk -sVT +yer +bQV uCC uCC wSL @@ -40479,70 +33005,70 @@ evI wSL wSL wSL -cmP -jdi -iYq -cmP -cmP -cmP -cmP -elw -elw -elw -elw -elw -elw -elw -upO -upO -elw -elw -elw -elw -elw -elw -elw -elw -psD -hfE -cLS +nSZ +wSX +wSX +nSZ +nSZ +dRj +dRj +eey +eey +eey +eey +eey +eey +eey +eSK +eSK +eey +eey +eey +eey +eey +eey +eey +eey +pUQ +qaD +dZD eTL yce kBz pkG iWS -ctw +jZC vhj mPm kAs -ctw +jZC oWY uKj scE -ctw +jZC vGi dfu dfu -lPO +foL aLu lOD kFP -lPO -lPO -vva -vva -vva -cNp -wAT -cNp -lyN -lyN -avt -lyN -lyN +foL +foL vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -40608,34 +33134,34 @@ sVT dff vXR ciN -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -pVf -bIt -lIb -lIb -lIb +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +jhf +izE +yix +yix +yix sVT lIb -pVf -xpI -sVT -hmj -hmj -cUO -vBb -hmj +ghj +ghj +pdl +psP +psP +bHk +jeo +psP dff -bsG +dfd qtu xDS xDS @@ -40650,18 +33176,18 @@ cYJ bHo bHo aeP -bsG +dfd +hZt +hZt +hZt +hZt +hZt +hZt nyX -nyX -nyX -nyX -nyX -nyX -nyX -tme -sVT -qbh -qbh +cao +bQV +xEJ +xEJ wSL psn trJ @@ -40673,70 +33199,70 @@ srs diL gYO wSL -xWr -jdi -jdi -cmP -xWr -xWr -xWr -elw -udW -udW -udW -udW -udW -elw -xql -xql -elw -udW -udW -udW -udW -udW -udW -elw -xnT -lZs -wEk +oCE +oCE +hEY +hEY +hEY +hEY +hEY +eey +nDe +nDe +nDe +nDe +nDe +eey +ecG +ecG +eey +nDe +nDe +nDe +nDe +nDe +nDe +eey +sqJ +rXJ +eRI pqS aYv nKt jsI sCe -tQv -tJt +swR +swR kfL kfL tJt uls -rEM +wfh ntc -ctw -ctw -lPO -lPO -lPO +jZC +jZC +foL +foL +foL aLu lOD -sLg -jvL -lPO -prX -vva -vva -vek -eik -ePv -xew -nMx -sEz -vTE -oQT -vva +ako +qHW +foL +aYJ vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -40802,34 +33328,34 @@ dff dff nff ciN -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -pVf -jkN -pVf -itH -kpb +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +jhf +iUo +jhf +taY +hcc sVT tGv myG myG -suS +hel myG -hmj -cUO -vBb -hmj +psP +bHk +jeo +psP bYV -bsG +dfd fxX bHo fxX @@ -40844,18 +33370,18 @@ eOO pFP ujP fxX -bsG -nyX -nyX +dfd +hZt +hZt moS gav fBl +hZt nyX -nyX -jdi -jdi -jdi -xWr +hkd +kVk +ijh +oCE wSL xvc dts @@ -40867,39 +33393,39 @@ oFJ fTS avv wSL -xWr -jdi -jdi -cmP -xWr -xWr -xWr -elw -udW -udW -udW -udW -udW -elw -xql -xql -elw -udW -udW -udW -udW -udW -udW -elw -oiB -lrN -wEk +oCE +oCE +hEY +hEY +hEY +hEY +hEY +eey +nDe +nDe +nDe +nDe +nDe +eey +ecG +ecG +eey +nDe +nDe +nDe +nDe +nDe +nDe +eey +tRK +cEf +eRI adJ tRw dwC gOY piB -tQv +swR bwF dzu rJE @@ -40909,7 +33435,7 @@ gvc qaC quj flC -lPO +foL seV aYC daC @@ -40917,20 +33443,20 @@ lOD ttD eLB sXw -uvA +uHx rah vva -mWl -rUL -oJf -oNr -doY -sAF -oJi -oQT -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -40996,34 +33522,34 @@ dff dff nff ciN +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +jhf +iUo +jhf +wGL +olX sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -pVf -jkN -pVf -sCr -qbL -sVT +ygv +eQQ +eQQ +bsb myG -eQQ -eQQ -eQQ -myG -hmj -cUO -vBb -hmj +psP +bHk +jeo +psP bYV -bsG +dfd fxX bHo fxX @@ -41038,18 +33564,18 @@ aeP fxX bHo fxX -kqP +uoR ioh -nyX +hZt moS dfO epN +hZt nyX -nyX -xWr -xWr -jdi -xWr +oCE +oCE +ieW +slE wSL xvc rMs @@ -41061,49 +33587,49 @@ dzw cNd avv wSL -xWr -jdi -jdi -cmP -xWr -xWr -xWr -elw -lhK -lhK -lhK -lhK -lhK -elw -elw -elw -elw -lhK -lhK -lhK -lhK -lhK -lhK -elw -mYg -jOT -wEk -uhF +oCE +uqF +vnz +mSO +qyq +qyq +qyq +eey +dWB +dWB +dWB +dWB +dWB +eey +eey +eey +eey +dWB +dWB +dWB +dWB +dWB +dWB +eey +sVJ +owc +eRI +mUM aYv etT mxq uVV -tQv +swR wQr xDZ -jpj -tJt +gnr +swR wuv -ctw +jZC qUa oWY gkv -lPO +foL wgi fWF cNC @@ -41114,17 +33640,17 @@ fur rwY rah vva -fvC -sCL -jIc -tiw -sEz -juQ -kBj -oQT -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -41190,19 +33716,19 @@ dff dff lYS ciN -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -pVf -bIt +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +jhf +izE lIb lIb lIb @@ -41210,14 +33736,14 @@ sVT myG eQQ eQQ -eQQ +bsb myG -hmj -cUO -vBb -hmj +psP +bHk +jeo +psP bYV -bsG +dfd fxX cYJ fxX @@ -41232,18 +33758,18 @@ aeP fxX cYJ fxX -iGy +wcY kgJ -nyX +hZt moS dfO nJC -nyX -nyX -nyX -nyX -adT -xWr +hZt +hZt +hZt +hZt +joQ +oCE wSL xvc rMs @@ -41255,49 +33781,49 @@ dem cNd avv wSL -xWr -jdi -jdi -vUL -xWr -xWr -xWr -elw -udW -lhK -udW -udW -udW -lhK -udW -udW -elw -udW -udW -udW -udW -udW -udW -elw -hfE -hDH -wEk +oCE +oCE +hEY +bHh +qyq +oCE +oCE +eey +nDe +dWB +nDe +nDe +nDe +dWB +nDe +nDe +eey +nDe +nDe +nDe +nDe +nDe +nDe +eey +qaD +vzm +eRI gPb mSL pDe mXE uNe -tQv +swR boD kcN kjn -tJt +swR wuv -ctw +jZC pou lrZ eQh -lPO +foL owv bAz bjB @@ -41308,17 +33834,17 @@ fur rwY nAl vva -kWp -nbX -rGk -tiw -ftm -eik -kGB -oQT -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -41384,34 +33910,34 @@ dff dff lYS ciN -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -pVf -lIb +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +jhf +yix hwb qcI eQQ myG myG -eQQ -eQQ -eQQ +azN +odS +oHc myG -hmj -cUO -bVE -hmj +xFR +bHk +bwU +psP bYV -bsG +dfd fxX lhH cYJ @@ -41426,20 +33952,20 @@ cYJ cYJ lhH fxX -iGy +wcY sXU -nyX -dIU +hZt +hZk nJC nJC -nyX +hZt ugO lOt -nyX -jdi -xWr +hZt +jev +rJg wSL -xvc +tPo rMs tlD ioV @@ -41447,54 +33973,54 @@ ioV kRY dem cNd -avv +fhE wSL -knH -jdi -jdi -cmP -xWr -xWr -xWr -elw -lhK -elw -lhK -lhK -lhK -lhK -udW -udW -elw -udW -udW -udW -udW -udW -udW -elw -lZs -jOT -wEk -wEk -wEk -wEk +lFL +oCE +hEY +bHh +qyq +oCE +oCE +eey +dWB +eey +dWB +dWB +dWB +dWB +nDe +nDe +eey +nDe +nDe +nDe +nDe +nDe +nDe +eey +rXJ +owc +eRI +eRI +eRI +eRI vsA -wEk -tQv +eRI +eHc lMy uNZ jJZ -tJt +swR qUu -ctw +dhv tTD -ctw -ygB -lPO -odR -flO +dhv +dhv +foL +oYX flO +qHJ lOD kGg cUK @@ -41502,17 +34028,17 @@ fur rwY nAl vva -cOA -kEt -vVJ -lsD -kgt -eik -pOR -oQT -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -41578,34 +34104,34 @@ dff dff nff ciN -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -pVf -lIb +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +jhf +yix xar kBQ eQQ myG myG -eQQ -eQQ -eQQ +xtN +aVx +oSU myG -hmj -cUO -vBb -hmj +psP +bHk +jeo +psP sVT -bsG +dfd fxX fxX fxX @@ -41620,7 +34146,7 @@ nNK fxX fxX fxX -kUs +qhN hZN ksZ ehd @@ -41629,9 +34155,9 @@ kbs ksZ lzp uXm -nyX -jdi -xWr +hZt +fSs +oCE wSL xvc rMs @@ -41643,47 +34169,47 @@ dem cNd avv wSL -xWr -jdi -jdi -cmP -xWr -xWr -xWr -elw -udW -lhK -udW -udW -udW -lhK -udW -udW -elw -udW -udW -udW -udW -udW -udW -elw -lZs -jOT -hfE -lZs -lZs -lZs -lWN -lZs -tQv -tQv -tQv -tQv -tQv -ctw -ctw -xbN -qpR +oCE +oCE +hEY +bHh +qyq +oCE +oCE +eey +nDe +dWB +nDe +nDe +nDe +dWB +nDe +nDe +eey +nDe +nDe +nDe +nDe +nDe +nDe +eey +rXJ +owc +qaD +rXJ +rXJ +rXJ +vbd +rXJ +eHc +eHc +eHc +eHc +eHc +dhv +dhv +wtr +dks ihg mqB gBr @@ -41696,17 +34222,17 @@ fur rwY nAl vva -mBX -fsB -lyN -lyN -gnx -ldn -gnx -lyN -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -41772,60 +34298,60 @@ dff dff nff ciN -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -pVf -lIb +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +jhf +yix qZR gfE eQQ myG myG +rkJ jEQ +wXb jEQ -jEQ -jEQ -hmj -cUO -vBb -hmj +psP +bHk +jeo +psP jMZ -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -nyX -nyX +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +dfd +hZt +hZt stI tSs aro -nyX -nyX -nyX -nyX -rKv -cmP +hZt +hZt +hZt +hZt +nch +nSZ wSL xvc rMs @@ -41837,12 +34363,12 @@ qTT cNd avv wSL -xWr -jdi -jdi -cmP -xWr -xWr +oCE +dMb +lrD +wUf +qyq +oCE fMH fMH fMH @@ -41853,32 +34379,32 @@ fMH fMH fMH fMH -mRJ -elw -elw -elw -elw -elw -elw -elw -lZs -lRd -uhy -smn -smn -olR -smn -gEM -smn -gEM -smn -smn -smn -qTy -smn -buc -aIl -lPO +oCb +eey +eey +eey +eey +eey +eey +eey +tNw +cAZ +vhZ +tNW +tNW +xmI +tNW +goY +vXr +kdI +vXr +vXr +vXr +lAD +vXr +dtY +lyV +foL lOK duF poT @@ -41890,17 +34416,17 @@ fur rwY rah vva -kSS -ryl -iau -lyN -auX -baf -efc -jEx -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva "} @@ -41966,19 +34492,19 @@ dff dff nff ciN -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -pVf -sVT +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +jhf +qmG lIb lIb lIb @@ -41988,10 +34514,10 @@ hmr hmr hmr hmr -hmj -cUO -vBb -hmj +psP +bHk +jeo +psP jMZ jMZ sVT @@ -42004,22 +34530,22 @@ bYV dff dff bYV -riH -riH -riH -riH -riH -nyX +jWc +jWc +jWc +jWc +jWc +hZt efy stI vlH eAh -nyX -xWr -xWr -wnl -jdi -xWr +hZt +oCE +oCE +dlc +fSs +oCE wSL xvc ryR @@ -42031,15 +34557,15 @@ jQi omW avv wSL -xWr -jdi -jdi -cmP +oCE +oCE +hEY +rkx fMH fMH fMH -rFz -rFz +awX +qAl fMH kyh kyh @@ -42047,32 +34573,32 @@ pVn pVn pVn fMH -lZs -lZs -lZs -hfE -lZs -lZs -lZs -lZs -mrd -qbS -hfE -lZs -lZs -eVi -hbG -yjN -lZs -tSP -lZs -lZs -lZs -weN -lZs -hbG -lZs -lPO +rbv +bBQ +scp +qaD +wKe +rXJ +rXJ +rXJ +eNE +qrf +qaD +tNw +rXJ +pFL +qNi +dDp +rXJ +uNX +rXJ +rXJ +rXJ +pld +rXJ +rXJ +jSQ +foL kce pgY dDv @@ -42081,17 +34607,17 @@ shd pJP bQS xII -uvA +uHx rah vva -kWp -gFU -jLo -lyN -eTQ -ntx -par -jEx +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -42160,60 +34686,60 @@ sVT dff nff ciN -sVT -pVf -pVf -wFh -wFh -wFh -wFh -wFh -wFh -wFh -pVf -pVf -wFh -wFh -wFh -wFh +qmG +jhf +jhf +mOb +mOb +mOb +mOb +mOb +mOb +mOb +jhf +jhf +mOb +mOb +mOb +mOb lIb myG myG myG myG myG -hmj -gWA -xmB -hmj -hmj -hmj -hmj -hmj -hmj -hmj -hmj -hmj -hmj -hmj -hmj -hmj -riH +psP +jDJ +nLs +psP +psP +psP +psP +psP +psP +psP +psP +psP +psP +psP +psP +psP +jWc gSx wQY aaH jFi -nyX +hZt ppL stI fuh afn -nyX -vDj -xWr -wnl -jdi -xWr +hZt +iAl +oCE +dlc +aXJ +slE wSL lqh rNB @@ -42225,67 +34751,67 @@ ihq rNB idO wSL -xWr -jdi -jdi -xWr +oCE +oCE +hEY +rkx fMH dTd luo rFz -rFz +dpu fMH -eHK +daR eHK ygf ygf kIE fMH -lZs -lZs -lZs -hfE -lZs -lWN -lWN -lWN -xpN -xvr -kQk -kQk -kQk -kQk -kQk -pwU -kQk -kQk -kQk -kQk -kQk -kQk -kQk -kQk -kQk -gzI +rbv +bBQ +scp +qaD +jSQ +twq +sEO +sEO +hQF +dtY +pLU +pLU +pLU +pLU +pLU +nuz +pLU +pLU +pLU +pLU +pLU +pLU +pLU +pLU +pLU +kQF nYp osM qQA osM gtz -gwT -utj -lPO -prX +cca +uDg +foL +aYJ vva vva -soh -wVb -xYa -lyN -fjN -bll -uod -jEx +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -42354,60 +34880,60 @@ sVT sVT nff ciN -sVT -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -wFh +qmG +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +mOb lIb myG myG myG myG myG -hmj -cUO -vBb -sNP -vBb -vBb -vBb -xmB -vBb -vBb -vBb -vBb -cUO -cUO -aHL -ofG -riH +psP +bHk +jeo +fpy +bbm +jeo +jeo +nLs +jeo +jeo +jeo +bbm +bHk +bHk +pzY +eeo +jWc xNb pjf xUh iVT -nyX +hZt wXJ stI ldh mUP -nyX -xWr -xWr -wnl -adT -xWr +hZt +oCE +oCE +dlc +lqJ +rJg wSL wSL wSL @@ -42419,42 +34945,42 @@ wSL wSL wSL wSL -xWr -jdi -jdi -xWr +nSZ +nSZ +vcc +rkx fMH dTd luo rFz -rFz -vXw -fYf -fAD -oZS -oZS -sba -fMH -lZs -lZs -lZs -hfE -lZs -lWN -lZs -hbG -weN -lWN -kQk +xFo +sKl +lkj +qvU +kow +kow +cTM +sKl +fyY +kGz +kzs +lsO +sEO +aBp +rXJ +qNi +pld +vbd +pLU fPd fPd bba nGw -jvD -esL -esL -rBr -nGw +eqh +hBM +hBM +ohX +gks kJc qOJ bdZ @@ -42462,24 +34988,24 @@ ocY xHk ibG vzf -wzh +uYe mrF kUF uly iJX -lPO -lPO +foL +foL vva vva vva -soh -aEL -xQX -lyN -rIQ -uZa -xmF -jEx +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -42548,98 +35074,98 @@ vva sVT mMp ciN +qmG +jhf +jhf +jhf +jhf +jhf +jhf +jhf +jhf +ojZ +nku +jhf +jhf +jhf +jhf +mOb sVT -pVf -pVf -pVf -pVf -pVf -pVf -pVf -pVf -vjg -aVN -pVf -pVf -pVf -pVf -wFh -sVT -myG -myG -myG -myG +hmr +hmr +hmr +hmr tGv -hmj -cUO -cUO -cUO -cUO -cUO -cUO -gWA -cUO -cUO -cUO -cUO -cUO -vBb -vBb -vBb -riH +psP +bHk +bHk +bHk +bHk +bHk +gRu +mkn +nDD +nDD +fqn +lWO +hzZ +jeo +jeo +jeo +jWc sFn pjf khU ojM -nyX +hZt nJC stI tSs nlA -nyX -xWr -xWr -wnl -jdi -xWr -xWr -xWr -cmP -xWr -xWr -xWr -xWr -xWr -xWr -xWr -cmP -cmP -jdi -iYq -cmP +hZt +oCE +oCE +dlc +aED +hEY +hEY +dRj +hEY +hEY +hEY +hEY +hEY +hEY +hEY +hEY +hEY +hEY +dRj +hEY +rkx fMH fMH fMH -bkG -rFz -jGq -hBm +beV +cBa +dNC +dXJ rFz rFz rFz -jtW -bVq -lWN -lWN -lZs -hfE -hfE -lxn -hfE -hfE -lZs -lWN -kQk +sax +dNC +wQg +rbv +umQ +qaD +qaD +qaD +qaD +qaD +qVh +qaD +pLU pGT bIV iCw @@ -42654,26 +35180,26 @@ bao huR juz nbl -kQk -lPO -lPO -lPO -lPO -lPO -lPO -lPO +pLU +foL +foL +foL +foL +foL +foL +foL vva vva vva vva -rnZ -wVb -gRx -lyN -boy -cXH -vvE -iMD +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -42742,46 +35268,46 @@ vva vva mMp ciN -sVT -sVT -sVT -sVT -sVT -sVT -kMG -sVT -sVT -sVT -jac -sVT -sVT -pVf -pVf -wFh -sVT -sVT -sVT -sVT -sVT -sVT -hmj -cUO -vBb -vBb -vBb -vBb -cUO -xmB -vBb -vBb -vBb -cUO -xtz -vBb -vBb -vBb -riH -oVG +qmG +qmG +qmG +qmG +qmG +qmG +hIN +qmG +qmG +qmG +tid +qmG +qmG +jhf +jhf +mOb +psP +psP +psP +psP +psP +psP +psP +bHk +jeo +jeo +jeo +jeo +hSA +nLs +jeo +jeo +tJF +bHk +inA +jeo +jeo +jeo +jWc +teQ fpr qdX wtN @@ -42790,66 +35316,66 @@ gmy tVK aKJ fBl -nyX -xWr -xWr -wnl -jdi -jdi -jdi -jdi -eVx -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -xWr -xWr +hZt +oCE +oCE +dlc +mSr +kVk +kVk +siE +kVk +kVk +kVk +pfX +lrD +lrD +lrD +sFU +hEY +hEY +dRj +hEY +fSs +oCE +oCE fMH -fMH -fMH -fMH -dZX +otE +bkr +amh +wsM gev gev gev -gEz -fMH -lZs -lWN -lZs -hfE -lZs -lWN -lZs -hfE -lZs -lWN -kQk +aVO +amh +rbv +rbv +rbv +rri +rXJ +rXJ +bBQ +scp +vbd +qsC +pLU wFE fVG -mhs +fNU bxw tNP fkM mwV tNP fPd -mhs +fNU iMM huR juz nbl -kQk -kQk +pLU +pLU dff dff dff @@ -42860,14 +35386,14 @@ vva vva vva vva -lyN -lyN -lyN -lyN -lyN -lyN -lyN -lyN +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -42948,68 +35474,68 @@ vWE sVT cHo vWE -sVT -pVf -pVf +wjE +vwU +vwU lIb -sVT -vWE -vWE -vWE -vWE -lyN -vBb -cUO -vBb -vBb -vBb -vBb -cUO -ovf -ovf -ovf -ovf +tXu +xgq +jeo +bbm +jeo +nLs +jeo +bHk +jeo +jeo +jeo +jeo +hSA +hTM +hTM +hTM +hTM cWZ -ovf -ovf -ovf -ovf -riH -riH -riH -riH -riH -nyX -nyX -nyX -nyX -nyX -nyX -wnl -wnl -wnl -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -jdi -xWr -xWr -xWr -xWr -fMH +hTM +hTM +hTM +hTM +jWc +jWc +jWc +jWc +jWc +hZt +hZt +hZt +hZt +hZt +hZt +dlc +dlc +dlc +fSs +oCE +oCE +nSZ +oCE +oCE +hEY +hGW +oCE +oCE +oCE +lhN +oCE +oCE +dlc +dlc +mSr +kVk +kVk +siE +rTd +gQv fMH bOG bOG @@ -43017,17 +35543,17 @@ bOG bOG lrm fMH -lZs -lWN -lZs -hfE -lZs -lWN -lZs -hfE -eXV -cty -kQk +hIk +rbv +rbv +iGJ +vbd +vbd +hyi +iPH +vbd +qaD +pLU wFE fVG fPd @@ -43035,7 +35561,7 @@ bxw fPd fkM mwV -fPd +tTl fPd tQO cGr @@ -43043,7 +35569,7 @@ huR juz nbl laT -kQk +pLU dff dff dff @@ -43142,24 +35668,24 @@ vWE sVT gZb vWE -sVT +wjE pVf pVf wFh -sVT -vWE -pVf -pVf -pVf -lXe -cUO -cUO -vBb -vBb -vBb -vBb -cUO -ovf +tXu +piv +bHk +gRu +nDD +mkn +nDD +nDD +weH +weH +weH +weH +vVb +hTM lST emV emV @@ -43169,41 +35695,41 @@ emV emV emV emV -ovf -xWr -xWr -xWr -xWr -cmP -xWr -xWr -xWr -cmP -xWr -xWr -cmP -vPG -wWQ -wWQ -wWQ -wWQ -wWQ -jdi -xWr -cmP -cmP -cmP -cmP -cmP -cmP -cmP -xWr -jdi -xWr -xWr -xWr -xWr -xav +hTM +oCE +oCE +oCE +oCE +nSZ +oCE +oCE +oCE +nSZ +nTS +oCE +nSZ +tcl +ame +ame +ame +ame +ame +vcc +dyA +kJu +oJF +hHP +dyA +oCE +oCE +dlc +dlc +rkx +oCE +pdv +dlc +dlc +dlc fMH ksn ksn @@ -43211,17 +35737,17 @@ ksn ksn ksn fMH -lZs -lWN -irk -hfE -lZs -lWN -irk -hfE -lZs -sJQ -kQk +rbv +rbv +rbv +qaD +rXJ +vbd +wzc +wzc +vbd +biY +pLU uCq fVG wYv @@ -43235,10 +35761,10 @@ fPd sIH huR juz -nbl -adN -gUo -dpX +xNF +erR +mej +nAl dff dff vva @@ -43335,25 +35861,25 @@ sVT sVT sVT sVT -sVT -sVT +wjE +wjE pVf pVf wFh -sVT -vWE -pVf -vWE -vWE -lyN -fkN -mbd -tYL -fkN -xmB -vBb -cUO -ovf +tXu +jeo +bHk +pwr +cja +nLs +uhC +ryS +bBH +uhC +nLs +jeo +hSA +hTM emV emV emV @@ -43363,41 +35889,41 @@ emV emV emV emV -ovf -xWr -xWr -xWr -xWr -cmP -uPn -uPn -uPn -cmP -xWr -jdi -jdi -jdi -wWQ -duq -duq -duq -wWQ -adT -xWr -cmP -xWr -xWr -xWr -xWr -xWr -vUL -xWr -jdi -xWr -xWr -xWr -xWr -xWr +hTM +oCE +oCE +oCE +oCE +nSZ +iMc +iMc +iMc +nSZ +uqF +fXp +kVk +cAq +ame +wNL +wNL +wNL +ame +jwV +dyA +tzk +tpN +fCk +dyA +oCE +oCE +oCE +nSZ +rkx +oCE +oCE +oCE +oCE +oCE fMH fMH fMH @@ -43405,16 +35931,16 @@ fMH fMH fMH fMH -hfE -hVY -hfE -hfE -lZs -lWN -lZs -hfE -hfE -hfE +qaD +qaD +qaD +qaD +tNw +vbd +wzc +wzc +vbd +dky kQk kQk kQk @@ -43428,10 +35954,10 @@ kQk kQk kQk kQk -kQk -kQk -kQk -fNm +pLU +pLU +pLU +elO vva vva vva @@ -43527,27 +36053,27 @@ dff sVT qTn vWE -pVf -pVf -jUd -pVf -pVf +mNy +bVj +bmN +bVj +bVj pVf wFh -jUd -pVf -pVf -vWE -vWE -lyN -iRZ -fVf -vBb -squ -xmB -vBb -cUO -ovf +vqr +bHk +bHk +qPj +vaw +nLs +ken +czZ +jeo +lEw +nLs +meN +aIc +hTM gqr emV gsh @@ -43557,71 +36083,71 @@ mJG dmd emV iFG -ovf -xWr -xWr -xWr -xWr -cmP -uPn -uPn -uPn -cmP -knH -jdi -xWr -xWr -wWQ -lWV -lWV -lWV -wWQ -jdi -xWr -cmP -xWr -xWr -xWr -xWr -xWr -cmP -xWr -jdi -jdi -jdi -jdi -jdi -jdi -lxn -lWN -lWN -lWN -lWN -lWN -lWN -lWN -lWN -lWN -hVY -lWN -lWN -lWN -lWN -lWN -irk -cYf -ofE +hTM +oCE +aVF +rKL +oCE +nSZ +iMc +iMc +iMc +nSZ +ybQ +utp +oCE +lzR +ame +xdf +xdf +xdf +ame +hEY +dyA +hXp +pDI +uFT +dyA +oCE +oCE +oCE +nSZ +rkx +hEY +hEY +hEY +hEY +hEY +hUd +vbd +vbd +vbd +vbd +vbd +vbd +vbd +vbd +vbd +iGJ +vbd +vbd +vVB +puL +vbd +vbd +oGv +gYv qlA -cYf -fHR -fHR -fHR -fHR +oGv +nKT +ldR +ldR +yjh vuD uTy tYw rCx -sVT +qRx dff dff dff @@ -43722,26 +36248,26 @@ sVT qTn vWE pVf -vWE -sVT -pVf +jds +wjE pVf +bVj llG wFh -sVT -vWE -vWE -vWE -vWE -lyN -pmg -squ -pmg -fAG -xmB -vBb -cUO -ovf +tXu +jeo +jeo +jeo +onb +nLs +nUC +lEw +nUC +eGq +nLs +tqI +xCb +hTM emV emV vpm @@ -43751,66 +36277,66 @@ cjp aYK emV emV -ovf -xWr -xWr -xWr -xWr -vUL -jdi -jdi -jdi -hfb -jdi -jdi -xWr -xWr -wWQ -lWV -lWV -lWV -wWQ -jdi -xWr -cmP -xWr -xWr -xWr -cmP -cmP -cmP -cmP -rKv -cmP -cmP -cmP -bZP -bZP -bZP -bZP -bZP -bZP -lZs -lZs -lZs -lZs -lZs -lZs -hfE -lZs -lZs -lZs -lZs -lWN -lZs -cYf +hTM +iAp +yav +eia +aHN +tbO +kVk +ukp +nqt +siE +kVk +cAq +oCE +gHG +ame +xdf +xdf +xdf +ame +hEY +oCE +oCE +oCE +oCE +oCE +oCE +oCE +oCE +nSZ +pqb +nSZ +nSZ +nSZ +tNE +tNE +tNE +tNE +tNE +tNE +rXJ +qNi +rXJ +rXJ +rXJ +rXJ +qaD +rXJ +rXJ +bBQ +scp +vbd +uDr +oGv cBP ofE cLD fHR -fHR -fHR -fHR +eIu +eIu +nEb vuD rfI vrF @@ -43891,51 +36417,51 @@ vva vva vva vva -phg -fZN -uZJ -hcd -ouk -kmV -fZN -rpE -rkz -nRc -nRc -rOW -nRc -tdi -nRc -nRc -nRc -nRc -rOW +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT pVf pVf pVf -vWE -sVT -pVf +jds +wjE pVf +bVj llG wFh -sVT -vWE -vWE -vWE -vWE -xwv -xwv -xwv -xwv -xwv -xwv -vBb -cUO -ovf +tXu +jeo +jeo +jeo +kJa +ibb +ibb +ibb +ibb +ibb +ibb +jeo +gsA +hTM emV emV vpm @@ -43945,66 +36471,66 @@ cjp aYK emV emV -ovf -xWr -gvu -xWr -cmP -cmP -jdi -xWr -xWr -cmP -xWr -jdi -tob -eTY -wWQ -aCT -aCT -aCT -wWQ -jdi -xWr -cmP -xWr -xWr -xWr -cmP -olY -ihM -jdi -jdi -jdi -xWr -xWr -bZP +hTM +oCE +nFh +oCE +nSZ +nSZ +hEY +lhN +hGW +nSZ +oCE +hEY +uke +ups +ame +svM +svM +svM +ame +hEY +gHG +lzR +oCE +oCE +oCE +oCE +oCE +oCE +nSZ +rkx +hEY +oCE +oCE +tNE uNp pnv bPE rRt -bZP -lEZ -lEZ -lEZ -lEZ -lEZ -lEZ -lEZ -lEZ -lEZ -hfE -hfE -hVY -hfE -cYf -cYf -cYf -cYf -fHR -fHR -fHR +tNE +uZt +uZt +uZt +uZt +uZt +uZt +uZt +uZt +uZt +rvG +scp +vbd +rXJ +oGv +oGv +oGv +oGv fHR +eIu +eIu +nEb vuD fDU rfI @@ -44085,51 +36611,51 @@ vva vva vva vva -mYX -uhp -rtF -rtF -iUP -hRZ -hRZ -hRZ -hRZ -kmR -ymh -fAO -izL -hkq -hRZ -hRZ -hRZ -hRZ -kiV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT vWE pVf vWE -vWE -sVT -pVf +jds +wjE pVf +bVj pVf wFh -sVT -vWE -vWE -vWE -vWE -xwv +tXu +jeo +jeo +jeo +jeo +ibb xZj xZj xZj vBa -xwv -jhR -cUO -ovf +ibb +oxh +gsA +hTM emV emV ulH @@ -44139,45 +36665,45 @@ cjp aYK emV emV -ovf -xWr -kAw -xWr -cmP -xWr -jdi -xWr -xWr -cmP -cmP -iDZ -cmP -cmP -wWQ -exs -lWV -fUw -wWQ -pCv -wWQ -syW -syW -syW -syW -xdp -gwo -gwo -jdi -jdi -jdi -xWr -xWr -bZP +hTM +oCE +uQa +oCE +nSZ +oCE +hEY +fZV +oCE +nSZ +nSZ +wEo +nSZ +nSZ +ame +dsp +xdf +pOa +ame +bFK +ame +iAX +iAX +iAX +iAX +rJt +nSZ +nSZ +nSZ +qnP +lrD +rJg +oCE +tNE ygK bvj -qpy -hnR -ePW +gzr +iMP +sEC kkD lDq tCa @@ -44186,11 +36712,11 @@ pen vdC aPr bIO -lEZ -lZs -lZs -bzC -smn +uZt +rvP +xLl +eqt +vXr mtf knr knr @@ -44198,12 +36724,12 @@ knr knr aMR fHR -fHR +kVm vuD duk dSR rfI -sVT +qRx dff vva vva @@ -44279,51 +36805,51 @@ vva vva vva vva -uWt -rtF -jDe -hRZ -hRZ -xxD -xxD -fDs -hRZ -hRZ -hRZ -qTu -iKo -izW -nVV -mhI -tNg -hRZ -hRZ +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT vWE pVf vWE -vWE -sVT -pVf +jds +wjE pVf +bVj pVf wFh -sVT -vWE -vWE -vWE -vWE -xwv +tXu +jeo +jeo +jeo +jeo +ibb xZj xZj uyV vBa -xwv -vBb -cUO -ovf +ibb +jeo +gsA +hTM emV emV ulH @@ -44333,45 +36859,45 @@ cjp aYK emV emV -ovf -cmP -cmP -cmP -cmP -xWr -jdi -wWQ -wWQ -wWQ -mNr -bYW -thP -bYW -qFS -dPH -nHi -lWV -lWV -lWV -xjd -lWV -lWV -evD -syW -xWr -xWr -xWr -jdi -xWr -jdi -xWr -xWr -bZP +hTM +nSZ +nSZ +nSZ +nSZ +nSZ +dRj +ame +ame +ame +idm +nuW +otq +nuW +dCm +jFO +jll +xdf +xdf +xdf +oDa +xdf +xdf +wQx +iAX +fMp +fMp +hEY +hEY +bHh +hEY +oCE +oCE +tNE hti mOc -szr +enq fvo -ePW +sEC lwa fpN iXA @@ -44380,16 +36906,16 @@ lwa lwa lwa tqM -lEZ -lZs -lZs -boY -lZs -cYf -cYf -cYf -cYf -fHR +uZt +rvG +scp +lMp +rXJ +oGv +oGv +oGv +oGv +rqa fHR fHR fHR @@ -44397,7 +36923,7 @@ tkG sSR sSR sSR -sVT +qRx dff vva vva @@ -44473,51 +36999,51 @@ vva vva vva vva -uWt -rtF -iUP -hRZ -vKd -aNE -ory -lSa -vZy -lSa -lvH -mwi -hRZ -mFo -npb -xVh -ecl -vfZ -vDw +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT -vWE +ukS pVf vWE -vWE -sVT -pVf +cHo +wjE pVf +bVj pVf wFh -sVT -sVT -sVT -sVT -sVT -xwv +tXu +tXu +tXu +tXu +tXu +ppk uyV uyV uyV vBa -xwv -sFi -cUO -ovf +ibb +nFg +gsA +hTM emV emV ulH @@ -44527,62 +37053,63 @@ cjp aYK emV emV -ovf -xWr -xWr -xWr -xWr -xWr -jdi -wWQ -iDa -iDa -iDa -lWV -hXM -lWV -xjd -lWV -rKo -lWV -lWV -lWV -xjd -lWV -lWV -evD -syW -xWr -jdi -jdi -jdi -pxL -jdi -xWr -xWr -bZP +hTM +tpN +fcL +tpN +tpN +fCk +dyA +ame +dOb +dOb +dOb +xdf +hug +xdf +oDa +xdf +lnf +xdf +xdf +xdf +oDa +xdf +xdf +wQx +iAX +oCE +hEY +hEY +oCE +vnI +oCE +oCE +oCE +tNE bgw pIa -dZa -xjM -ePW +nrl +vMF +sEC sEQ uLf huv uLh wrj -lwa +xTH arU ucD -lEZ -lZs -nTv -fLs -lZs -cYf +uZt +rvG +scp +roG +liQ +oGv rhG rAs -cYf +oGv +hNf fHR fHR fHR @@ -44590,8 +37117,7 @@ fHR fHR fHR fHR -fHR -sVT +qRx dff vva vva @@ -44667,35 +37193,35 @@ vva vva vva vva -uWt -rtF -hRZ -hRZ -scB -ixk -mwu -ncP -uTz -lZK -kzD -czL -ucs -kip -hFi -cse -nZj -iDG -hIZ +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT -vWE +tQt pVf vWE -vWE -sVT +tHe +wjE nyc -jAM +qqU jAM jAM uBz @@ -44703,15 +37229,15 @@ wFh tQR rMn pJr -xwv +ppk eUq -xwv -xwv -xwv -xwv -qpb -wCS -ovf +ibb +ibb +ibb +ibb +qfX +thK +hTM emV emV ulH @@ -44721,59 +37247,59 @@ qLK kJo emV emV -ovf -xWr -xWr -jdi -jdi -jdi -jdi -wWQ -iDa -iDa -iDa -lWV -tmm -pvE -hbd -pvE -wyN -lWV -fnI -xTX -xTX -wfx -wfx -wfx -wfx -xTX -jdi -jdi -pRP -pRP +hTM +tpN +fcL +pDI +pDI +uFT +dyA +ame +dOb +dOb +dOb +xdf +rtg +uSP +oyb +uSP +hDc +xdf +bXT +jsB +jsB +sJu +sJu +sJu +sJu +jsB +hEY +hEY +tSn +tSn caT -pRP -pRP -xSx -ePW +tSn +tSn +reW +sEC dBh -wdM +lTn dPI -ePW +sEC sEQ qrM huv -lwa +xTH wrj dAh jfY axQ -lEZ -lZs -lZs -boY -oGJ -cYf +uZt +rvG +scp +lMp +gyL +oGv rzD ofE jra @@ -44782,10 +37308,10 @@ fHR sZO fHR fHR +mub fHR fHR -fHR -cmq +qRx dff vva vva @@ -44861,25 +37387,25 @@ vva vva vva vva -uWt -rtF -rtF -kka -fkE -fkE -dmN -lPj -fkE -jIE -llO -fiv -jIE -wpv -wZu -ioL -hRZ -hRZ -hRZ +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT @@ -44887,25 +37413,25 @@ sVT nUw sVT sVT -sVT +wjE wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -wFh -feB +rMK +rMK +rMK +rMK +rMK +rMK +rMK +rMK +ppk uyV mCP mCP jcE -xwv -xmB -kac -ovf +ibb +nLs +pJc +hTM emV emV ulH @@ -44915,25 +37441,25 @@ qLK kJo emV emV -ovf -xWr -xWr -jdi -xWr -xWr -xWr -wWQ -iDa -iDa -iDa -lWV -kMS -lWV -xjd -lWV -eUw -lWV -xTX +hTM +tpN +jXA +dyA +dyA +dyA +dyA +ame +dOb +dOb +dOb +xdf +kZi +xdf +oDa +xdf +eoD +xdf +jsB vZb uPq kfe @@ -44941,9 +37467,9 @@ nZw ulm ylv vpb -jdi -stP -pRP +hEY +cFv +tSn ref mOA kMe @@ -44951,26 +37477,26 @@ cpT jok nJq qaa -abt +axn kwc hPb kKV -mLu -oIK -iuN -iuN -sBC +rDM +dVM +vhQ +vhQ +hmB lwa niI -lEZ -lZs -lZs -boY -olF -cYf -cYf -cYf -cYf +uZt +rvG +scp +lMp +jbt +oGv +oGv +oGv +oGv fHR fHR fHR @@ -44979,21 +37505,21 @@ fHR fHR fHR fHR -cmq +qRx dff vva vva vva vva dAV -sVT -sVT -sVT -sVT -sVT -nqQ -hmp -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV dAV dAV vva @@ -45055,25 +37581,25 @@ vva vva vva vva -uWt -rtF -rtF -kSy -cfC -fIK -vAT -eAt -rDN -bLM -gax -kJS -jIE -wpv -isx -gMq -bEE -tfO -rtF +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT @@ -45090,16 +37616,16 @@ wFh wFh wFh eCW -wFh -feB +rMK +ppk uyV oho oho mqu -xwv -nEF -dFf -ovf +ibb +kMi +hSA +hTM gqr emV wwF @@ -45109,85 +37635,85 @@ hJx chI emV iFG -ovf -xWr -xWr -jdi -daS -daS -daS -daS -daS -daS -imj -bYW -ajG -bYW -qFS -lWV -eUw -lWV -xTX +hTM +pDI +caq +dyA +byq +byq +byq +byq +byq +byq +sDv +nuW +hqD +nuW +dCm +xdf +eoD +xdf +jsB tip chE fqx rNP tXn pHG -xTX -jdi -bWk -pRP +jsB +hEY +rSB +tSn dbl mOA xQh olv tmg -ePW +sEC nQh -fhp +jXK nQh -ePW +sEC mCM -mCM -uVW +iwX +oyz fut cjA -rzO +leq lwa uPU -lEZ -lZs -lZs -boY -lZs -cYf +uZt +rvG +scp +lMp +rXJ +oGv rzD ofE jra fHR fHR +eIu +eIu +lsd fHR fHR -fHR -fHR -fHR -fHR -cmq +oYW +qRx dff vva vva vva vva dAV -sVT -vUV -vUV -vUV -sVT -hwq -sBL -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV dAV dAV vva @@ -45249,25 +37775,25 @@ vva vva vva vva -fdf -rtF -rtF -lly -cfC -nNA -ksO -qTG -qPu -bLM -rbk -koT -jIE -wpv -iiP -llr -dWo -tfO -rtF +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT @@ -45284,16 +37810,16 @@ uyO uyO uyO uyO -uyO +pvF kmv tmF lYv aCf boh -xwv -vfJ -dFf -ovf +ibb +qPy +hSA +hTM bdO emV emV @@ -45304,84 +37830,84 @@ emV emV emV cWZ -jdi -jdi -jdi -daS +dyA +dyA +dyA +byq ujr -bDd +biJ boG aen -daS -daS -daS -daS -daS -daS -lWV -srG -gzn -xTX +byq +byq +byq +byq +byq +byq +xdf +qdx +cRY +jsB tqP uMc fHE rNP aHa vFJ -xTX -rKv -cmP -pRP +jsB +jmd +nSZ +tSn mOA mOA diC dZu hvn -ePW +sEC vFz -dGk +iQY vFz -ePW +sEC oNB -muT -muT -muT +liG +liG +liG oNB -nXO +nIR oNB -muT -lEZ -lZs -wfo -qLC -irk -cYf +liG +uZt +rvP +xLl +nMw +hbf +oGv rhG uwC -cYf -cYf +oGv +oGv rTH -cYf -cYf -cYf +oGv +oGv +oGv fHR fHR -fHR -sVT +aUl +qRx dff vva vva vva vva dAV -sVT -hcw -hcw -hcw -sVT -tYP -sBL -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV dAV dAV vva @@ -45443,25 +37969,25 @@ vva vva vva vva -uWt -rtF -rtF -lly -cfC -loE -lBx -eAt -iWz -bLM -wGr -mTE -jIE -ehy -woU -fao -puw -tfO -rtF +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT @@ -45478,43 +38004,43 @@ qFU vQA jkY wFh -tMD +qIt jMM tMG wHX tgx rOQ -xwv -vBb -hlu -ovf +ibb +jeo +tuz +hTM dma -dJq -ofT -ofT -ofT -ofT -ofT -gvr +eAR +jsc +jsc +jsc +jsc +jsc +mfy gPD -ovf -xWr -xWr -xWr -daS +hTM +oJF +mvB +oJF +byq beD kxI kxI nVk -nCH -hrD +xjC +jVQ hrD tOj wtw -daS -lWV -vnh -lWV +byq +xdf +oTr +xdf uYB ghr urn @@ -45522,18 +38048,18 @@ urn bnj gRI oVz -xTX -jdi -xWr -pRP +jsB +hEY +oCE +tSn mOA acn smb cSy ede -pRP +tSn vdM -ahI +lCE vdM ijD vdM @@ -45541,41 +38067,41 @@ vdM rWo vdM vdM -vSP +nak vdM vdM -vRa -eXV -lVq -boY -lZs -eLi -eLi -eLi -eLi -eLi +koU +iCi +scp +lMp +rXJ +xbw +xbw +xbw +xbw +xbw jXf jXf sCK -cYf +oGv fHR fHR -fHR -sVT +gQl +cmq dff vva vva vva vva dAV -sVT -cxm -fKz -fKz -iLI -eio -sFG -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV dAV dAV vva @@ -45637,25 +38163,25 @@ vva vva vva vva -lOA -rtF -rtF -lly -cfC -nNA -iGI -vGS -kzi -bLM -fFI -xIw -mNe -rYP -eVO -uTT -dWo -tfO -rtF +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT @@ -45673,42 +38199,42 @@ blw jfR fUh nCv -feB +ppk fow wmK sKp tmF sdz -gBa -tQF +weH +thK bbg jPX -vqh +vSG jPX jPX -ttj -ttj -ttj -gHg +uOf +uOf +uOf +bmd feM -ttj -ttj -daS -daS -daS +uOf +uOf +byq +byq +byq beD kxI kxI nVk -eEI +dCl syV syV mnT aTs bBI -lWV -vnh -lWV +xdf +oTr +xdf uYB rNP tXn @@ -45716,60 +38242,60 @@ tXn tXn gRI fGi -xTX -jdi -xWr -pRP +jsB +hEY +oCE +tSn xet fRM xTN eHk eHk -pRP +tSn vdM -mOG -rnc -rnc -rnc -rnc -duH -rnc -rnc -hHE -kXf -gSU -vRa -lZs -lZs -boY -lZs -sVT -dCc -oTZ -nlf -eLi +sUn +qJe +qJe +qJe +qJe +iwJ +qJe +qJe +eKb +qQZ +aQw +koU +rvG +scp +lMp +rXJ +vkM +ceK +rgz +joD +xbw ixl jXf -jXf -cYf +uhz +oGv fHR fHR -fHR -sVT +gQl +cmq dff vva vva vva vva dAV -sVT -qQE -nzs -nzs -huU -loO -cPJ -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV dAV dAV vva @@ -45831,25 +38357,25 @@ vva vva vva vva -mYX -rtF -rtF -lly -cfC -nNA -vAT -eAt -kzi -bLM -vUK -tAl -sxJ -cil -eVS -iAa -rhX -tfO -rtF +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT @@ -45867,42 +38393,42 @@ jAM uBz wFh ykH -feB +ppk uyV ffQ xHM xZj -xwv -vBb -cUO -ovf -jPX -vqh +ibb +tqI +iOT +hTM +rNJ +vSG hAr org -ttj +uOf uJn -eDH -okl +gYG +hFt dLA eDH -fEG -daS +eJh +byq mIP ikl dll iAy eEe tXi -eEI -syV -syV -mnT +qou +xwK +xwK +bdq aTs bBI -lWV -vnh -lWV +xdf +oTr +xdf uYB vqG bZZ @@ -45910,60 +38436,60 @@ bZZ lhq gRI pHG -xTX -jdi -xWr -pRP +jsB +hEY +oCE +tSn wGn fRM mOA mOA -mOA -pRP -vdM -ahI +vkh +tSn vdM +lCE vdM vdM +eYF vdM rWo -vdM +oWg vdM vdM lbk mzD -vRa -lZs -lZs -lRd -pvZ -ooZ -tbw -mMD -vWE -eLi +koU +rvG +scp +aDy +uGR +lHP +wnp +ldj +xUy +xbw wFL vQF ubY -cYf +oGv fHR fHR -fHR -sVT +gQl +cmq dff vva vva vva vva dAV -sVT -veO -nTH -nTH -sVT -mav -vHM -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV dAV dAV vva @@ -46025,25 +38551,25 @@ vva vva vva vva -uWt -rtF -rtF -kka -fkE -fkE -dmN -jAZ -fkE -jIE -qGw -qGw -jIE -xtS -fkE -cuZ -fkE -fkE -fkE +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT @@ -46061,42 +38587,42 @@ wFh wFh wFh wFh -feB -xwv -xwv -xwv -xwv -xwv -vBb -cUO -ovf +ppk +ibb +ibb +ibb +ibb +ibb +meN +bZo +hTM jPX -vqh +vSG vhY iZk -ttj +uOf uJn eDH pGa tTC wqA wqA -daS -daS -daS -daS +byq +byq +byq +byq nCH vgC vgC kmq fsi fsi -nmD +esJ akn bBI -fjH -iTV -lWV +sHF +qqX +xdf uYB xwe bjK @@ -46104,60 +38630,60 @@ bjK nCZ yaj pfV -xTX -jdi -xWr -pRP +jsB +hEY +oCE +tSn xYL qAp tOZ tOZ -tOZ -xnd -rnc -jdI +oAR +dsb +qJe +uyl vdM -vRa -vRa -vRa -vRa -vRa -vRa +koU +koU +koU +koU +koU +koU vdM ahI -hIC -vRa -vRa -vRa +deF +koU +koU +koU niR -vRa -uTc -uTc -uTc -uTc -eLi -cYf -cYf -cYf -cYf +koU +pWX +pWX +pWX +pWX +xbw +oGv +oGv +oGv +oGv fHR fHR -fHR -sVT +gQl +cmq dff vva vva vva vva dAV -sVT -bsB -bsB -bsB -sVT -wij -wij -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV dAV dAV vva @@ -46219,25 +38745,25 @@ vva vva vva vva -uWt -rtF -fkE -fkE -iJk -svK -iGI -rHI -eMt -dIy -gfL -pPh -dye -gIo -gAX -nlv -kCj -xEt -fkE +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT @@ -46245,7 +38771,7 @@ pVf pVf jMZ jMZ -sVT +wjE wFh wFh wFh @@ -46256,65 +38782,65 @@ wFh wFh wFh jUd -cUO -cUO -cUO -cUO -cUO -cUO -cUO -lyN -lyN -xBz -lyN -lyN -ttj -ttj +bHk +bHk +bHk +bHk +nsj +bHk +bHk +iks +iks +jHP +iks +iks +uOf +uOf gLW lSA ceR ceR mnq -ttj +uOf qkW vWE -daS -sKT +byq +vqV syV syV dVg -daS -dsr -gQQ -daS -daS -msZ -qFS -aCT -xTX -xTX +byq +jNF +aKH +byq +byq +tYk +dCm +svM +jsB +jsB rtp rtp -xTX +jsB gDL oVz -xTX -jdi -xav -pRP +jsB +hEY +pdv +tSn xYL qBW mOA eHk eHk -pRP +tSn vdM tGc vdM geK xGE eVA -vRa +koU sYD vdM vdM @@ -46333,25 +38859,25 @@ vdM vdM pNj jLy -ofE +puJ fHR fHR -fHR -sVT +aUl +qRx dff vva vva vva vva dAV -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV dAV dAV vva @@ -46413,33 +38939,33 @@ vva vva vva vva -uWt -rtF -kka -fkE -tPW -ifJ -kHE -ikj -dmN -fGr -oBH -sPE -wZt -aYi -tDW -bYX -ayD -wrQ -fkE +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva sVT -sVT +wjE cPA -sVT -sVT -sVT +wjE +wjE +wjE ghY vQA vQA @@ -46449,66 +38975,66 @@ vQA vQA vQA eEn -sVT -vBb -vBb -vBb -vBb -vBb -vBb -cUO +wjE +jeo +jeo +jeo +jeo +jeo +jeo +bHk lyN -hpr -imX +bPF +syU lyN pJd eLa -ttj +uOf wqA pur hxC hxC hsd -ttj +uOf cpy -vWE -daS +wtI +byq sKT syV syV dVg -qmL -bYW -kWk -bYW -kWe -sVt -eXc -lWV -kWe -bYW -bYW -bYW +jNF +nuW +iyF +nuW +hUC +lAc +bqC +xdf +hUC +nuW +nuW +nuW rgg gDL wzH -xTX -jdi -xWr -pRP +jsB +hEY +oCE +tSn xYL qBW mOA mOA -mOA -pRP +jtM +tSn mLB tGc vdM geK xGE mrH -vRa +koU sYD vdM vdM @@ -46530,8 +39056,8 @@ bzh ofE fHR fHR -eLi -sVT +xbw +qRx dff vva vva @@ -46607,25 +39133,25 @@ vva vva vva vva -uWt -rtF -kiV -fkE -fkE -sOC -tlw -rdT -fkE -gxQ -gxQ -gxQ -gxQ -fkE -bcL -cxX -inB -fkE -fkE +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva dff @@ -46643,66 +39169,66 @@ wFh wFh wFh wFh -sVT -vBb -vBb -vBb -vBb -vBb -vBb -cUO +wjE +jeo +jeo +jeo +jeo +jeo +jeo +bHk lyN -muQ -pKa +wdG +iwI lyN uig cCp -ttj +uOf wqA pur hxC hxC hsd -ttj +uOf pVf -wtI +vWE bIY bYH fLh fLh lJm -hyf -lBR -qET -aZu -psg -arz -gCT -ant -kWe -bYW -xyd -aZu -udx -oIy -wzH -xTX -jdi -xWr -pRP +qRF +vbL +iRy +oAY +glT +oIR +nys +ogm +hUC +nuW +bQR +lot +nrp +fYa +uxE +jsB +hEY +lzR +tSn xYL sWq mOA mOA mOA -pRP +tSn vdM tGc vdM geK xGE xof -vRa +koU sYD vdM vdM @@ -46712,7 +39238,7 @@ rWo cUl vdM vdM -vdM +eYF vdM vdM cUl @@ -46724,7 +39250,7 @@ bzh ofE fHR fHR -eLi +xbw dff dff vva @@ -46801,25 +39327,25 @@ vva vva vva vva -uoZ -eQF -rtF -rtF -kka -fkE -fkE -fkE -fkE -cay -cay -cay -mEs -jsA -mwG -gxQ -ntP -nXf -kiV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva dff @@ -46837,59 +39363,59 @@ wFh wFh wFh wFh -sVT -vBb -vBb -vBb -vBb -xtz -vBb -cUO +wjE +jeo +jeo +xgq +piv +leC +jeo +bHk lyN vWE vWE lyN wwf pzZ -ttj +uOf wqA ieI qqx qqx prU -ttj +uOf pVf vWE -daS +byq cLO bZK bZK akn -daS -bYW -dvn -wWQ -ihY -ant -eMe -ant -ita -wWQ -hRr -bYW -xTX +byq +nuW +iuS +ame +rPh +ogm +ldF +ogm +cOG +ame +nhK +nuW +jsB jcl afc -xTX -jdi -xWr -pRP +jsB +hEY +gHG +tSn xYL mOA fmE fDI fDI -pRP +tSn vdM tGc vdM @@ -46898,27 +39424,27 @@ vNt vNt pAF fOF -vRa -vRa -vRa +koU +koU +koU eEV -vRa -vRa -eIX -eIX -eIX -eIX -eIX -eIX -eIX -dak -fMI -cYf -bzh +koU +koU +fHn +fHn +fHn +fHn +fHn +fHn +fHn +pBu +ugi +oGv +nZL ofE fHR -fHR -eLi +fqY +xbw dff vva vva @@ -46995,25 +39521,25 @@ vva vva vva vva -jRt -hku -nDR -bfM -nhD -nRt -hku -feU -uOz -lkf -lkf -ldL -lkf -fCA -lkf -aaC -uPG -lkf -brI +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva dff @@ -47031,59 +39557,59 @@ wFh wFh wFh wFh -sVT -wWQ -wWQ -wWQ -wWQ -wWQ -wWQ -pCv +wjE +ame +ame +ame +ame +ame +ame +bFK lyN lyN oPo lyN lGE lyN -ttj -ttj -ttj -ttj -ttj -ttj -ttj +uOf +uOf +uOf +uOf +uOf +uOf +uOf htm -lyN -daS -daS +iks +byq +byq bBI bBI bBI -daS -kWe -lDb -akF -tot -eMe -eMe -eMe -tot -akF -dFq -kWe -xTX +byq +hUC +bHT +sGF +ttR +ldF +ldF +ldF +ttR +sGF +wfS +hUC +jsB rtp rtp -xTX -iDZ -cmP -pRP -pRP -pRP -pRP -pRP -pRP -pRP +jsB +wEo +nSZ +tSn +tSn +tSn +tSn +tSn +tSn +tSn fsG oAd vdM @@ -47091,28 +39617,28 @@ xtt jMZ jMZ jMZ -mnd -abH -vXK -oZE -icR -eMX -hzm -eIX +xoM +ooC +ahG +oKU +gXF +dXN +jfJ +fHn hQS lLh tWk -jdx +xuo xVj -eIX +fHn sVs wsR -cYf +oGv jLy ofE fHR -fHR -eLi +fqY +xbw dff vva vva @@ -47190,24 +39716,24 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva dff @@ -47225,58 +39751,58 @@ wFh wFh wFh jJp -sVT -lWV -lWV -hYr -lWV -lWV -lWV -lWV -lWV -aCT -lWV -hYr -sVt -lWV -lWV -lWV -lWV -ant -ant -ant -lWV -lWV -lWV -lWV -lWV -lWV -hYr -lWV -aCT -lWV -vMu -ant -eMe -eMe -eMe -eMe -eMe -ant -tcG -pvE -kPp -nPo -lWV -lWV -lWV -lWV -lWV -hYr -lWV -lWV -lWV -lWV +wjE +xdf +xdf +kBs +xdf +xdf +xdf +xdf +xdf +svM +xdf +kBs +lAc +xdf +xdf +xdf +xdf +ogm +ogm +ogm +xdf +xdf +xdf +xdf +xdf +xdf +kBs +xdf +svM +xdf +dYO +ogm +ldF +ldF +ldF +ldF +ldF +ogm +skW +uSP +yhr +tsZ +xdf +xdf +xdf +xdf +xdf +kBs +xdf +xdf +xdf +xdf vci vdM ius @@ -47285,28 +39811,28 @@ xtt jMZ jMZ jMZ -aLh -qcU -hzm -hzm -wJl -hzm -qOw -eIX +vXa +qoK +oVB +jfJ +xXU +jfJ +uaO +fHn sSb vVT tLp etJ dLN -eIX +fHn ana nEg -cYf +oGv fHR fHR fHR -fHR -eLi +fqY +xbw dff vva vva @@ -47419,58 +39945,58 @@ wFh wFh wFh wFh -sVT -dPH -hUm -qJu -pvE -pvE -pvE -pvE -pvE -ajz -pvE -tOW -rWZ -vIq -pvE -pvE -qba -fEI -vIq -vIq -vIq -qba -pvE -pvE -vIq -vIq -tOW -nPo -qsM -gCz -xiZ -eMe -eMe -eMe -umn -eMe -eMe -eMe -srG -imV -qFS -eYp -lcK -xZJ -xLo -xLo -xLo -bsc -ant -ant -ant -lWV +wjE +jFO +vkD +ozy +uSP +uSP +uSP +uSP +uSP +djX +uSP +dze +aOa +kmZ +uSP +uSP +jta +hNm +kmZ +wYk +wYk +gWe +xDv +xDv +wYk +wYk +aBU +bsl +qyn +wVA +mhx +ldF +ldF +ldF +akK +ldF +ldF +ldF +jaO +rKz +dCm +byG +bLY +kMl +nAx +nAx +nAx +ejm +ogm +ogm +ogm +xdf iYL vdM vdM @@ -47479,28 +40005,28 @@ xtt jMZ jMZ jMZ -mnd -qcU -hzm -hzm -wJl -hzm -wlK -eIX +xoM +qoK +jfJ +jfJ +xXU +jfJ +fIR +fHn hLT hLT hLT nTK lJM -eIX +fHn ana lTb -rUo +oUm fHR fHR fHR -fHR -eLi +fqY +xbw dff vva vva @@ -47613,58 +40139,58 @@ wFh wFh wFh wFh -sVT -lWV -sVt -lWV -lWV -lWV -lWV -lWV -lWV -aCT -lWV -lWV -lWV -lWV -pMw -lWV -fiN -vMu -ant -ant -lWV -fiN -lWV -lWV -lWV -lWV -lWV -eYp -kPp -pvE -jYL -ant -eMe -eMe -eMe -eMe -eMe -ant -vnh -lWV -aCT -lWV -lWV -fiN -lWV -lWV -lWV -lWV -lWV -lWV -lWV -lWV +wjE +xdf +lAc +xdf +xdf +bZm +xdf +xdf +xdf +svM +xdf +xdf +xdf +xdf +vei +kFm +baM +dYO +tlr +tlr +xdf +oIE +bZm +xdf +xdf +xdf +xdf +byG +yhr +uSP +vnt +ogm +ldF +ldF +ldF +ldF +ldF +ogm +vKP +xdf +svM +xdf +xdf +oIE +xdf +xdf +xdf +mHp +xdf +bZm +xdf +xdf rsr vdM vdM @@ -47673,28 +40199,28 @@ dJS pAF pAF pAF -sms -qcU -wJl -wJl -wJl -wJl -wJl -eIX +xxo +qoK +xXU +xXU +xXU +xXU +xXU +fHn tLp wsx tLp nTK jdx -eIX +fHn cFp mPf +oUm fHR fHR fHR -fHR -fHR -eLi +fqY +xbw dff vva vva @@ -47702,9 +40228,9 @@ vva vva vva vva -vva -vva -vva +dAV +dAV +dAV vva vva vva @@ -47807,88 +40333,88 @@ wFh wFh wFh wFh -sVT -lWV -sVt -lWV -wWQ -wWQ -wWQ -pCv -wWQ -wWQ -wWQ -wWQ -wWQ -wWQ -wWQ -wWQ -wWQ -rFo -ant -lWV -wWQ -wWQ -wWQ -wWQ -wWQ -qFS -qFS -qFS -wWQ -kWe -lDb -uoz -tot -eMe -eMe -eMe -tot -uoz -dFq -kWe -oyC +wjE +xdf +lAc +xdf +ame +ame +ame +bFK +ame +ame +ame +ame +ame +ame +ame +ame +ame +tis +ogm +kFm +ame +ame +ame +ame +opU +dCm +dCm +dCm +opU +hUC +bHT +dTL +ttR +ldF +ldF +ldF +ttR +dTL +wfS +hUC +aZp dHC dHC -hbh -aCT -aCT -hbh -kew -fTh -kew -kew -kew -vRa -vRa -vRa -vRa -kew -kew -kew -kew -kew -qcU -wJl -hzm -hzm -hzm -iKw -eIX +xii +svM +svM +lyz +arD +kzk +arD +arD +arD +koU +koU +koU +koU +pml +pml +arD +arD +arD +wKf +xXU +jfJ +jfJ +jfJ +atr +fHn tKI pEL hiZ wIs jdx -eIX +fHn tKH bve -cYf -cYf -cYf -aIn -rfu -eLi +oGv +oGv +oGv +eIu +eIu +xbw dff vva vva @@ -47896,9 +40422,9 @@ vva vva vva vva -vva -vva -vva +dAV +dAV +dAV vva vva vva @@ -47987,105 +40513,102 @@ vva vva vva vva -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -sVT -lWV -sVt -lWV -wWQ -lqF -lnF -lnF -lnF -lnF -lnF -lnF -lnF -lnF -lnF -lnF -pCv -rFo -ant -lWV -pCv +wjE +wjE +wjE +wjE +wjE +wjE +wjE +wjE +wjE +wjE +wjE +wjE +wjE +wjE +wjE +xdf +lAc +xdf +ame +glo +thH +thH +thH +thH +thH +thH +thH +thH +thH +thH +bFK +tis +ogm +kFm +bFK pVf -pVf -pVf -lyN +vWE +ukS +iks vWE vWE vWE -lyN -bYW -dvn -wWQ -ihY -ant -eMe -ant -ita -wWQ -hRr -bYW -oyC +iks +nuW +iuS +ame +rPh +ogm +ldF +ogm +cOG +ame +nhK +nuW +aZp hAx mKU -wWQ -ant -ant -wWQ -hzm -wJl -hzm -ikB -hzm -hzm -hzm -yfH -dfR -dfR -era -dfR -uVK -dfR -xxm -wJl -hzm -dLT -dLT -dLT -eIX +opU +xdf +xdf +ame +jfJ +xXU +jfJ +xUl +jfJ +jfJ +jfJ +bac +jVk +jVk +fzo +jVk +qxH +jVk +spz +xXU +jfJ +wGE +wGE +wGE +fHn jdx uPY hLt ota qpI -eIX +fHn ana eKZ sut eyF -eLi -eLi -eLi -eLi -vva -vva -vva +xbw +xbw +xbw +xbw vva vva vva @@ -48093,6 +40616,9 @@ vva vva vva vva +dAV +dAV +dAV vva vva vva @@ -48196,84 +40722,84 @@ vWE vWE vWE lyN -lWV -sVt -lWV -wWQ -soB -lnF -soB -soB -soB -soB -soB -soB -soB -soB -soB -wWQ -rFo -lWV -lWV -wWQ +xdf +lAc +xdf +ame +qzS +thH +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +ame +tis +xdf +kFm +ame pVf vWE -ukF -lyN +tQt +iks vWE vWE vWE -iZw -bYW -xEu -aZu -psg -vIq -qba -fEI -psg -aZu -bst -bYW +dTq +nuW +ljK +lot +acM +wYk +gWe +cQd +acM +lot +uKW +nuW jgY tPC tPC -wWQ -lWV -lWV -wWQ -hzm -wJl -wJl -wJl -wJl -wJl -wJl -puq -hzm -hzm -kew -hzm -hzm -hzm -hzm -qxp -dLT -dLT +opU +aZz +aZz +ame +jfJ +xXU +xXU +xXU +xXU +xXU +xXU +eIH +jfJ +jfJ +arD +jfJ +ncy +jfJ +jfJ +wdc +wGE +wGE gaS gaS -eIX -eIX -eIX +fHn +fHn +fHn oDj -eIX -eIX -eIX +fHn +fHn +fHn ana eKZ lII lII -uCd +vYY dff dff dff @@ -48283,20 +40809,20 @@ vva vva vva vva -dJc -dJc -byF -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -48390,74 +40916,74 @@ vWE vWE vWE lyN -svR -grP -svR -wWQ -soB -lnF -soB -soB +cry +mHY +cry +ame +qzS +thH +qzS +qzS sVT sVT sVT -ygh -nuv -nuv -nuv -nuv +gbn +mnL +mnL +mnL +mnL dsX qEk -sSl -nuv +rmc +mnL pVf vWE -pVf -lyN +wtI +iks vWE vWE vWE -rSV -bYW -bYW -bYW -kWe -lWV -mYz -hpM -kWe -bYW -bYW -bYW +dTq +nuW +nuW +nuW +hUC +xdf +izw +nsI +tYZ +nuW +nuW +nuW gSI tPC tPC -wWQ -fia -fia -wWQ -hzm -hzm -kew -kew -kew -kew -kew -puq -hzm -fyk -fyk -fyk -fyk -hzm -hzm -wRI -dLT +opU +ame +ame +ame +jfJ +jfJ +arD +arD +arD +arD +arD +eIH +jfJ +jan +jan +jan +jan +ycN +ydK +wSs +wGE xNJ kNz kNz bEV -kNz +dHw jDq vUi wsC @@ -48467,7 +40993,7 @@ jDq eKZ bPl mnH -uCd +vYY dff dff vva @@ -48477,20 +41003,20 @@ vva vva vva vva -dJc -dJc -xrh -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -48584,69 +41110,69 @@ vWE vWE vWE lyN -lWV -sVt -lWV -wWQ -soB -lnF -soB -soB +xdf +lAc +xdf +ame +qzS +thH +qzS +qzS sVT uzO uzO -ygh +gbn ooV lSL lSL lSL gmJ ooV -ooV -nuv +uVy +mnL pVf -vWE pVf -lyN +pVf +iks vWE vWE vWE -lyN -rSV -lEK -lyN -lyN -aCT -qFS -ubP -oyC +iks +dTq +dTq +iks +iks +svM +dCm +vbt +aZp dHC dHC dHC -oyC +aZp tPC bbF -wWQ -wWQ -wWQ -nQz -nQz -nQz -nQz -hzm -hzm -hzm -kew -puq -tkv -fyk +hSF +nIe +qoZ +fKv +fKv +fKv +fKv +jfJ +jfJ +jfJ +arD +vNI +vMd +jan +tcx dff -dff -fyk -fyk -fyk -wRI -dLT +jan +jan +jan +wSs +wGE ana lHC cYT @@ -48659,23 +41185,9 @@ nrr xhR xhR tPK -uCd -uCd -uCd -vva -vva -vva -vva -vva -vva -vva -vva -vva -vWE -vWE -vWE -vva -vva +vYY +vYY +vYY vva vva vva @@ -48685,6 +41197,20 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -48778,26 +41304,26 @@ sVT sVT sVT lyN -lWV -sVt -lWV -wWQ -soB -lnF -soB -soB +xdf +lAc +xdf +ame +qzS +thH +qzS +qzS sVT uzO uzO -ygh +gbn ooV pIZ pIZ pIZ pEp nyE -ooV -nuv +uVy +mnL cBg vWE pVf @@ -48810,64 +41336,50 @@ vWE vWE vWE vNt -lWV -lWV -hpM -oyC +xdf +xdf +nsI +aZp vWh xku fBn lek tPC tPC -vkR +hSF nIe -nIe -nQz +fgc +fKv jTJ jTJ -nQz -hzm -hzm -hzm -rJq -puq -hzm -fyk +fKv +jfJ +jfJ +jfJ +ubp +eIH +jfJ +jan jrL dff -fyk -fyk -fyk -wRI -dLT +jan +jan +jan +wSs +wGE ana vUi dak cSp oTq -uCd -uCd -uCd -uCd -uCd -uCd -uCd -uCd -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -txf -uce -igu +vYY +vYY +vYY +vYY +vYY +vYY +vYY +vYY vva vva vva @@ -48879,6 +41391,20 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -48970,32 +41496,32 @@ dff dff dff dff -syW -lWV -lWV -sVt -lWV -rFM -soB -lnF -soB -soB +iAX +xdf +xdf +lAc +xdf +ndl +qzS +thH +qzS +qzS sVT cHY uzO -ygh +gbn lOf dPy dPy dPy -gmJ +cOM ooV -ooV -nuv +wwG +mnL kdM vWE pVf -lyN +iks vWE vWE vWE @@ -49004,10 +41530,10 @@ vWE vWE vWE vNt -kDY -kjb -pYt -oyC +jLT +ica +udD +aZp dUn lek weT @@ -49017,30 +41543,30 @@ gPv stf qpd nIe -nQz +fKv xeB xeB -nQz -hzm -hzm -hzm -kew -puq -hzm -fyk +fKv +jfJ +jfJ +jfJ +arD +oSv +jfJ +jan dff llX -fyk -fyk -fyk -wRI -dLT +jan +jan +jan +tSJ +wGE ana vWB vsV -dak +iUy oTq -uCd +vYY rNw dff dff @@ -49059,20 +41585,20 @@ vva vva vva vva -epH -dJc -dJc -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -49164,20 +41690,20 @@ dff dff dff dff -syW -lWV -cMQ -uvC -lWV -syW -soB -lnF -soB +iAX +xdf +bpe +fiK +xdf +iAX +qzS +thH +qzS sVT sVT sVT haM -ygh +gbn ooV dPy dPy @@ -49185,22 +41711,22 @@ dPy gmJ ooV ooV -nuv -nuv +mnL +mnL vWE pVf -lyN -lyN -lzL -lzL -lzL -lzL -lzL -lzL -lzL -lWV -eMe -hpM +iks +iks +oQn +oQn +oQn +oQn +oQn +oQn +oQn +xdf +ldF +nsI dHC gGa lek @@ -49208,33 +41734,33 @@ tPC sWh tPC nbF -vkR +hSF gMP uhI -nQz +fKv jVP mkf -nQz -kew -kew -kew -kew -puq -hzm -fyk +fKv +arD +arD +arD +arD +lWv +jfJ +jan dff bLS -fyk -hzm -ikB -wRI -dLT -ana +jan +wXh +ikt +ylN +wGE +cFp xrC wbz wbz wvv -uCd +vYY rNw dff dff @@ -49253,20 +41779,20 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -49358,20 +41884,20 @@ dff dff dff dff -syW -lWV -fiN -sFJ -lWV -syW -soB -lnF -soB +iAX +xdf +oIE +gQI +faU +iAX +qzS +thH +qzS sVT vWE vWE vWE -ygh +gbn ooV pIZ pIZ @@ -49380,21 +41906,21 @@ fGw msh ooV ooV -nuv +mnL vWE pVf vWE vWE -lzL -fEt -quD +oQn +nPn +bUr fYM qIk -jiL -lzL -lWV -eMe -hpM +fEt +oQn +xdf +ldF +nsI dHC lek lek @@ -49402,33 +41928,33 @@ tPC igD tPC voO -vkR +hSF hzw wDH -nQz -prR +fKv +hJe bib -nQz -xgF -hzm -hzm -hzm -puq -hzm -fyk +fKv +gpO +jfJ +jfJ +jfJ +fhU +nmL +jan dff sVT -fyk -hzm -hzm -vIc -dFM +jan +wXh +wXh +vgG +sxt crZ isT -dLT +wGE bBm bBm -uCd +vYY rNw dff dff @@ -49447,20 +41973,20 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -49552,20 +42078,20 @@ dff dff dff dff -syW -lWV -lWV -lWV -lWV -syW -soB -lnF -soB +iAX +xdf +xdf +xdf +xdf +iAX +qzS +thH +qzS haM vWE vWE vWE -ygh +gbn ooV lSL lSL @@ -49574,21 +42100,21 @@ iIQ cmh cmh tXe -nuv +mnL vWE pVf vWE wtI -lzL -nwI +oQn +jiL jiL jiL jiL jiL rhu -lWV -eMe -hpM +xdf +ldF +nsI dHC dUn lek @@ -49596,33 +42122,33 @@ tPC sWh tPC tPC -vkR +hSF gMP nIe -nQz +fKv cwW aqM pIh -dfR -dfR -dfR -dfR -izT -hzm -fyk +jVk +jVk +jVk +jVk +qeU +jfJ +jan dff -dff -fyk -hzm -hzm -hzm -dLT +sVT +waJ +waJ +wXh +wXh +kOC ana gJI -hpe +iFC gaS gaS -uCd +vYY rNw dff dff @@ -49641,20 +42167,20 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -49746,77 +42272,77 @@ vva dff dff dff -syW -lWV -lWV -lWV -lWV -syW -soB -lnF -qDw +iAX +xdf +xdf +xdf +xdf +iAX +qzS +thH +vPF sVT sVT sVT sVT -ygh +gbn lVp -nuv -aKn -aKn +mnL +irH +irH kBJ kBJ imQ rSu -aKn +irH vWE pVf vWE -vWE -lzL -nPn +pVf +ffr +jiL jiL jiL jiL pWD -lzL -dPH -oij -mLS -oyC +oQn +jFO +hGc +cuM +aZp gGa lek vmn qgr hzp jvv -vkR +hSF gMP nIe -nQz +fKv aOj uzg -nQz -nQz -nQz -nQz -hzm -hzm -hzm -fyk +fKv +fKv +fKv +fKv +jfJ +tNp +jfJ +jan dff -dff -fyk -fyk -fyk -hzm -dLT -cFp +sVT +fzE +fzE +wXh +wXh +kOC +ana gJI +iFC gaS gaS -gaS -uCd +vYY rNw dff dff @@ -49835,20 +42361,20 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -49940,102 +42466,88 @@ vva dff dff dff -syW -lWV -lWV -lWV -lWV -wWQ -soB -lnF -qDw -qDw -qDw -soB -soB -soB -soB -soB -aKn +iAX +xdf +xdf +xdf +xdf +ame +qzS +thH +vPF +vPF +vPF +qzS +qzS +qzS +qzS +qzS +irH qDn skn skn skn llY -aKn +irH vWE pVf pVf pVf -lzL -urA +oQn +wuL jiL jiL qae wcr -lzL -lWV -lWV -hpM -oyC +oQn +bZm +xdf +nsI +aZp ceL wYE oEl lek hzp jvv -vkR +hSF gMP nIe -nQz +fKv mjo oVg qpV hGb mkf -nQz -kew -rJq -kew -fyk +fKv +arD +rUQ +arD +jan dff -dff -fyk -fyk -fyk -rJq -dLT +sVT +jan +wXh +wXh +wXh +wGE ana gJI -dLT +wGE dQv ppm -uCd +vYY rNw dff dff vva -lyN -lyN -rEI -rEI -lyN -rUV -lyN -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -50043,6 +42555,20 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -50134,88 +42660,88 @@ vva dff dff dff -syW -fia -fia -lWV -lWV -wWQ -soB -lnF -qDw -qDw -qDw -soB -soB -soB -soB -soB +iAX +aZz +aZz +xdf +xdf +ame +qzS +thH +vPF +vPF +vPF +qzS +qzS +qzS +qzS +qzS nJh skn skn -cmE +sPi pTp hcj -aKn -lyN -lyN -lyN +irH +iks +iks +iks htm -lzL -lzL +oQn +oQn tWL rhu tWL -lzL -lzL -wWQ -kWe -joE -pIY -pIY -pIY -pIY -pIY -pIY -vkR -vkR +oQn +oQn +opU +cMh +oyH +uMe +uMe +uMe +uMe +uMe +uMe +hSF +hSF rJz iDl -nQz +fKv jfg noF -noF +mEU xPj jYz -nQz -hzm -hzm -hzm -fyk +fKv +jfJ +tNp +jfJ +jan dff dff -fyk -fyk -fyk -hzm -dLT +jan +wXh +wXh +wXh +wGE nBf jyp -dLT +wGE mtd qSF -uCd +vYY rNw dff dff vva -lyN -xvf -myG -jqe -aGW -ufe -rEI +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -50223,20 +42749,20 @@ vva vva vva vva -vva -eLi -eLi -eLi -eLi -eLi -eLi -dez -dez -eLi -eLi -eLi -eLi -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -50328,35 +42854,35 @@ vva vva dff dff -syW -wWQ -wWQ -wWQ -pCv -wWQ -soB -lnF -soB -soB -soB -xJG -twD -iXS -iLX -soB -aKn +iAX +ame +ame +ame +bFK +ame +qzS +thH +qzS +qzS +qzS +pGl +gGt +rbU +gMT +qzS +irH hRo skn tCW dNe bUj -aKn +irH nkZ nkZ eHY qKn dbk -cPf +dHu aAa aAa oac @@ -50364,73 +42890,73 @@ qQL qQL gSO aAa -lzY +iWy spY iZx fdz quW ulN -pIY +uMe nIe nIe ism uhI -nQz +fKv bRc -rvq -rvq +xFx +xFx maP -rvq -rvq -hzm -hzm -hzm -fyk +xFx +xFx +jfJ +kkb +nmL +jan dff dff -fyk -hzm -hzm -hzm -dLT -gAo +jan +wXh +wXh +wXh +wGE +rmB fZf -gAo -meC -meC -meC +rmB +mzk +mzk +mzk rNw dff vva vva -lyN -vqs -tqD -tqD -mUv -szv -lyN -vva -vva -vva -vva -vva -vva -vva -vva -eLi -hju -dZx -qSU -unH -svz -bau -bau -rNn -rce -cBR -iaj -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -50522,29 +43048,29 @@ vva vva dff dff -qDw -soB -soB -soB -lnF -soB -soB -lnF -soB -soB -soB -soB -soB -soB -soB -soB -aKn +vPF +qzS +ryJ +vmH +thH +qzS +qzS +thH +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +irH skn -aKn -aKn -aKn -aKn -aKn +irH +irH +irH +irH +irH nkZ nkZ afh @@ -50558,73 +43084,73 @@ keI djq ffa aAa -lzY +iWy sRA txP gDo rQH jqn -pIY +uMe nIe nIe pfP moY kuo cvg -rvq +xFx jgu nvU -sVg -rvq -hzm -hzm -hzm -fyk +nfG +xFx +jfJ +vHe +jfJ +jan dff dff -fyk -hzm -hzm -hzm -hzm -gAo +jan +jfJ +xXU +xXU +jfJ +rmB smq iuT -uFV +uAk dGQ -meC +mzk rNw dff vva vva -lyN -hAA -tqD -aXS -bii -grp -lmm -vva -vva -vva -vva -vva -vva -vva -vva -eLi -rEH -gaP -uqY -eLi -oew -jXf -jXf -jXf -jXf -roM -fuz -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -50716,29 +43242,29 @@ vva vva dff dff -qDw -soB -soB -soB -lnF -soB -soB -lnF -soB -soB -soB -soB -soB -soB -soB -soB -aKn +vPF +qzS +qzS +qzS +thH +qzS +qzS +thH +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +irH qag -aKn +irH tdl xZe maF -cPf +dHu cgI cie vYD @@ -50752,73 +43278,73 @@ uDG iGc soj aAa -lzY +iWy fer qSQ mhQ qSQ nPQ -pIY -pIY -pIY +uMe +uMe +uMe tQs -pIY +uMe wmQ cvg -rvq +xFx dYC oft awY -rvq -hzm -hzm -hzm -fyk +xFx +dwh +vHe +jfJ +jan dff dff -fyk -hzm -hzm -hzm -hzm -gAo +jan +jfJ +xXU +xXU +jfJ +rmB uOQ qLg ppM dQW -meC +mzk rNw dff vva vva -lyN -lTe -cvM -pqP -fFL -moH -lyN -vva -vva -vva -vva -vva -vva -vva -vva -eLi -jOX -eLi -eLi -eLi -imf -jXf -jXf -jXf -sOZ -nnh -uji -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -50910,25 +43436,25 @@ vva vva vva dff -qDw -soB -soB -soB -lnF -lnF -lnF -lnF -qDw -qDw -qDw -soB -soB -soB -soB -soB -aKn +vPF +qzS +qzS +qzS +thH +thH +thH +thH +vPF +vPF +vPF +qzS +qzS +qzS +qzS +qzS +irH sLX -aKn +irH asI asI asI @@ -50946,73 +43472,73 @@ uRB uRB uRB aAa -eop -weI -pFX -pFX -aaq -pFX -tcZ -riy -riy -snW -pIY +fRL +lWk +mIV +mIV +wzz +mIV +hMw +xuE +xuE +kui +uMe ohL cvg -rvq +xFx orT lYn leL -rvq -hzm -hzm -hzm -fyk +xFx +jfJ +hqV +rhh +jan dff dff -fyk -fyk -fyk -hzm -hzm -gAo +jan +jan +jan +jfJ +jfJ +rmB vPK dQW clk dQW -meC +mzk rNw vva vva vva -lyN -myG -frT -rHH -nlV -qHg -rEI -vva -vva -vva -vva -vva -vva -vva -vva -lkb -kZn -qQg -vlU -ohD -imf -hHs -dmY -uPL -oul -roM -pod -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -51104,36 +43630,36 @@ vva vva vva dff -qDw -soB -soB -soB -soB -soB -soB -soB -qDw -qDw -qDw -soB -soB -soB -soB -soB -aKn -aKn -aKn +vPF +qzS +qzS +qzS +qzS +qzS +qzS +qzS +vPF +vPF +vPF +qzS +qzS +qzS +qzS +qzS +irH +irH +irH asI iKt cDU -cPf +dHu oJb mHS mHS mHS urs -cPf -aAa +dHu +iTr aAa uRB uRB @@ -51146,67 +43672,67 @@ aAa aAa oOs aAa -tNa +bMF wAb wAb bTe -pIY +uMe hVt cvg -rvq +xFx bIq kCM pgw -rvq -hzm -hzm -hzm -fyk +xFx +jfJ +jfJ +jfJ +jan dff dff -fyk -fyk -fyk -hzm -hzm -gAo +jan +jan +jan +jfJ +jfJ +rmB hdE rTc hdE ydr -meC +mzk dff vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -lkb -ijI -kFA -jXf -iyO -imf -iKN -kTy -jVb -hbY -qcZ -baJ -imf +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -51298,35 +43824,35 @@ vva vva vva dff -qDw -soB -soB -soB -soB -soB -soB -soB -qDw -qDw -qDw -soB -soB -soB -soB -soB -soB -soB -soB -soB +vPF +qzS +qzS +qzS +qzS +qzS +qzS +qzS +vPF +vPF +vPF +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS lHT -cPf -cPf -cPf +dHu +dHu +dHu drB drB -cPf -cPf -cPf +dHu +dHu +dHu pgR eEA fiJ @@ -51340,67 +43866,67 @@ ccM iYU iZx puQ -pIY +uMe eVd beU hob -pIY +uMe tpO cux -rvq -fzv +xFx +bnw nrm bbe -rvq -hzm -hzm -hzm -fyk +xFx +jfJ +jfJ +jfJ +jan dff dff -fyk -fyk -fyk -hzm -hzm -gAo +jan +jan +jan +jfJ +jfJ +rmB sIE hzD kFk dQW -meC +mzk dff vva -vva -rEI -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -eLi -bwT -jXf -jCh -aHP -imf -nWn -rfI -lxD -fZw -qcZ -hGy -imf +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -51492,28 +44018,28 @@ vva vva vva vva -qDw -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB +vPF +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS wSZ -cPf +dHu lso toY bzD @@ -51534,67 +44060,67 @@ kZe rQH mjr nVX -pIY +uMe mPe mcT kbw -pIY +uMe ous iNW -rvq +xFx dam bEg kae -rvq -hzm -hzm -hzm -fyk +xFx +jfJ +jfJ +jfJ +jan dff dff -fyk -hzm -hzm -hzm -hzm -gAo +jan +jfJ +jfJ +jfJ +jfJ +rmB eCf ghw hdE dQW -meC +mzk vva vva -vva -rEI -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -eLi -xjI -jXf -alD -nck -imf -lSM -vrF -qjp -hbY -qcZ -hGy -imf +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -51686,28 +44212,28 @@ vva vva vva vva -qDw -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -soB -vxD -cPf +vPF +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +qzS +kkq +dHu mvj mvj bzD @@ -51728,67 +44254,67 @@ lbf alV crx vTB -pIY +uMe wAb wAb mqR -fIQ -fIQ -fIQ -rvq -rvq +cRQ +cRQ +cRQ +xFx +xFx fEx -rvq -rvq -fIQ -hzm -hzm -fyk +xFx +xFx +cRQ +jfJ +jfJ +jan dff dff -fyk -hzm -hzm -hzm -hzm -gAo +jan +jfJ +jfJ +jfJ +jfJ +rmB mCX haf vjz tDo -meC +mzk vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -eLi -mez -cvD -alD -nck -imf -nGE -vrF -rJM -rCG -qEl -dJv -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -51863,6 +44389,7 @@ vva vva vva vva +yfn vva vva vva @@ -51879,36 +44406,35 @@ vva vva vva vva -vva -qDw -soB -soB -soB -soB -qDw -qDw -qDw -qDw -qDw -qDw -qDw -qDw -qDw -qDw -qDw -qDw -soB -soB -lsN -soB -cPf +vPF +qzS +qzS +qzS +qzS +vPF +vPF +vPF +vPF +vPF +vPF +vPF +vPF +vPF +vPF +vPF +vPF +qzS +qzS +lEi +qzS +dHu lso toY bzD bzD lso toY -cPf +dHu hdl sel bet @@ -51926,7 +44452,7 @@ hPj psk aoG bxK -fIQ +cRQ wBN qvD pLE @@ -51934,55 +44460,55 @@ kVd rba kwH cSm -fIQ -fyk -fyk -fyk +cRQ +jan +jan +jan dff dff -fyk -fyk -fyk -fyk -fyk -meC -meC -meC -meC -meC -meC +jan +jan +jan +jan +jan +mzk +mzk +mzk +mzk +mzk +mzk vva vva -vva -vva -ptN -sIs -dxo -mWe -aGW -myG -vva -vva -vva -vva -vva -vva -vva -vva -vva -eLi -xOm -fcG -qxx -mxN -imf -haZ -bQz -kJb -hbY -jXf -tSx -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -52074,12 +44600,12 @@ vva vva vva vva -qDw -soB -soB -soB -soB -qDw +vPF +qzS +qzS +qzS +qzS +vPF dff dff dff @@ -52090,12 +44616,12 @@ dff dff dff dff -qDw -soB -soB -soB -soB -cPf +vPF +qzS +qzS +qzS +qzS +dHu mvj mvj bzD @@ -52120,15 +44646,15 @@ hPj wAb wAb wAb -fIQ -qlI -lya -tqW +cRQ +gaw +pCb +exf xiE gzK tsy sPv -fIQ +cRQ dff dff dff @@ -52147,36 +44673,36 @@ vWE sVT vva vva -pxM -vva -fTY -sIs -uhg -jtR -jtR -jMT -vva -vva -vva -vva -vva -vva -vva -vva -vva -eLi -owx -jXf -jXf -iyO -imf -oqp -sSR -sSR -nDF -jXf -nkr -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -52268,12 +44794,12 @@ vva vva vva vva -qDw -qDw -qDw -soB -soB -qDw +vPF +vPF +vPF +qzS +qzS +vPF dff dff vva @@ -52284,12 +44810,12 @@ dff dff dff dff -qDw -soB -soB -soB -soB -cPf +vPF +qzS +qzS +qzS +qzS +dHu mvj mvj bzD @@ -52314,15 +44840,15 @@ hPj wAb wAb wAb -fIQ -fIQ -fIQ -fIQ +cRQ +cRQ +cRQ +cRQ fUz uoT tsy sSk -fIQ +cRQ dff dff dff @@ -52341,36 +44867,36 @@ sVT sVT vva vva -pxM -vva -aBt -sIs -wLS -jyo -jyo -qqS -vva -vva -vva -vva -vva -vva -vva -vva -vva -eLi -xgc -ePH -etV -hqf -imf -sxX -rZK -rZK -jLR -rZK -wHt -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -52464,10 +44990,10 @@ vva vva vva vva -qDw -soB -soB -qDw +vPF +qzS +qzS +vPF dff vva vva @@ -52478,11 +45004,11 @@ dff dff dff dff -qDw -soB -jnJ -soB -soB +vPF +qzS +arV +qzS +qzS cIP mvj mvj @@ -52490,7 +45016,7 @@ oJq oJq mvj mvj -cPf +dHu qDD txP txP @@ -52504,19 +45030,19 @@ pIY qeA crx qAV -pIY +uMe lqy lqy lqy -fIQ +cRQ wBN qvD gSN pjH -vPY +seB jCp hCc -fIQ +cRQ dff dff dff @@ -52535,36 +45061,36 @@ vva vva vva vva -vva -vva -vQU -oOq -eEB -vkg -jnN -jnN -vva -vva -vva -vva -vva -vva -vva -vva -vva -eLi -uNU -hrJ -eLi -eLi -eLi -eLi -sHn -eLi -eLi -eLi -crP -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -52658,10 +45184,10 @@ vva vva vva vva -qDw -soB -soB -qDw +vPF +qzS +qzS +vPF vva vva vva @@ -52672,12 +45198,12 @@ vva dff dff dff -qDw -soB -jnJ -soB -soB -cPf +vPF +qzS +arV +qzS +qzS +dHu mvj mvj mvj @@ -52698,19 +45224,19 @@ txP kZe txP nVX -pIY +uMe dDq wAb wAb -fIQ -iux +cRQ +rGT lya -tqW +exf vQL sQs lAH dxw -fIQ +cRQ dff dff dff @@ -52731,34 +45257,34 @@ vva vva vva vva -awU -bKu -qxo -jzD -bYA -bKu -vva -vva -vva -vva -vva -vva -vva -vva -vva -eLi -xVO -hrJ -eLi -fkZ -dPo -eLi -qfJ -qNL -eLi -sRY -qfJ -imf +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -52852,10 +45378,10 @@ vva vva vva vva -qDw -soB -soB -qDw +vPF +qzS +qzS +vPF vva vva vva @@ -52866,15 +45392,15 @@ vva dff dff dff -qDw -qDw -jnJ -soB -soB -bjk -bjk -bjk -bjk +vPF +vPF +arV +qzS +qzS +bHz +bHz +bHz +bHz oom oom oom @@ -52892,19 +45418,19 @@ kZe rQH txP jec -pIY +uMe tRO sNb wAb -fIQ -fIQ -fIQ -hdP -hdP +cRQ +cRQ +cRQ +cAY +cAY bBu -hce -hdP -fIQ +fve +cAY +cRQ dff dff dff @@ -52926,33 +45452,33 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -eLi -dHF -laa -eLi -kVu -jzd -eLi -oTe -xcT -eLi -xtv -jzd -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -53046,10 +45572,10 @@ vva vva vva vva -qDw -soB -soB -qDw +vPF +qzS +qzS +vPF vva vva vva @@ -53061,18 +45587,18 @@ dff dff dff dff -qDw -jnJ -soB -soB -qDw +vPF +arV +qzS +qzS +vPF dff dff -bjk -bjk -bjk -bjk -cPf +bHz +bHz +bHz +bHz +dHu nEv uri nbs @@ -53086,18 +45612,18 @@ qIQ txP jQj qAV -pIY +uMe kMO gRL wAb -sJa +aZn dff dff -hdP +cAY bTI hjp jOg -hdP +cAY dff dff dff @@ -53120,33 +45646,33 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -eLi -cvF -fmu -eLi -lQh -oWj -eLi -vsu -ulQ -eLi -dCV -jnH -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -53240,10 +45766,10 @@ vva vva vva vva -qDw -qDw -qDw -qDw +vPF +vPF +vPF +vPF vva vva vva @@ -53255,18 +45781,18 @@ vva dff dff dff -qDw -jnJ -soB -soB -qDw +vPF +arV +qzS +qzS +vPF dff dff -sVT +lej vWE vWE vWE -pIY +uMe djq djq nEv @@ -53280,18 +45806,18 @@ ike vSu crx nVX -pIY -pIY -pIY -pIY -sJa +uMe +uMe +uMe +uMe +aZn dff dff -hdP +cAY wFb llD nlM -hdP +cAY dff dff dff @@ -53314,33 +45840,33 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -eLi -xPe -hrJ -eLi -raa -eLi -eLi -eLi -azC -eLi -blq -eLi -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -53449,19 +45975,19 @@ vva dff dff dff -qDw -aHp -xTC -xTC -qDw +vPF +tQb +jvr +jvr +vPF dff dff -sVT +lej vWE vWE vWE -pIY -iGc +uMe +oQa vwB djq djq @@ -53478,14 +46004,14 @@ iYh iYh iYh auD -sJa +aZn dff dff -hdP +cAY fSH aFl rVt -lVC +uQp tVd dff dff @@ -53508,33 +46034,33 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -tdA -uNU -hrJ -tml -ktf -snt -snt -snt -qye -snt -xHU -snt -imf +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -53643,18 +46169,18 @@ vva dff dff dff -qDw -jnJ -soB -lqF -qDw +vPF +arV +qzS +glo +vPF dff dff -sVT +lej vWE vWE vWE -pIY +uMe kBB bet djq @@ -53672,14 +46198,14 @@ txP crx txP wXW -sJa +aZn dff dff -hdP +cAY iHB -waG +pSP sLm -hdP +cAY dff dff dff @@ -53702,33 +46228,33 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -wlG -wlG -wlG -vva -vva -eLi -uNU -hrJ -eLi -nxO -wzP -wNc -woZ -rcV -ohZ -vag -snt -imf +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -53824,7 +46350,7 @@ vva vva vva dff -dff +qFt vva vva vva @@ -53837,18 +46363,18 @@ vva vva dff dff -qDw -caS -ewM -woh -qDw +vPF +pdt +dec +aMc +vPF dff dff -sVT +lej vWE vWE vWE -pIY +uMe juN gKP bet @@ -53866,14 +46392,14 @@ crx txP crx jMt -sJa +aZn dff dff -hdP +cAY oBk ggL xZs -hdP +cAY dff dff vva @@ -53881,48 +46407,48 @@ vva vva vva vva +dAV +dAV +vva +vva +vva +qFt +dff +vva +vva +vva +vva +vva vva vva vva -vva -vva -dff -dff -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -uSs -vva -iuh -vva -ijf -vva -eLi -ybk -lBb -eLi -eLi -eLi -eLi -eLi -uve -rij -pdz -fMS -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -54031,18 +46557,18 @@ vva vva dff dff -qDw -soB -soB -qDw -qDw +vPF +qzS +qzS +vPF +vPF dff dff -sVT +lej vWE vWE vWE -jyN +mYM vaA rJK vpp @@ -54053,70 +46579,70 @@ vaA nGI gaa qkG -dWz -dWz +bTM +bTM izc uSq izc uSq gCl -sJa +aZn dff dff -hdP -hdP +cAY +cAY lVE vgx -hdP +cAY dff dff vva vva -rbb -rbb -rbb -rbb -bBW -rbb -pmY +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva vva -lyN -lyN -lyN -lyN -wNA -lyN -lyN -vva -vva -vva -vva -vva -vva -vva -vva -uSs -vva -iuh -vva -ijf -vva -ovr -svm -fpm -ovr -snX -kxZ -msK -eLi -eLi -rPm -qBp -eLi -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -54225,92 +46751,92 @@ vva vva dff dff -qDw -soB -soB -qDw +vPF +qzS +qzS +vPF dff dff vva -sVT -sVT -sVT -sVT -sJa -sJa -sJa -sJa -sJa -sJa -sJa +lej +lej +lej +lej +aZn +aZn +aZn +aZn +aZn +aZn +aZn ujR -sJa -sJa -sJa -sJa -sJa -sJa -sJa -sJa -sJa -sJa -sJa +aZn +aZn +aZn +aZn +aZn +aZn +aZn +aZn +aZn +aZn +aZn vva dff dff -hdP +cAY jVf vQj -hdP +cAY dff dff vva vva -rbb -swY -oWa -two -lrs -dKS -olC +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva vva -fzU -myG -qYZ -myG -hEs -rQd -lyN -vva -vva -vva -vva -vva -vva -vva -vva -uSs -vva -vva -vva -ijf -vva -dOI -oSL -rKj -jTK -rKj -fZC -dlq -eLi -fyv -sOZ -nnh -oaf -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -54419,92 +46945,92 @@ vva vva dff dff -qDw -qDw -qDw -qDw +vPF +vPF +vPF +vPF dff dff vva vva dff -dff -dff -xEL -ijt -ijt -ijt -ijt -ijt -ijt -kpk -ijt -ijt -ijt -ijt -ijt -ijt -xEL -dff -dff +sVT +asI +kAq +qUN +ueM +xIq +rPG +rpG +bDk +oLB +qUN +qUN +qUN +qUN +qUN +qUN +qUN +vWE +sVT dff vva vva dff dff -hdP -hdP -hdP -hdP +cAY +cAY +cAY +cAY dff dff vva vva -rbb -soa -rIc -jFz -lrs -gIJ -soa +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva vva -lyN -pqP -vgW -npE -uii -qCe -lyN -vva -vva -vva -vva -vva -vva -vva -vva -vva -arJ -arJ -arJ -vva -vva -nRw -jKL -jKL -jKL -jKL -gbm -dlq -kXY -jXf -jXf -mfJ -ptl -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -54614,91 +47140,91 @@ vva dff dff dff -qDw -qDw +vPF +vPF dff dff dff vva vva dff -dff -dff -xEL -ijt -ijt -ijt -ijt -ijt -ijt -kpk -ijt -ijt -ijt -ijt -ijt -ijt -xEL -dff -dff -dff -vva -vva -dff -dff -dff sVT +vWE +rsM +rsM +ueM +xIq +rPG +qUN +qUN +oLB +qUN +qUN +qUN +qUN +qUN +qUN +qUN +vWE sVT dff +vva +vva +dff +dff +dff +qRx +qRx +dff dff dff vva vva -rbb -iCy -kEo -jFz -lrs -iCy -kEo +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva vva -lyN -erO -wJA -dQR -vzh -bbK -lyN -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -xUD -xNA -hdY -ueX -jKL -msG -fpu -mKA -kOn -cVM -xui -npk -imf +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -54808,91 +47334,91 @@ vva dff dff dff -qDw -qDw +vPF +vPF dff dff dff vva vva vva -dff -dff -xEL -ijt -ijt -ijt -ijt -ijt -ijt -kpk -ijt -ijt -ijt -ijt -ijt -ijt -xEL -dff -dff -vva -vva -vva -dff -dff -dff sVT +pNq +jtb +rsM +rPG +rPG +rPG +qUN +qUN +oLB +qUN +qUN +qUN +qUN +qUN +qUN +qUN +vWE sVT +vva +vva +vva +dff +dff +dff +qRx +qRx dff dff dff vva vva -xcC -xJS -kUT -jFz -dkq -kUT -vym +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva vva -lyN -cZX -iHc -xvf -lyN -lyN -lyN -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -inU -jKL -jig -sBB -jKL -eMf -pQD -eLi -eiv -tzu -oSJ -tzu -imf +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -55002,64 +47528,65 @@ vva vva dff dff -qDw -qDw +vPF +vPF dff dff dff vva vva vva -dff -dff -xEL -ijt -ijt -ijt -ijt -ijt -ijt -kpk -ijt -ijt -ijt -ijt -ijt -ijt -xEL -dff -dff -vva -vva -vva -dff -dff -dff sVT +hJw +llw +qUN +vDi +qUN +qUN +qUN +qUN +oLB +qUN +qUN +qUN +qUN +qUN +qUN +qUN +vWE sVT +vva +vva +vva +dff +dff +dff +qRx +qRx dff dff vva vva vva -lNH -ucf -ucf -tMx -juB -gOo -qkp +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva vva -lyN -lyN -lyN -lyN -lyN -yiy -mAI +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -55072,21 +47599,20 @@ vva vva vva vva -vva -vva -jbe -nzG -jKL -eEX -wAz -dCS -xnZ -eLi -eLi -eLi -eLi -eLi -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -55204,25 +47730,25 @@ vva vva vva vva -dff -dff -xEL -ijt -ijt -ijt -ijt -ijt -ijt -kpk -ijt -ijt -ijt -ijt -ijt -ijt -xEL -dff -dff +sVT +sVT +rPG +rPG +rPG +qUN +qUN +qUN +qUN +oLB +qUN +qUN +qUN +qUN +qUN +qUN +rPG +sVT +sVT vva vva vva @@ -55236,13 +47762,25 @@ dff vva vva vva -aAL -ucf -ucf -ucf -jLx -ucf -ucf +dAV +dAV +dAV +dAV +dAV +dAV +dAV +vva +vva +vva +vva +vva +vva +vva +vva +dAV +dAV +dAV +dAV vva vva vva @@ -55255,32 +47793,20 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -iqs -hVj -eFv -naS -naS -weU -dlq -eLi -ktF -jXf -bXZ -aof -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -55400,21 +47926,21 @@ vva vva dff dff -xEL -ijt -ijt -ijt -ijt -ijt -ijt -kpk -kpk -kpk -kpk -sFH -kst -xEL -xEL +rPG +qUN +qUN +qUN +qUN +qUN +qUN +oLB +oLB +oLB +oLB +oLB +jPD +qkX +rPG dff dff vva @@ -55430,13 +47956,13 @@ dff vva vva vva -rbb -wwv -hsZ -tIp -yjq -kug -rbb +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -55461,20 +47987,20 @@ vva vva vva vva -vva -hdP -hdP -hdP -hdP -klV -jGg -eLr -eLi -fZr -iAG -cYf -cYf -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -55585,7 +48111,7 @@ vva vva dff dff -dff +qFt vva vva vva @@ -55594,21 +48120,21 @@ vva vva dff dff -xEL -xEL -xEL -xEL -xEL -xEL -xEL -kpk -xEL -xEL -xEL -xEL -xEL -xEL -xEL +rPG +rPG +rPG +rPG +rPG +rPG +rPG +dqQ +rPG +rPG +rPG +rPG +rPG +rPG +rPG dff dff vva @@ -55617,20 +48143,20 @@ vva vva vva vva -dff +qFt dff dff vva vva vva vva -rbb -rbb -rbb -rbb -rbb -dLE -rbb +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -55655,20 +48181,20 @@ vva vva vva vva -vva -eLT -dBZ -tat -hdP -qlz -dQc -vSX -sGb -jDB -lQL -bXZ -twK -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -55791,15 +48317,15 @@ pAn pAn pAn aNP -xEL -ijt -ijt -ijt -kpk -ijt -ijt -ijt -xEL +rPG +qUN +qUN +qUN +oLB +qUN +qUN +qUN +rPG wDe pAn pAn @@ -55820,6 +48346,11 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -55844,25 +48375,20 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -mQa -cik -czq -hdP -aFr -hHM -mvu -cYf -cYf -cYf -cYf -cYf -eLi +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -55985,15 +48511,15 @@ vva dff iyn klF -xEL -ijt -ijt -ijt -kpk -ijt -ijt -ijt -xEL +rPG +qUN +qUN +qUN +oLB +qUN +qUN +qUN +rPG kZo kEk dff @@ -56179,15 +48705,15 @@ vva dff dff hyH -xEL -ijt -ijt -ijt -kix -ijt -ijt -ijt -xEL +rPG +tFl +tFl +tFl +xIq +tFl +tFl +tFl +rPG hyH dff dff @@ -56373,15 +48899,15 @@ vva dff dff hyH -xEL -ijt -ijt -ijt -kix -ijt -ijt -ijt -xEL +rPG +xIq +xIq +xIq +xIq +xIq +xIq +xIq +rPG hyH dff dff @@ -56567,15 +49093,15 @@ vva dff dff hyH -xEL -xEL -xEL -xEL -xEL -xEL -xEL -xEL -xEL +rPG +rPG +rPG +rPG +rPG +rPG +rPG +rPG +rPG hyH dff dff @@ -56602,13 +49128,13 @@ vva vva vva vva -pMd -dJc -dJc -iXe -jnN -jnN -pcQ +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -56796,13 +49322,13 @@ vva vva vva vva -pMd -dJc -dJc -dJc -dJc -dJc -sIs +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -56990,13 +49516,13 @@ vva vva vva vva -pMd -dJc -dJc -dJc -dJc -dJc -sIs +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -57151,10 +49677,10 @@ vva vva vva dff -sVT -sVT +bQV +bQV pNf -sVT +bQV dff vva vva @@ -57184,13 +49710,13 @@ vva vva vva vva -pMd -dJc -dJc -dJc -dJc -dJc -sIs +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -57345,10 +49871,10 @@ vva vva vva vva -sVT +bQV wFh cwQ -sVT +bQV vva vva vva @@ -57378,13 +49904,13 @@ vva vva vva vva -sDA -lcm -lcm -lcm -lcm -lcm -aRY +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -57539,10 +50065,10 @@ vva vva vva vva -sVT +bQV wFh cwQ -sVT +bQV vva vva vva @@ -57733,10 +50259,10 @@ vva vva vva vva -sVT +bQV wSj hNn -sVT +bQV vva vva vva @@ -57927,10 +50453,10 @@ vva vva vva vva -sVT -sVT +bQV +bQV pNf -sVT +bQV vva vva vva @@ -58527,12 +51053,12 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -58721,12 +51247,12 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -58914,14 +51440,14 @@ vva vva vva vva -aMv -esr -mTi -sVT -sVT -sVT -sVT -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -58951,25 +51477,25 @@ vva vva vva vva -tGW -vtN -pIS -wxp -vXp -dxM -aDS -foS -tLG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -59108,14 +51634,14 @@ vva vva vva vva -lVH -kpw -puM -ejt -erS -nPA -peG -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -59145,25 +51671,25 @@ vva vva vva vva -tGW -dxM -foS -foS -foS -foS -qNp -foS -tLG -bsG -jAA -bSq -bSq -kZA -bSq -bSq -jAA -bsG -bsG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -59302,14 +51828,14 @@ vva vva vva vva -hOy -cvO -eyK -rhF -mUD -dTw -qNX -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -59339,25 +51865,25 @@ vva vva vva vva -tGW -pwm -vtN -nIh -qMT -vOo -vtN -pwm -tLG -bsG -bSq -bSq -neX -bSq -bSq -bSq -bSq -bsG -bsG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -59496,14 +52022,14 @@ vva vva vva vva -cOk -iVD -wlq -oTA -liX -yiC -oYE -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -59533,25 +52059,25 @@ vva vva vva vva -riH -riH -riH -nyX -nyX -nyX -nyX -nyX -bsG -bsG -bSq -bSq -rLz -gvC -bSq -bSq -bSq -bsG -bsG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -59690,14 +52216,14 @@ vva vva vva vva -aQd -peB -lXU -nhm -uFp -cUA -mSG -sVT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -59727,26 +52253,26 @@ vva vva vva vva -riH -xNb -tjE -nyX -mDN -rzN -duw -nyX -bsG -bsG -bSq -bSq -qRO -bSq -bSq -bSq -bSq -bsG -cRM -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -59885,6 +52411,12 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -59915,32 +52447,26 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -hHI -lPI -xdS -cgo -lIo -iHW -vVD -nyX -jAA -bSq -bSq -bSq -qRO -bSq -bSq -bSq -jAA -bsG -bsG -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -60115,26 +52641,26 @@ vva vva vva vva -jDS -jDS -jDS -jDS -nJC -jWm -nHd -kEd -wBl -kFe -wsQ -ksh -ihe -ksh -ksh -uUX -auu -bsG -bsG -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -60309,26 +52835,26 @@ vva vva vva vva -jDS -gKL -fbW -jDS -eUA -sqy -iPe -nyX -bSq -bSq -lvk -hko -hko -fsN -hko -oed -uUd -bsG -bsG -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -60503,26 +53029,26 @@ vva vva vva vva -bkL -hoS -bzT -jDS -fBl -sqy -fBl -nyX -jAA -bSq -qEo -hko -kjA -qCY -hko -mON -nbr -bsG -bsG -vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -60639,6 +53165,23 @@ vva vva vva vva +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -60680,42 +53223,25 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -jDS -wpI -jRm -jDS -aro -sqy -nJC -nyX -bsG -bSq -qJx -hko -hko -fsN -hko -oed -ylB -bsG -bsG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -60833,24 +53359,24 @@ vva vva vva vva -vva -vva -vie -vie -vie -vie -vie -vva -vva -vva -lyN -lyN -lyN -lyN -pAF -rGn -rGn -rGn +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -60891,25 +53417,25 @@ vva vva vva vva -kTC -xLD -uBi -jDS -aIu -oyJ -iif -afn -bsG -mGU -cYJ -syM -eXg -ksh -ksh -jSb -bSq -bsG -bsG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -61027,24 +53553,24 @@ vva vva vva vva -vva -vva -vie -npC -stH -uUm -vie -vva -vva -vva -lyN -mCk -vFl -lyN -pAF -rGn -rGn -pAF +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -61085,25 +53611,25 @@ vva vva vva vva -dve -cZb -aZQ -jDS -ppL -iIN -nJC -iac -bsG -bSq -bSq -tsg -bbI -bSq -bSq -bSq -bSq -bsG -bsG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -61221,24 +53747,24 @@ vva vva vva vva -vva -vva -vie -ycj -fTd -rHz -vie -vva -vva -vva -lyN -rFB -hJd -lyN -dJS -pAF -pAF -dJS +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -61279,25 +53805,25 @@ vva vva vva vva -bRa -dJL -srO -jDS -wXJ -ufV -wWO -hRR -bsG -bsG -jAA -bSq -bSq -vhb -bSq -bSq -jAA -bsG -bsG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -61415,24 +53941,24 @@ vva vva vva vva -vva -vva -vie -nXX -lmP -vvR -vie -vva -vva -vva -lyN -lyN -rHX -lyN -lyN -lyN -lyN -lyN +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -61473,25 +53999,25 @@ vva vva vva vva -jDS -jDS -jDS -jDS -nyX -nyX -nyX -nyX -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -61609,24 +54135,24 @@ vva vva vva vva -vva -vva -vie -xoD -nnl -fSb -vie -vva -vva -vva -lyN -ook -dHV -iot -aOY -tGf -myG -lyN +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -61667,25 +54193,25 @@ vva vva vva vva -sVT -sVT -sVT -sVT -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -61803,24 +54329,24 @@ vva vva vva vva -vva -vva -vie -lQM -cOv -kay -vie -vva -vva -vva -lyN -fbf -uIz -sRu -dvm -myG -myG -amf +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -61861,25 +54387,25 @@ vva vva vva vva -rah -vva -vva -sVT -cRM -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -bsG -cRM -bsG -bsG -bsG -cRM +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -61997,24 +54523,24 @@ vva vva vva vva -vva -vva -vie -fuZ -hog -sJp -vie -vva -vva -vva -tbJ -myG -myG -myG -rAj -naa -emD -brT +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -62191,24 +54717,24 @@ vva vva vva vva -vva -vva -sYu -emy -vKv -jSi -vie -vva -vva -vva -lyN -tAI -cNF -cNF -tgI -cNF -lYu -lyN +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -62385,24 +54911,24 @@ vva vva vva vva -vva -vva -cWa -uKa -xgA -jSi -vie -vva -vva -vva -lyN -ltX -inh -nxa -hYR -inh -iVP -lyN +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -62579,24 +55105,24 @@ vva vva vva vva -vva -vva -sYu -qnW -btc -wTZ -vie -vva -vva -vva -lyN -nxI -inh -nXV -ykc -jDn -pIx -lyN +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -62773,24 +55299,24 @@ vva vva vva vva -vva -vva -vie -vie -vie -vie -vie -vva -vva -vva -lyN -nYA -inh -inh -lrG -inh -xzt -iuh +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -62967,24 +55493,24 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -lyN -qYm -inh -inh -inh -inh -nrk -iuh +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -63161,24 +55687,24 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -lyN -isI -inh -inh -inh -inh -gta -lyN +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -63355,24 +55881,24 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -lyN -nOk -bHJ -bHJ -gIU -gIU -scK -lyN +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva @@ -63549,24 +56075,24 @@ vva vva vva vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -vva -lyN -lyN -lyN -iuh -iuh -lyN -lyN -lyN +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV +dAV vva vva vva diff --git a/maps/euthenia/levels/deck4.dmm b/maps/euthenia/levels/deck4.dmm index 61f081b3584..994c02dc11c 100644 --- a/maps/euthenia/levels/deck4.dmm +++ b/maps/euthenia/levels/deck4.dmm @@ -1,37 +1,72 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/simulated/mineral/icerock/lythios43c, -/area/engineering/engine_room) "ab" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"ac" = ( -/turf/simulated/mineral/icerock/lythios43c, -/area/rift/surfacebase/outside/west_deep) +"ad" = ( +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4/fore) +"ae" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"ag" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/port) "ai" = ( /obj/structure/transit_tube/high_velocity{ icon_state = "auto" }, /turf/space, /area/space) -"av" = ( -/obj/effect/floor_decal/industrial/loading, +"aj" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" + }, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"ax" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/area/main_map/hallway/deck4) +"ak" = ( +/turf/simulated/wall, +/area/main_map/hallway/deck4/fore) +"am" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 }, -/obj/machinery/door/blast/regular{ +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"ao" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance/engi, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"ap" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four) +"aq" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/space) +"au" = ( +/obj/machinery/air_alarm{ dir = 4; - id = "mobile_miningbase" + pixel_x = -23 }, -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/reinforced, -/area/maintenance/deck_four/aft/port) +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"aw" = ( +/turf/simulated/floor/reinforced/airless, +/area/main_map/maintenance/deck_four/port) "ay" = ( /obj/machinery/button/remote/blast_door{ dir = 8; @@ -55,9 +90,6 @@ }, /turf/simulated/floor/plating, /area/gateway) -"aC" = ( -/turf/simulated/wall/r_wall, -/area/engineering/ftl) "aD" = ( /turf/simulated/floor/carpet/bcarpet, /area/library) @@ -72,59 +104,32 @@ /obj/machinery/holopad, /turf/simulated/floor/tiled/techfloor, /area/gateway) -"aG" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"aN" = ( +/obj/machinery/atmospherics/component/unary/freezer{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) -"aH" = ( -/turf/simulated/wall, -/area/maintenance/deck_four/forward) -"aL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "mobile_miningbase" - }, -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/maintenance/deck_four/aft/port) -"aM" = ( -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"aR" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/main_map/maintenance/deck_four/aft/starboard) +"aW" = ( +/obj/machinery/mineral/unloading_machine, +/obj/machinery/conveyor{ dir = 1 }, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 +/obj/map_helper/conveyor/belt{ + id_tag = "_mobile_mining_interior"; + name = "Ore processing belt" }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"aQ" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/shunt) -"aS" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical) -"aU" = ( -/obj/structure/stairs/spawner/north, /turf/simulated/floor/plating, -/area/maintenance/deck_four/port) -"bd" = ( -/obj/structure/transit_tube/high_velocity{ - icon_state = "auto" +/area/main_map/maintenance/deck_four/aft/port) +"ba" = ( +/obj/machinery/light/fairy{ + dir = 8 }, -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) "bi" = ( /turf/simulated/wall/r_wall, /area/rnd/secure_storage/critical/vault2) @@ -132,6 +137,26 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/records) +"bl" = ( +/turf/simulated/wall/prepainted/civilian, +/area/library) +"bo" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/map_helper/airlock/atmos/pump_out_external, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/maintenance/deck_four/aft/port) +"bq" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/maintenance/deck_four/aft/port) "br" = ( /obj/machinery/ai_slipper, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -143,34 +168,17 @@ /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/library) -"bv" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/railing{ - dir = 8 +"bu" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/gateway) +"bz" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 1 }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four) -"by" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"bA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +/turf/simulated/floor/plating, +/area/quartermaster/miningdock) "bC" = ( /obj/machinery/light{ dir = 4 @@ -184,13 +192,13 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"bI" = ( -/obj/machinery/door/airlock/maintenance/int{ - req_access = list(27); - name = "Chapel Access" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/forward) +"bH" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/miningdock) +"bK" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four) "bM" = ( /obj/structure/railing/grey{ dir = 1 @@ -203,11 +211,6 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/records) -"bO" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/item/barrier_tape_segment/engineering, -/turf/simulated/floor/plating, -/area/maintenance/deck_four) "bP" = ( /obj/landmark/spawnpoint/job/librarian, /obj/structure/bed/chair/comfy/brown{ @@ -219,24 +222,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/library/study) -"bQ" = ( -/obj/machinery/mineral/processing_unit_console{ - density = 0; - layer = 3.3; - pixel_y = 30 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"bR" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/vault2) "bS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -246,49 +231,45 @@ }, /turf/simulated/floor/tiled, /area/gateway) -"bT" = ( -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research) "bU" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/target_stake, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"ca" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +"bY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"cb" = ( -/obj/machinery/mineral/input, -/obj/machinery/conveyor{ - id = "mining_interior"; - dir = 4 - }, +/area/rnd/anomaly_lab) +"bZ" = ( +/obj/structure/plasticflaps/mining, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/aft/port) "cc" = ( /obj/effect/floor_decal/techfloor/corner, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"cd" = ( -/obj/machinery/door/airlock/maintenance/int{ - req_access = list(27); - name = "Chapel Access" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/forward) +"cf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/port) "ci" = ( /obj/machinery/camera/network/research{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/lower) +"cj" = ( +/obj/machinery/suspension_gen, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "ck" = ( /obj/structure/cable{ icon_state = "1-2" @@ -300,6 +281,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/ai) +"cl" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) "cm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -309,11 +294,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/vault2) -"cp" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) "cs" = ( /obj/machinery/camera/network/civilian, /turf/simulated/floor/carpet/bcarpet, @@ -352,74 +332,64 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"cB" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/space) -"cJ" = ( -/obj/effect/catwalk_plated/dark, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 +"cA" = ( +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 24; + pixel_y = -24 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"cN" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_four/forward/starboard) -"cP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/port) -"cR" = ( -/turf/simulated/floor/plating, -/area/rnd/secure_storage/critical) -"cS" = ( -/obj/machinery/door/airlock/maintenance/cargo, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/port) -"cT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"cC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 + dir = 6 }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"cD" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/port) +"cH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 }, /turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/vault2) -"cV" = ( -/obj/machinery/camera/network/research{ - dir = 8 - }, -/obj/machinery/holoplant, -/turf/simulated/floor/tiled/white, -/area/rnd/secure_storage/lower) -"cW" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"da" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"db" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/machinery/light{ +/area/rnd/research) +"cK" = ( +/obj/machinery/light/no_nightshift{ dir = 8 }, /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/steel_grid, -/area/outpost/mining_main/outpost/near_gateway) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"cL" = ( +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"cM" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_four/starboard) +"cR" = ( +/turf/simulated/floor/plating, +/area/rnd/secure_storage/critical) +"cW" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) "dc" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -427,21 +397,31 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/bluegrid, /area/ai) -"df" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_four/forward/starboard) -"dg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +"de" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) -"dk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research) -"dl" = ( -/turf/simulated/floor/wood, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/secure_storage/critical) +"dm" = ( +/obj/structure/dispenser/oxygen, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"dn" = ( +/obj/structure/salvageable/machine, +/turf/simulated/floor/plating, /area/space) "dp" = ( /obj/machinery/light/no_nightshift{ @@ -449,11 +429,15 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) -"dt" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/port) +"dq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck4) "dv" = ( /obj/machinery/button/remote/blast_door{ dir = 6; @@ -476,10 +460,35 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"dE" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) +"dF" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/outpost/underground) +"dK" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + id = "mobile_miningbase" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"dL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/door/airlock{ + name = "General Storage"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/secure_storage/lower) "dN" = ( /obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, @@ -490,21 +499,50 @@ }, /turf/simulated/floor/bluegrid, /area/ai_upload) -"dX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +"dT" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" }, -/obj/map_helper/airlock/door/int_door, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/science{ - name = "Secure Storage"; - req_one_access = list(20,30) +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4) +"dU" = ( +/turf/simulated/wall/r_wall, +/area/rnd/anomaly_lab/containment_one) +"dV" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/rnd/anomaly_lab/containment_two) +"ea" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"ee" = ( -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) +/obj/machinery/door/airlock/maintenance/rnd, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) +"ed" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"ef" = ( +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck4/fore) "eg" = ( /obj/structure/cable{ icon_state = "16-0" @@ -514,23 +552,78 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) +"ei" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_four/forward/starboard) +"ej" = ( +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_four/forward) +"ek" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "en" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, /area/library) +"eq" = ( +/obj/structure/table/steel, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck4) +"er" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) "es" = ( /obj/structure/stairs/spawner/east, /obj/structure/railing/grey, /turf/simulated/floor/plating, /area/ai_upload) +"eu" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_two) +"ex" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"ey" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) "ez" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/wood, /area/library) +"eB" = ( +/obj/structure/table/standard, +/obj/item/flashlight/lamp, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/direction_bump/north, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_two) "eC" = ( /turf/simulated/floor/tiled, /area/rnd/research/testingrange) @@ -547,10 +640,13 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"eH" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/forward) +"eE" = ( +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4) +"eF" = ( +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/maintenance/deck_four/aft/port) "eI" = ( /obj/machinery/camera/network/command, /turf/simulated/floor/reinforced/airless, @@ -561,137 +657,61 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"eK" = ( -/obj/structure/girder/reinforced, -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/rnd/secure_storage/critical/vault2) "eL" = ( /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled, /area/rnd/secure_storage/critical) -"eM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" +"eN" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/port) +"eR" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "mobile_miningbase"; + pixel_y = -32; + name = "Window Blast Door Control" }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"eX" = ( +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"eP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/area/quartermaster/miningdock) +"fc" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/secure_storage/critical/records) +"fd" = ( +/obj/structure/window/reinforced/tinted/frosted{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"eT" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/map_helper/airlock/atmos/pump_out_external, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/deck_four/aft/port) -"eU" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/structure/table/fancyblack, +/turf/simulated/floor/carpet/bcarpet, +/area/main_map/maintenance/deck_four/forward) +"ff" = ( +/obj/effect/floor_decal/techfloor/corner{ dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"fm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/no_nightshift{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/air_alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"eV" = ( -/obj/structure/stairs/spawner/south, -/turf/simulated/floor/tiled, -/area/maintenance/deck_four) -"eW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/effect/floor_decal/techfloor{ + dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"eZ" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four) -"fb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) -"fh" = ( -/obj/machinery/mineral/input, -/obj/machinery/conveyor{ - id = "mobile_mining_interior"; - dir = 4 - }, +"fo" = ( +/obj/machinery/telepad, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"fk" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/secure_storage/lower) -"fn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) -"fp" = ( -/obj/structure/sign/warning/secure_area, -/turf/simulated/wall/r_wall, -/area/rnd/secure_storage/critical) -"fq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, +/area/main_map/maintenance/deck_four/aft/port) +"fs" = ( +/obj/map_helper/network_builder/power_cable/green/auto, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"fr" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_four) +/area/main_map/maintenance/deck_four/port) "ft" = ( /obj/machinery/light/small, /turf/simulated/floor/carpet/bcarpet, @@ -705,9 +725,19 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"fv" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/outpost) +"fw" = ( +/obj/landmark/spawnpoint/job/scientist, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"fx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "fy" = ( /obj/structure/bookcase{ name = "bookcase (Religious)" @@ -740,6 +770,13 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) +"fG" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"fH" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/secure_storage/critical/vault2) "fI" = ( /obj/structure/bookcase{ name = "bookcase (Non-Fiction)" @@ -747,12 +784,20 @@ /obj/item/book/custom_library/nonfiction, /turf/simulated/floor/wood, /area/library) -"fL" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 +"fJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) +/area/main_map/maintenance/deck_four/aft/starboard) +"fM" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "fQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -763,11 +808,31 @@ "fS" = ( /turf/simulated/wall, /area/gateway/prep_room) +"fT" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) "fV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/outpost/mining_main/outpost/near_gateway) +"fW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"fX" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"ga" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/forward) "gb" = ( /obj/structure/cable{ icon_state = "1-4" @@ -778,6 +843,21 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/greengrid, /area/ai_upload) +"gc" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "gf" = ( /obj/structure/cable{ icon_state = "1-2" @@ -786,13 +866,25 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/greengrid, /area/ai) -"gh" = ( -/obj/machinery/mineral/output, -/obj/machinery/conveyor{ - id = "mobile_mining_interior" +"gi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) "gj" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing/grey{ @@ -803,45 +895,27 @@ "gk" = ( /turf/simulated/wall/r_wall, /area/rnd/secure_storage/critical/vault1) -"go" = ( -/obj/machinery/mineral/processing_unit_console{ - density = 0; - layer = 3.3; - pixel_y = 30 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "mining_interior"; - layer = 3.3; - name = "refining conveyor"; - pixel_y = 14 - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/aft/port) -"gq" = ( -/obj/structure/transit_tube/high_velocity{ - icon_state = "auto" - }, +"gl" = ( +/obj/structure/stairs/spawner/north, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"gr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/door/airlock/glass/research, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"gt" = ( -/turf/simulated/wall/r_wall, -/area/engineering/shunt) +/area/main_map/maintenance/deck_four/port) +"gv" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/gateway) "gw" = ( /turf/simulated/wall/r_wall, /area/gateway/prep_room) +"gx" = ( +/obj/machinery/atmospherics/component/binary/passive_gate/on{ + dir = 1; + pressure_resistance = 750; + target_pressure = 750 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "gz" = ( /turf/simulated/floor/tiled, /area/space) @@ -851,6 +925,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai) +"gC" = ( +/obj/machinery/camera/network/research{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "gD" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -860,6 +940,11 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) +"gF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck4/fore) "gG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -872,6 +957,10 @@ }, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) +"gH" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) "gI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -879,21 +968,18 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"gK" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/shunt) -"gL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ +"gJ" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 4 }, /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/steel_grid, -/area/outpost/mining_main/outpost/near_gateway) +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_two) "gN" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 @@ -914,20 +1000,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/gateway) -"gP" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/vault2) -"gS" = ( -/obj/structure/table/fancyblack, -/turf/simulated/floor/carpet/bcarpet, -/area/maintenance/deck_four/forward) "gT" = ( /obj/structure/cable{ icon_state = "16-0" @@ -943,6 +1015,21 @@ }, /turf/simulated/floor/plating, /area/ai_upload) +"gV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "gW" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced, @@ -955,16 +1042,14 @@ }, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research) -"ha" = ( -/turf/simulated/floor/wood, -/area/maintenance/deck_four/forward) -"hf" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/starboard) +"gZ" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"hb" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) "hi" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -974,20 +1059,26 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"hn" = ( -/turf/simulated/wall, -/area/maintenance/deck_four/starboard) +"hk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"hm" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) "ho" = ( /obj/structure/lattice, /turf/space/basic, /area/space) -"hp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled/white, -/area/rnd/secure_storage/lower) +"hs" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four) "ht" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -1024,6 +1115,54 @@ }, /turf/simulated/floor/reinforced, /area/gateway) +"hC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/camera/motion{ + network = list("Research","Command") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/secure_storage/critical) +"hE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/space) +"hH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"hJ" = ( +/obj/machinery/button/remote/blast_door{ + id = "belter_blast_left"; + name = "Shuttle Blast Doors"; + pixel_y = 25 + }, +/obj/machinery/atmospheric_field_generator/perma, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "belter_blast_left" + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/main_map/maintenance/deck_four/aft/port) "hK" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled, @@ -1056,9 +1195,6 @@ }, /turf/space, /area/space) -"hR" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_four/port) "hS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -1070,21 +1206,47 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/ai) -"ia" = ( -/obj/machinery/door/blast/regular{ - id = "mobile_miningbase" - }, +"hW" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, -/obj/machinery/atmospherics/pipe/simple/hidden{ +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"hX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"ib" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) +/area/maintenance/trash_pit) +"hY" = ( +/obj/machinery/mineral/input, +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "_mobile_mining_interior"; + name = "Ore processing belt" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"ic" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/vent/high_volume{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/maintenance/deck_four/aft/port) "ie" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -1094,10 +1256,19 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai) -"if" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/deck_four/aft/port) +"ig" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_four/aft/port) +"ih" = ( +/obj/structure/salvageable/bliss, +/turf/simulated/floor/plating, +/area/space) +"ij" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/quartermaster/miningdock) "is" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -1116,10 +1287,44 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"iz" = ( -/obj/machinery/door/airlock/glass_external, -/turf/simulated/floor/tiled, -/area/space) +"iv" = ( +/obj/structure/curtain/black{ + anchored = 1; + icon_state = "open" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/main_map/maintenance/deck_four/forward) +"iw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"ix" = ( +/obj/machinery/door/airlock/glass/mining{ + name = "Cargo Bay"; + req_access = list(31); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/quartermaster/miningdock) +"iA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "iB" = ( /obj/structure/filingcabinet{ desc = "A large cabinet with drawers. They seem to be ominously empty."; @@ -1131,10 +1336,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/records) -"iC" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/forward) "iD" = ( /obj/machinery/door/blast/shutters{ dir = 2; @@ -1145,65 +1346,58 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/gateway/prep_room) +"iE" = ( +/obj/machinery/mineral/processing_unit_console{ + density = 0; + layer = 3.3; + pixel_y = 30 + }, +/obj/machinery/conveyor_switch/oneway{ + pixel_y = 14 + }, +/obj/map_helper/conveyor/lever{ + id_tag = "mining_interior"; + name = "Ore Processing" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/miningdock) "iF" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) -"iG" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/space) -"iH" = ( -/turf/simulated/wall, -/area/maintenance/deck_four/aft/port) -"iI" = ( -/obj/effect/floor_decal/industrial/loading{ +"iK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 1 }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/aft/port) -"iM" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) -"iN" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/cargo{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -28; - req_access = list() +/obj/machinery/computer/atmoscontrol/laptop{ + monitored_alarm_ids = list("isolation_one","isolation_two"); + pixel_y = 30; + req_one_access = list(47,24,11) }, -/turf/simulated/floor/tiled, -/area/space) -"iO" = ( -/obj/machinery/conveyor{ - id = "mobile_mining_interior"; +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, -/obj/machinery/mineral/input, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"iL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"iP" = ( -/obj/map_helper/airlock/atmos/pump_out_internal, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 4 +/area/main_map/maintenance/deck_four/aft/port) +"iQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) +"iS" = ( +/obj/structure/sink/kitchen{ + name = "sink"; + pixel_y = 28 }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - pixel_x = 24; - pixel_y = 24; - id_tag = "mobile_miningbase" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4) "iT" = ( /turf/simulated/floor/bluegrid, /area/gateway/prep_room) @@ -1217,26 +1411,40 @@ }, /turf/simulated/floor/wood, /area/library) -"iX" = ( -/obj/machinery/mineral/processing_unit_console{ - density = 0; - layer = 3.3; - pixel_y = 30 +"iW" = ( +/obj/machinery/door/morgue{ + dir = 2; + name = "Confession Booth" }, -/obj/machinery/camera/network/cargo, -/turf/simulated/floor/tiled, -/area/space) +/turf/simulated/floor/tiled/dark, +/area/main_map/maintenance/deck_four/forward) "iZ" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/gateway) -"jb" = ( -/obj/effect/catwalk_plated/dark, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 +"jc" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) +"jd" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/obj/item/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/obj/item/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/structure/sign/deck/second{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "je" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1254,13 +1462,25 @@ /obj/machinery/message_server, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) -"jj" = ( -/obj/machinery/conveyor{ - id = "mobile_mining_interior" +"jh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/plasticflaps/mining, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/aft/starboard) +"ji" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/miningdock) +"jk" = ( +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "jl" = ( /obj/machinery/atmospherics/pipe/zpipe/up/supply, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, @@ -1272,27 +1492,36 @@ }, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) -"jp" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -23 +"jv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_one) +"jx" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/vault1) -"jr" = ( +/area/main_map/maintenance/deck_four/aft/starboard) +"jy" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "mobile_miningbase" - }, -/turf/simulated/floor/reinforced, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4) +"jC" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four) "jD" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/secure_storage/critical) +"jE" = ( +/obj/machinery/door/airlock/engineering, +/turf/simulated/floor/tiled, +/area/space) "jG" = ( /obj/structure/table/woodentable, /obj/item/pen/invisible, @@ -1309,6 +1538,9 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/library/study) +"jH" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck4/fore) "jI" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 1 @@ -1352,18 +1584,15 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/vault2) -"jR" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) -"jS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +"jQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/door/airlock{ + name = "General Storage"; + req_access = list(47) }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/lower) "jV" = ( /obj/effect/floor_decal/techfloor/orange{ @@ -1371,51 +1600,16 @@ }, /turf/simulated/floor/tiled/monotile, /area/gateway) -"jW" = ( -/obj/machinery/mineral/input, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/space) -"jX" = ( -/obj/machinery/mineral/output, -/obj/machinery/conveyor{ - id = "mining_interior"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"jY" = ( -/obj/machinery/button/remote/blast_door{ - id = "PubPrep"; - name = "Gateway Shutter"; - pixel_x = -25; - pixel_y = 25; - req_access = list(62) - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"ka" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) -"kf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"kh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/space) +"kc" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four) +"ke" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) "ki" = ( /obj/machinery/gateway{ dir = 9 @@ -1432,56 +1626,10 @@ /obj/structure/statue/marble/venus, /turf/simulated/floor/plating, /area/space) -"kl" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, +"kq" = ( +/obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"km" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research/xenobio) -"ko" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/rnd/research) -"kr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"ks" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"kw" = ( -/turf/simulated/wall/r_wall, -/area/rnd/research) -"ky" = ( -/obj/machinery/button/crematorium{ - id = "crematorium"; - pixel_x = -4; - pixel_y = 28; - req_access = null; - req_one_access = list(27,6) - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/forward) -"kz" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/deck_four) +/area/main_map/maintenance/deck_four/starboard) "kD" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1492,14 +1640,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"kE" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/component/binary/pump{ - name = "Scrubbers to Outside"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) "kG" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 9 @@ -1510,34 +1650,31 @@ }, /turf/simulated/floor/tiled/techfloor, /area/gateway) -"kH" = ( -/obj/structure/table/rack/shelf, -/turf/simulated/floor/reinforced, -/area/rnd/secure_storage/lower) -"kI" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/status_display/supply_display{ - mode = 99; - pixel_y = -32 +"kK" = ( +/obj/landmark/spawnpoint/job/chaplain, +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 4; + frequency = 1473; + name = "Confession Intercom"; + pixel_x = 24 }, -/turf/simulated/floor/tiled, -/area/space) +/obj/machinery/light/small, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/main_map/maintenance/deck_four/forward) "kL" = ( /turf/simulated/wall/r_wall, /area/space) -"kR" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/machinery/camera/network/research{ - dir = 5 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, +"kM" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, -/area/rnd/secure_storage/critical) +/area/rnd/anomaly_lab) +"kN" = ( +/turf/simulated/wall/prepainted/civilian, +/area/library/study) "kS" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -1548,17 +1685,29 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/monotile, /area/gateway) -"lb" = ( -/obj/structure/sink/kitchen{ - name = "sink"; - pixel_y = 28 +"kW" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/component/binary/pump{ + name = "Scrubbers to Outside"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"kZ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 }, -/obj/item/reagent_containers/glass/bucket, /turf/simulated/floor/tiled, -/area/maintenance/deck_four/starboard) -"lc" = ( -/turf/simulated/floor/plating, -/area/maintenance/research/xenobio) +/area/rnd/anomaly_lab) +"la" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/main_map/maintenance/deck_four/aft/port) +"ld" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/miningdock) "lf" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 2; @@ -1566,19 +1715,12 @@ }, /turf/simulated/floor/tiled/monotile, /area/outpost/mining_main/outpost/near_gateway) -"lh" = ( -/obj/effect/floor_decal/borderfloor{ +"li" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/miningdock) "lj" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 10 @@ -1595,51 +1737,39 @@ }, /turf/simulated/floor/reinforced, /area/gateway) -"ln" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) "lo" = ( /obj/structure/flora/tree/jungle, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research) -"lr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical) +"lp" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_four/forward/starboard) "lu" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/ai) -"lv" = ( -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical) -"ly" = ( -/turf/simulated/shuttle/plating/carry, -/area/maintenance/deck_four/aft/port) +"lw" = ( +/obj/structure/table/rack, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"lx" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "lz" = ( /turf/simulated/floor/reinforced, /area/gateway) -"lB" = ( -/obj/machinery/door/blast/regular, -/obj/item/barrier_tape_segment/engineering, -/turf/simulated/floor/plating, -/area/maintenance/deck_four) -"lD" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_four) +"lA" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_four) "lE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1652,26 +1782,43 @@ }, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) -"lG" = ( -/obj/structure/railing{ - dir = 8 +"lF" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_four/aft/starboard) +"lH" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/structure/railing{ +/obj/machinery/camera/network/research{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four) -"lL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_one) +"lJ" = ( +/obj/machinery/conveyor{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) +/obj/map_helper/conveyor/belt{ + id_tag = "mining_interior"; + name = "Ore processing belt" + }, +/turf/simulated/floor/plating, +/area/quartermaster/miningdock) +"lK" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/obj/machinery/door/blast/regular{ + id = "mobile_miningbase" + }, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/deck_four/aft/port) "lN" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) +"lP" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/trash_pit) "lS" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/door/blast/regular{ @@ -1682,6 +1829,25 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) +"lU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/port) +"lV" = ( +/obj/item/storage/excavation, +/obj/item/pickaxe, +/obj/item/tool/wrench, +/obj/item/measuring_tape, +/obj/item/stack/flag/yellow, +/obj/structure/table/steel, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/camera/network/research{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "lW" = ( /obj/machinery/light{ dir = 8 @@ -1712,13 +1878,15 @@ /obj/structure/stairs/spawner/south, /turf/simulated/floor/plating, /area/rnd/research) -"md" = ( -/obj/structure/closet/secure_closet/guncabinet/robotics, -/turf/simulated/floor/reinforced, -/area/rnd/secure_storage/lower) -"mf" = ( -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four) +"mg" = ( +/turf/simulated/floor/plating, +/area/engineering/ftl) +"mh" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "mn" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable/green{ @@ -1726,26 +1894,14 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"mq" = ( -/obj/structure/transit_tube/station{ - dir = 4 - }, -/obj/structure/transit_tube_pod{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) +"mo" = ( +/obj/structure/salvageable/computer_os, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) "mr" = ( /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) -"mt" = ( -/turf/simulated/wall, -/area/maintenance/research/xenobio) -"mu" = ( -/obj/machinery/mineral/unloading_machine, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) "mx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 @@ -1758,25 +1914,18 @@ }, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) -"my" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/plating, -/area/maintenance/research/xenobio) -"mz" = ( -/obj/structure/cable{ - icon_state = "4-8" +"mA" = ( +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_four) +"mD" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/railing{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four) "mE" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1787,6 +1936,22 @@ }, /turf/simulated/floor/tiled/monotile, /area/gateway) +"mG" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) +"mH" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_four) +"mI" = ( +/obj/machinery/atmospherics/component/unary/heater{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "mJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -1808,6 +1973,11 @@ "mM" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/outpost/near_gateway) +"mO" = ( +/obj/machinery/door/airlock/maintenance/engi, +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/plating, +/area/space) "mR" = ( /turf/simulated/floor/bluegrid, /area/ai) @@ -1821,47 +1991,52 @@ }, /turf/simulated/floor/wood, /area/library) -"mX" = ( -/turf/simulated/wall/r_wall, -/area/ai) "mY" = ( /turf/simulated/wall/r_wall, /area/library/study) +"mZ" = ( +/obj/machinery/door/blast/regular, +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four) "na" = ( /turf/simulated/floor/tiled/techmaint, /area/rnd/research) -"nb" = ( -/obj/structure/bookcase{ - name = "bookcase (Religious)" - }, -/obj/item/book/custom_library/religious, -/obj/item/book/custom_library/religious, -/turf/simulated/floor/wood, -/area/maintenance/deck_four/forward) "nd" = ( /turf/simulated/wall/r_wall, /area/library) +"ne" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/port) +"nf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) "ng" = ( /turf/simulated/floor/tiled, /area/gateway/prep_room) -"nh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) "nm" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) -"no" = ( -/obj/structure/sign/warning/secure_area, -/turf/simulated/wall/r_wall, -/area/gateway) -"ns" = ( -/obj/machinery/mineral/processing_unit, +"nn" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"np" = ( +/obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/aft/port) "nu" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, @@ -1870,18 +2045,40 @@ }, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) +"nw" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_four/forward) "nz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/reinforced, /area/gateway) -"nE" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ +"nC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/port) +"nH" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/main_map/maintenance/deck_four/forward) +"nI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/secure_storage/critical) "nL" = ( /obj/machinery/camera/network/research_outpost{ dir = 4; @@ -1889,55 +2086,65 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) -"nP" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/door/firedoor/multi_tile, +"nM" = ( +/obj/machinery/door/airlock/glass/engineering, /turf/simulated/floor/tiled, /area/space) -"nS" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) +"nR" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4/fore) "nT" = ( /obj/machinery/light/no_nightshift{ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) +"nU" = ( +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 1; + pixel_y = -24 + }, +/obj/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) "nV" = ( /obj/structure/stairs/spawner/south, /turf/simulated/floor/tiled/monotile, /area/rnd/outpost/underground) -"nW" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"oa" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward/starboard) +"og" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/space) -"nX" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/maintenance/deck_four/aft/port) -"od" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 +/obj/effect/floor_decal/techfloor{ + dir = 4 }, -/turf/simulated/floor/bluegrid, -/area/ai) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"oh" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "oi" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, /area/ai) +"oj" = ( +/obj/machinery/light/small, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"ok" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/starboard) "ol" = ( /obj/structure/railing{ dir = 4 @@ -1945,33 +2152,57 @@ /obj/structure/railing, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research) -"om" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +"op" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/obj/item/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/obj/item/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"or" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/obj/machinery/atmospherics/component/binary/passive_gate/on{ + dir = 8; + pressure_resistance = 750; + target_pressure = 750 }, -/obj/structure/cable/green{ +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/door/airlock/highsecurity{ - name = "Vault 2"; - req_one_access = list(20,30) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/vault2) +/turf/simulated/floor/plating, +/area/space) "os" = ( /obj/machinery/blackbox_recorder, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) -"ot" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +"ou" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) +"ox" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"oy" = ( +/obj/machinery/mineral/processing_unit_console{ + density = 0; + layer = 3.3; + pixel_y = 30 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) +/area/main_map/maintenance/deck_four/aft/port) "oB" = ( /obj/machinery/holopad, /turf/simulated/floor/tiled, @@ -1985,6 +2216,12 @@ }, /turf/simulated/floor/greengrid, /area/ai) +"oD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) "oH" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/bed/chair{ @@ -1992,39 +2229,32 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"oI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +"oL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/door/blast/regular{ + id = "mobile_miningbase" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"oM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "oN" = ( /obj/machinery/camera/network/command{ dir = 4 }, /turf/simulated/floor/greengrid, /area/ai) +"oQ" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/rnd/anomaly_lab/containment_one) +"oS" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "mobile_miningbase_sidedoor"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) "oT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2049,6 +2279,9 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/outpost/near_gateway) +"pa" = ( +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck4) "pb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -2066,19 +2299,33 @@ /obj/structure/table/wooden_reinforced, /turf/simulated/floor/wood, /area/library) -"pd" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 +"pe" = ( +/obj/machinery/air_alarm/monitor/isolation{ + alarm_id = "isolation_two"; + dir = 8; + pixel_x = 22 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/forward) +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_two) +"pf" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) "pg" = ( /obj/structure/bookcase{ name = "bookcase (Non-Fiction)" }, /turf/simulated/floor/wood, /area/library) +"ph" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"pj" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/port) "pl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2088,25 +2335,34 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"pn" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 22 +"pp" = ( +/obj/effect/debris/cleanable/blood/splatter, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/gateway) -"po" = ( /turf/simulated/floor/plating, -/area/maintenance/deck_four) +/area/maintenance/trash_pit) +"pq" = ( +/obj/structure/mopbucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck4) "pt" = ( /obj/structure/cable/green{ icon_state = "2-8" }, /turf/simulated/floor/carpet/bcarpet, /area/library) -"pw" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/secure_storage/lower) +"pu" = ( +/turf/simulated/shuttle/plating/carry, +/area/main_map/maintenance/deck_four/aft/port) +"px" = ( +/obj/structure/morgue/crematorium{ + id = "crematorium" + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_four/forward) "py" = ( /obj/structure/lattice, /turf/space, @@ -2120,22 +2376,17 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai) -"pA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"pB" = ( +/obj/machinery/artifact_scanpad, +/obj/machinery/light/no_nightshift{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_one) +"pC" = ( +/obj/structure/salvageable/bliss, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) "pD" = ( /obj/structure/table/steel_reinforced, /obj/effect/floor_decal/borderfloor{ @@ -2143,32 +2394,9 @@ }, /turf/simulated/floor/tiled, /area/rnd/secure_storage/critical) -"pE" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) -"pG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +"pF" = ( +/turf/simulated/wall, +/area/main_map/hallway/deck4) "pH" = ( /obj/structure/table/bench/standard, /obj/machinery/atmospherics/component/unary/vent_pump/on{ @@ -2176,42 +2404,54 @@ }, /turf/simulated/floor/tiled/monotile, /area/outpost/mining_main/outpost/near_gateway) -"pO" = ( +"pJ" = ( +/turf/simulated/wall, +/area/quartermaster/miningdock) +"pL" = ( +/obj/structure/railing, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4/fore) +"pM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) -"pP" = ( -/obj/machinery/atmospheric_field_generator/perma, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "belter_blast_left" - }, -/turf/simulated/shuttle/floor/voidcraft, -/area/maintenance/deck_four/aft/port) -"pQ" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/maintenance/deck_four/forward) -"pT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) +"pR" = ( +/obj/machinery/door/airlock/glass_external{ + name = "Isolation Room 1"; + req_access = list(65); + req_one_access = list(47) }, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/light/no_nightshift{ +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_one) +"pS" = ( +/obj/machinery/radiocarbon_spectrometer, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"pW" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/maintenance/deck_four) +/turf/simulated/floor/tiled/monotile, +/area/rnd/anomaly_lab) +"pU" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_four/forward/starboard) "pY" = ( /obj/machinery/porta_turret/stationary{ health = 200 @@ -2225,60 +2465,12 @@ /obj/structure/closet/secure_closet/personal, /turf/simulated/floor/tiled, /area/outpost/mining_main/outpost/near_gateway) -"qa" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "mining_interior" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"qd" = ( -/obj/machinery/door/airlock/glass_external, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/atmospheric_field_generator, -/obj/machinery/door/blast/regular{ - id = "mobile_miningbase_shuttle_door" - }, -/obj/machinery/button/remote/blast_door{ - id = "mobile_miningbase_shuttle_door"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"qe" = ( -/obj/spawner/window/reinforced/tinted/full, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/forward) "qg" = ( /turf/simulated/floor/greengrid, /area/ai) -"qi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/space) -"qj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"qk" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) +"qh" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_four/aft/starboard) "ql" = ( /obj/structure/lattice, /obj/structure/transit_tube/high_velocity{ @@ -2286,64 +2478,29 @@ }, /turf/space, /area/space) -"qm" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp{ - pixel_y = 12 - }, -/turf/simulated/floor/wood, -/area/maintenance/deck_four) -"qn" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"qo" = ( -/obj/structure/stairs/spawner/west, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) -"qp" = ( -/obj/machinery/mineral/unloading_machine, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"qq" = ( -/turf/simulated/floor/reinforced, -/area/maintenance/deck_four/port) "qr" = ( /turf/simulated/wall, /area/library) -"qu" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_four/forward/port) -"qw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/maintenance/deck_four/forward) -"qz" = ( -/obj/effect/floor_decal/borderfloor{ +"qs" = ( +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"qt" = ( +/obj/machinery/door/blast/regular{ dir = 4 }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 8; - id_tag = "secure_science_stroage_airlock_control"; - name = "Secure Storage Access Controller"; - pixel_x = 25 +/turf/simulated/floor/reinforced/airless, +/area/quartermaster/miningdock) +"qx" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/research) +"qy" = ( +/obj/structure/railing{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"qA" = ( -/turf/space, -/area/maintenance/deck_four) -"qB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) +/area/main_map/maintenance/deck_four/forward/starboard) "qC" = ( /obj/machinery/door/blast/regular{ dir = 4; @@ -2351,14 +2508,10 @@ }, /turf/simulated/floor/plating, /area/space) -"qE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/door/airlock/glass/research, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) +"qH" = ( +/obj/structure/table/fancyblack, +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_four) "qI" = ( /obj/machinery/door/airlock/science{ name = "Secure Storage"; @@ -2368,10 +2521,6 @@ /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled, /area/rnd/secure_storage/critical) -"qJ" = ( -/obj/structure/closet/crate/nanotrasen, -/turf/simulated/floor/reinforced, -/area/rnd/secure_storage/lower) "qM" = ( /obj/machinery/camera/network/research_outpost{ dir = 4; @@ -2379,20 +2528,6 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"qN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) "qO" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/camera/network/research_outpost{ @@ -2401,17 +2536,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/outpost/near_gateway) -"qP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/orange{ - icon_state = "2-4" +"qR" = ( +/obj/structure/sink/kitchen{ + name = "sink"; + pixel_y = 28 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"qQ" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_four/starboard) "qS" = ( /obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ dir = 1; @@ -2420,23 +2552,6 @@ /obj/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, /area/space) -"qU" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"qV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) "qW" = ( /obj/structure/filingcabinet{ desc = "A large cabinet with drawers. They seem to be ominously empty."; @@ -2444,6 +2559,11 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/records) +"qX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck4/fore) "qZ" = ( /obj/machinery/light_switch{ dir = 8; @@ -2454,27 +2574,12 @@ "ra" = ( /turf/simulated/shuttle/wall/voidcraft/hard_corner, /area/space) -"rd" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/ftl) "re" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, /turf/simulated/floor/tiled/monotile, /area/rnd/outpost/underground) -"rf" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) "rg" = ( /obj/structure/table/reinforced, /obj/item/clothing/ears/earmuffs, @@ -2483,15 +2588,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"rh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) "ri" = ( /obj/machinery/gateway/centerstation, /turf/simulated/floor/reinforced, @@ -2504,31 +2600,88 @@ /obj/item/book/manual/the_humanized_mice, /turf/simulated/floor/wood, /area/library) +"rn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"rq" = ( +/obj/machinery/door/airlock/science{ + name = "Secure Storage"; + req_one_access = list(20,30) + }, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 4; + master_tag = "secure_science_stroage_airlock_control"; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/rnd/secure_storage/critical) +"rs" = ( +/obj/machinery/atmospherics/component/binary/passive_gate/on{ + pressure_resistance = 750; + target_pressure = 750 + }, +/turf/simulated/floor/plating, +/area/space) "rv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"rz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/no_nightshift{ - dir = 4 +"rx" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "rA" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/library) -"rE" = ( +"rB" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"rC" = ( +/obj/machinery/door/airlock/glass_science, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck4/fore) +"rD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/machinery/air_alarm{ pixel_y = 22 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/dark, -/area/gateway/prep_room) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload) "rF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -2571,19 +2724,56 @@ /obj/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, /area/space) +"rN" = ( +/turf/simulated/wall/r_wall{ + can_open = 1 + }, +/area/main_map/maintenance/deck_four/forward/starboard) +"rO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/rnd/anomaly_lab) +"rQ" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck4/fore) "rS" = ( /obj/spawner/window/reinforced/full, /turf/simulated/floor/plating, /area/outpost/mining_main/outpost/near_gateway) -"rV" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "mining_interior"; - layer = 3.3; - name = "refining conveyor"; - pixel_y = 14 +"rX" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck4/fore) +"rZ" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/main_map/hallway/deck4) +"sa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/space) +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"sd" = ( +/turf/simulated/wall/r_wall/prepainted/exploration, +/area/main_map/maintenance/deck_four/aft/port) "sg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2605,6 +2795,41 @@ /obj/structure/lattice, /turf/space, /area/space) +"sn" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward/port) +"so" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Trash Pit" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"sq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4) +"sr" = ( +/obj/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + pixel_x = 24; + pixel_y = 24; + id_tag = "mobile_miningbase" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) "sw" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ @@ -2615,6 +2840,20 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) +"sx" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_four/starboard) +"sy" = ( +/obj/machinery/air_alarm/monitor/isolation{ + alarm_id = "isolation_one"; + dir = 8; + pixel_x = 22 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_one) "sz" = ( /turf/simulated/floor/tiled/monotile, /area/gateway/prep_room) @@ -2622,6 +2861,42 @@ /obj/structure/table/bench/standard, /turf/simulated/floor/tiled/monotile, /area/outpost/mining_main/outpost/near_gateway) +"sC" = ( +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/super/south_bump, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"sD" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck4/fore) +"sE" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/bio_suit/anomaly, +/obj/item/clothing/head/bio_hood/anomaly, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"sF" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "N-S-Pass" + }, +/obj/structure/catwalk, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/space) "sG" = ( /obj/structure/girder/reinforced, /obj/structure/transit_tube/high_velocity{ @@ -2645,6 +2920,21 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) +"sJ" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_four/forward) +"sK" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"sL" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward/starboard) +"sM" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) "sO" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ @@ -2652,30 +2942,51 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"sP" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 +"sQ" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/library) +"sT" = ( +/obj/machinery/button/remote/blast_door{ + id = "PubPrep"; + name = "Gateway Shutter"; + pixel_x = -25; + pixel_y = 25; + req_access = list(62) }, /turf/simulated/floor/tiled, -/area/space) +/area/main_map/maintenance/deck_four/aft/port) +"sU" = ( +/turf/simulated/wall/prepainted/civilian, +/area/main_map/maintenance/deck_four) "sV" = ( /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/outpost/near_gateway) -"sW" = ( -/obj/structure/table/fancyblack, -/turf/simulated/floor/glass/reinforced, -/area/maintenance/deck_four) -"sX" = ( -/obj/machinery/door/airlock/maintenance/rnd, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) "sZ" = ( /turf/simulated/floor/plating, /area/space) +"tb" = ( +/obj/structure/transit_tube/station{ + dir = 4 + }, +/obj/structure/transit_tube_pod{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_four/aft/port) +"tc" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "mining_interior"; + name = "Ore processing belt" + }, +/turf/simulated/floor/plating, +/area/quartermaster/miningdock) "tf" = ( /obj/structure/table/steel_reinforced, /obj/item/folder{ @@ -2689,15 +3000,19 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/records) -"tg" = ( -/obj/effect/floor_decal/borderfloor{ +"ti" = ( +/obj/structure/table/woodentable, +/obj/item/flashlight/lamp{ + pixel_y = 12 + }, +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_four) +"tj" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) "tk" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2706,16 +3021,19 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"tl" = ( -/obj/structure/dispenser/oxygen, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, +"tm" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) +"tn" = ( +/obj/machinery/door/airlock/maintenance/cargo, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/quartermaster/miningdock) +"tp" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) "tq" = ( /obj/item/radio/intercom{ pixel_y = -24 @@ -2729,9 +3047,32 @@ /obj/machinery/mech_recharger, /turf/simulated/floor/bluegrid, /area/gateway/prep_room) -"ts" = ( -/turf/simulated/floor/tiled, -/area/maintenance/deck_four) +"tt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"tu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) "tv" = ( /obj/structure/statue/marble/male, /turf/simulated/floor/plating, @@ -2747,24 +3088,15 @@ "ty" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/vault2) -"tA" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +"tz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) -"tB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/vault1) +/turf/simulated/floor/tiled, +/area/rnd/secure_storage/critical) "tC" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -2774,6 +3106,22 @@ }, /turf/simulated/floor/tiled, /area/rnd/secure_storage/critical) +"tD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"tG" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"tJ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Trash Pit" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) "tK" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing/grey{ @@ -2781,10 +3129,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai) -"tL" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) "tN" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2792,15 +3136,31 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"tP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +"tO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/space) +/area/rnd/secure_storage/critical) +"tQ" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" + }, +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward/starboard) "tR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -2825,6 +3185,20 @@ }, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) +"tT" = ( +/obj/machinery/door/airlock/maintenance/cargo, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/miningdock) +"tV" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four) "tW" = ( /obj/map_helper/airlock/door/ext_door, /obj/machinery/access_button/airlock_exterior{ @@ -2835,45 +3209,85 @@ /obj/machinery/door/airlock/external, /turf/simulated/floor/plating, /area/space) -"tX" = ( -/mob/living/simple_mob/animal/passive/snake/noodle, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/space) -"tZ" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_four/aft/port) -"ua" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/space) +"tY" = ( +/obj/machinery/mining/drill, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "ub" = ( /mob/living/simple_mob/living_statue, /turf/simulated/floor/plating, /area/space) +"ud" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "uf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled/monotile, /area/rnd/outpost/underground) -"ug" = ( +"uk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"uo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"uh" = ( -/obj/machinery/holoplant, -/turf/simulated/floor/tiled/white, -/area/rnd/secure_storage/lower) -"ul" = ( -/turf/simulated/wall, -/area/library/study) +/area/main_map/maintenance/deck_four/aft/starboard) "uq" = ( /obj/structure/transit_tube/high_velocity{ icon_state = "N-S" }, /turf/space, /area/space) +"ur" = ( +/obj/machinery/camera/network/research, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"uv" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) +"uw" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4/fore) "ux" = ( /obj/machinery/door/firedoor/multi_tile, /turf/simulated/floor/tiled/monotile, @@ -2884,12 +3298,15 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/outpost/underground) -"uB" = ( -/obj/structure/cable{ - icon_state = "4-8" +"uz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/ftl) +/obj/machinery/atmospherics/component/unary/vent_pump{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_one) "uC" = ( /obj/structure/bookcase{ name = "bookcase (Non-Fiction)" @@ -2898,18 +3315,10 @@ /obj/item/book/custom_library/nonfiction, /turf/simulated/floor/wood, /area/library) -"uD" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four) -"uF" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) +"uE" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) "uG" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/button/remote/blast_door{ @@ -2946,11 +3355,32 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/bluegrid, /area/ai) -"uS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, +"uL" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, /turf/simulated/floor/plating, -/area/space) +/area/quartermaster/miningdock) +"uQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock{ + name = "General Storage"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"uR" = ( +/obj/structure/transit_tube/station{ + dir = 1 + }, +/obj/structure/transit_tube_pod{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_four/forward/starboard) "uT" = ( /obj/structure/transit_tube/high_velocity{ icon_state = "N-S-Pass" @@ -2958,31 +3388,25 @@ /obj/structure/lattice, /turf/space, /area/space) +"uU" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four) +"uV" = ( +/obj/machinery/air_alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library) "uX" = ( /turf/simulated/wall/r_wall, /area/rnd/research/testingrange) -"vc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/science{ - name = "Secure Storage"; - req_one_access = list(20,30) - }, -/obj/machinery/access_button/airlock_exterior{ - dir = 4; - master_tag = "secure_science_stroage_airlock_control"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +"va" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/port) "vd" = ( /obj/structure/table/reinforced, /obj/item/roller, @@ -2990,6 +3414,16 @@ /obj/machinery/camera/network/research_outpost, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) +"vg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "vh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -3002,25 +3436,43 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/records) +"vi" = ( +/obj/machinery/mining/brace, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"vj" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/anomaly_lab/containment_two) "vn" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/monotile, /area/rnd/outpost/underground) -"vp" = ( -/obj/effect/floor_decal/industrial/warning{ +"vo" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck4) +"vr" = ( +/turf/simulated/wall/r_wall, +/area/quartermaster/miningdock) +"vs" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4/fore) +"vu" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/starboard) +"vx" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/aft/port) -"vv" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/shuttle/wall/voidcraft, -/area/maintenance/deck_four/aft/port) -"vw" = ( -/turf/simulated/floor/glass/reinforced, -/area/maintenance/deck_four) +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) "vz" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 10 @@ -3037,14 +3489,21 @@ /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/white, /area/gateway) -"vE" = ( -/obj/machinery/door/airlock/glass/research{ - name = "Research Entrance"; - req_access = list(47) +"vA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"vD" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/main_map/hallway/deck4) "vG" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -3052,33 +3511,36 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"vI" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/research/xenobio) -"vK" = ( -/obj/machinery/button/remote/blast_door{ - id = "belter_blast_left"; - name = "Shuttle Blast Doors"; - pixel_y = 25 +"vH" = ( +/obj/machinery/door/airlock/maintenance/cargo, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techmaint, +/area/quartermaster/miningdock) +"vJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospheric_field_generator/perma, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "belter_blast_left" +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/shuttle/floor/voidcraft, -/area/maintenance/deck_four/aft/port) -"vL" = ( -/obj/machinery/shipsensors{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/secure_storage/critical) +"vP" = ( +/turf/simulated/wall/prepainted/cargo, +/area/quartermaster/miningdock) +"vS" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/secure_storage/critical/vault1) +"vT" = ( +/obj/structure/railing{ dir = 1 }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/deck_four/aft/port) -"vN" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/rnd/secure_storage/lower) +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4/fore) "vU" = ( /obj/structure/stairs/spawner/west, /turf/simulated/floor/tiled, @@ -3099,21 +3561,25 @@ }, /turf/simulated/floor/tiled/techfloor, /area/gateway) -"vY" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/ftl) "wa" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 }, /turf/simulated/floor/tiled/techfloor, /area/gateway) -"wf" = ( -/turf/simulated/mineral/floor/icerock/lythios43c/indoors/ignore_cavegen, -/area/rift/surfacebase/outside/west_deep) +"wg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/secure_storage/critical) +"wh" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward/starboard) "wi" = ( /obj/machinery/gateway, /turf/simulated/floor/reinforced, @@ -3123,26 +3589,48 @@ /obj/machinery/door/airlock/external, /turf/simulated/floor/plating, /area/space) -"wk" = ( -/turf/simulated/floor/tiled/steel, -/area/space) -"wo" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) +"wl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "wp" = ( /obj/machinery/light, /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) -"wr" = ( +"wq" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) +"wt" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4) +"wu" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "0-8" }, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -37 +/obj/structure/cable/green{ + icon_state = "16-0" }, -/turf/simulated/floor/tiled, -/area/space) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/port) +"wv" = ( +/obj/structure/dispenser/oxygen, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "wz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -3167,11 +3655,58 @@ }, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) -"wP" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume, -/obj/map_helper/airlock/atmos/chamber_pump, +"wC" = ( +/obj/machinery/atmospherics/component/unary/engine/bigger, +/turf/simulated/shuttle/plating/carry, +/area/main_map/maintenance/deck_four/aft/port) +"wD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"wH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, /turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/aft/starboard) +"wI" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/glass/engineering, +/turf/simulated/floor/tiled/steel_ridged, +/area/space) +"wK" = ( +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/miningdock) +"wM" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"wN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) "wQ" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3189,56 +3724,46 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/records) +"wR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_one) "wS" = ( /obj/machinery/light, /turf/simulated/floor/tiled/monotile, /area/rnd/outpost/underground) -"wU" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/library/study) -"xg" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/space) -"xi" = ( -/obj/machinery/airlock_sensor/airlock_interior{ - dir = 1; - pixel_y = -24 - }, -/obj/map_helper/airlock/sensor/int_sensor, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"xl" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"wV" = ( /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/starboard) +"xb" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) +"xc" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4/fore) +"xd" = ( +/turf/simulated/wall/r_wall/prepainted/cargo, +/area/main_map/maintenance/deck_four/port) +"xf" = ( +/obj/machinery/door/airlock/maintenance/engi, +/obj/machinery/door/firedoor/glass, +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/plating, +/area/space) "xp" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"xq" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/secure_storage/lower) "xr" = ( /obj/machinery/door/blast/shutters{ dir = 4; @@ -3254,6 +3779,15 @@ }, /turf/simulated/floor/tiled/techfloor, /area/gateway) +"xu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/table/rack/shelf/steel, +/obj/item/storage/toolbox/emergency, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "xx" = ( /obj/machinery/light/small{ dir = 4 @@ -3261,6 +3795,17 @@ /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) +"xy" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/obj/item/book/custom_library/religious, +/obj/item/book/custom_library/religious, +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_four/forward) +"xA" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) "xB" = ( /obj/machinery/firealarm{ dir = 4; @@ -3275,23 +3820,50 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"xE" = ( -/turf/simulated/wall/rshull, -/area/space) -"xK" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/forward) -"xM" = ( -/obj/structure/girder/reinforced, -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/rnd/secure_storage/critical/records) +"xC" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"xH" = ( +/obj/structure/table/fancyblack, +/turf/simulated/floor/carpet/bcarpet, +/area/main_map/maintenance/deck_four/forward) +"xI" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) +"xJ" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/miningdock) "xP" = ( /obj/structure/railing/grey{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/ai) +"xS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"xT" = ( +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_four/aft/port) +"xX" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/plating, +/area/space) "ya" = ( /obj/machinery/power/apc/direction_bump/south, /obj/structure/cable/green{ @@ -3299,49 +3871,67 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/library) -"yc" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "0-4" +"yg" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 9 }, -/turf/simulated/floor/tiled, -/area/space) -"yf" = ( +/obj/map_helper/conveyor/belt{ + id_tag = "_mobile_mining_interior"; + name = "Ore processing belt" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"yh" = ( /obj/structure/transit_tube/high_velocity{ icon_state = "auto" }, /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, -/area/maintenance/deck_four) -"yi" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "expshuttle_dock"; - req_one_access = list(19,43,67); - pixel_y = 32 +/area/main_map/hallway/deck4/fore) +"yl" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/aft/port) "ym" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) -"yp" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/ftl) "yr" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/secure_storage/critical) +"yt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) +"yu" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"yy" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "yC" = ( /obj/structure/stairs/spawner/south, /obj/structure/railing/grey{ @@ -3349,12 +3939,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai) -"yF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"yE" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/rnd/research) +/area/main_map/maintenance/deck_four/aft/starboard) "yG" = ( /obj/structure/bookcase{ name = "bookcase (Reference)" @@ -3368,29 +3958,31 @@ /obj/structure/railing, /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research) -"yK" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) -"yQ" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"yM" = ( +/obj/structure/filingcabinet, +/obj/machinery/air_alarm{ + pixel_y = 24 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/forward) -"yR" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ +/turf/simulated/floor/reinforced, +/area/rnd/secure_storage/lower) +"yO" = ( +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) -"yS" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/forward) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/secure_storage/critical) "yV" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/component/unary/vent_pump/on{ @@ -3405,55 +3997,85 @@ }, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) -"yX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"yW" = ( +/obj/machinery/mineral/unloading_machine, +/obj/machinery/conveyor{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/map_helper/conveyor/belt{ + id_tag = "mining_interior"; + name = "Ore processing belt" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"zm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"zo" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_four/starboard) -"zp" = ( +/turf/simulated/floor/plating, +/area/quartermaster/miningdock) +"yZ" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 5 + dir = 4 }, /turf/simulated/floor/tiled, /area/space) -"zq" = ( +"zb" = ( +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"ze" = ( /obj/machinery/door/airlock/glass_external, -/obj/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/deck_four/aft/port) -"zs" = ( -/obj/structure/morgue/crematorium{ - id = "crematorium" - }, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/atmospheric_field_generator/perma, /turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/forward) +/area/main_map/maintenance/deck_four/aft/port) +"zf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"zh" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/ext_door, +/turf/simulated/floor/plating, +/area/space) +"zi" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_four/forward) +"zl" = ( +/obj/structure/anomaly_container, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 3 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/anomaly_lab) +"zr" = ( +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"zt" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) "zu" = ( /obj/machinery/porta_turret/stationary{ health = 200 @@ -3463,10 +4085,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) -"zx" = ( -/obj/item/barrier_tape_segment/engineering, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four) "zy" = ( /obj/machinery/door/airlock/glass_science{ name = "Decontamination"; @@ -3480,12 +4098,6 @@ }, /turf/simulated/floor/tiled, /area/gateway) -"zA" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) "zB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -3495,22 +4107,22 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/vault1) -"zD" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/space) "zE" = ( /obj/machinery/newscaster{ pixel_y = 30 }, /turf/simulated/floor/carpet/bcarpet, /area/library/study) -"zJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_interior" +"zI" = ( +/obj/machinery/door/airlock/maintenance/rnd, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/rnd/anomaly_lab) "zL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -3518,50 +4130,69 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/bluegrid, /area/ai) -"zQ" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/ftl) -"zR" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/space) -"zT" = ( +"zN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) -"zZ" = ( -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/forward) -"Aa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"Ae" = ( +/area/main_map/maintenance/deck_four/aft/port) +"zS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable/orange{ - icon_state = "1-2" +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/port) +"zU" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "mining_interior"; + name = "Ore processing belt" }, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"Ag" = ( -/obj/structure/stairs/spawner/east, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/port) +/area/quartermaster/miningdock) +"zW" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) +"zX" = ( +/obj/item/storage/excavation, +/obj/item/pickaxe, +/obj/item/tool/wrench, +/obj/item/measuring_tape, +/obj/item/stack/flag/yellow, +/obj/structure/table/steel, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"Ab" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_four/port) +"Af" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/door/airlock{ + name = "General Storage"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"Ah" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/forward) +"Ai" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/space) +"Aj" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "Al" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/light, @@ -3573,61 +4204,50 @@ }, /turf/simulated/floor/tiled/monotile, /area/gateway) -"Am" = ( -/obj/machinery/camera/network/research{ - dir = 8 +"An" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/research) -"Ao" = ( -/turf/simulated/floor/tiled, -/area/gateway) -"Ap" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/forward) -"Aq" = ( /obj/structure/cable/green{ icon_state = "1-8" }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +/area/rnd/anomaly_lab) +"Ao" = ( +/turf/simulated/floor/tiled, +/area/gateway) +"Ar" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) "As" = ( /obj/structure/statue/marble/female, /turf/simulated/floor/plating, /area/space) -"At" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "mining_interior" +"AA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/obj/machinery/door/blast/regular{ + id = "mobile_miningbase" }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"Au" = ( -/obj/effect/floor_decal/borderfloor/corner, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "AB" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, /area/library) -"AC" = ( -/obj/machinery/door/airlock/glass_external, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/atmospheric_field_generator, -/obj/machinery/door/blast/regular{ - id = "mobile_miningbase_shuttle_door" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) "AH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, @@ -3653,19 +4273,39 @@ }, /turf/simulated/floor/reinforced, /area/gateway) -"AO" = ( -/turf/simulated/mineral/icerock/ignore_cavegen/lythios43c, -/area/rift/surfacebase/outside/west_deep) -"AP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ +"AM" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "E-W-Pass" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4) +"AN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/floor/tiled/steel_grid, -/area/outpost/mining_main/outpost/near_gateway) +/obj/machinery/conveyor_switch/oneway{ + pixel_y = 14 + }, +/obj/map_helper/conveyor/lever{ + id_tag = "_mobile_mining_interior"; + name = "Ore Processing" + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"AR" = ( +/obj/structure/table/rack/shelf, +/obj/machinery/air_alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/deck_four/aft/starboard) "AS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -3683,63 +4323,33 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/vault2) -"AV" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, +"AU" = ( /turf/simulated/floor/tiled, -/area/rnd/research/testingrange) +/area/main_map/hallway/deck4) "AW" = ( /obj/machinery/camera/network/research_outpost{ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) -"AX" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +"Bd" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) +"Bg" = ( +/obj/structure/reagent_dispensers/coolanttank, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical) -"AY" = ( -/obj/machinery/button/remote/blast_door{ - id = "belter_blast_right"; - name = "Shuttle Blast Doors"; - pixel_y = 25 - }, -/obj/machinery/atmospheric_field_generator/perma, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "belter_blast_right" - }, -/turf/simulated/shuttle/floor/voidcraft, -/area/maintenance/deck_four/aft/port) -"Bc" = ( -/obj/machinery/door/airlock/glass_external, -/obj/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"Be" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/tiled/monotile, +/area/rnd/anomaly_lab) "Bh" = ( /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, @@ -3750,11 +4360,6 @@ }, /turf/simulated/floor/reinforced, /area/gateway) -"Bm" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) "Bo" = ( /obj/machinery/camera/motion{ network = list("Research","Command") @@ -3762,12 +4367,15 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/vault2) -"Br" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, +"Bp" = ( +/obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +/area/rnd/anomaly_lab) +"Bq" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck4/fore) "Bt" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/vault1) @@ -3777,45 +4385,30 @@ }, /turf/simulated/floor/reinforced, /area/gateway) -"By" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 +"Bx" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/direction_bump/south, -/turf/simulated/floor/tiled/steel_grid, -/area/outpost/mining_main/outpost/near_gateway) -"BC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/glass/reinforced, -/area/maintenance/deck_four) -"BF" = ( -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"BI" = ( -/turf/simulated/wall/rshull, -/area/maintenance/deck_four/aft/port) -"BL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "mobile_miningbase" - }, -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/reinforced, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck4/fore) "BO" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) +"BP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4) +"BR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/rnd/anomaly_lab/containment_two) +"BT" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/ai) "BU" = ( /obj/structure/cable/green, /obj/structure/cable/green{ @@ -3837,31 +4430,48 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/vault1) -"BW" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) "BX" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/simulated/floor/reinforced/airless, /area/space) -"Cd" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) -"Ce" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +"BY" = ( +/obj/machinery/door/blast/regular{ + id = "mobile_miningbase" + }, +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"Ca" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"Cb" = ( +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/forward) +"Cc" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/rnd/research) -"Cf" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/rnd/secure_storage/lower) +/area/main_map/maintenance/deck_four/aft/starboard) +"Cg" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4) "Ch" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -3886,19 +4496,39 @@ /obj/item/book/manual/robotics_cyborgs, /turf/simulated/floor/wood, /area/library) -"Cm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, +"Ck" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"Cl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"Cp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4) +"Cq" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "Cs" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ id_tag = "smugler_airlock1"; @@ -3910,12 +4540,6 @@ }, /turf/simulated/floor/plating, /area/space) -"Ct" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) "Cu" = ( /obj/structure/lattice, /obj/structure/transit_tube/high_velocity{ @@ -3923,6 +4547,18 @@ }, /turf/space, /area/space) +"Cv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/space) "Cw" = ( /turf/simulated/floor/tiled/monotile, /area/rnd/outpost/underground) @@ -3935,11 +4571,19 @@ /obj/item/pen/invisible, /turf/simulated/floor/carpet/bcarpet, /area/library/study) -"Cz" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/item/barrier_tape_segment/engineering, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/forward) +"Cy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "CC" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, @@ -3948,16 +4592,22 @@ /obj/structure/sign/warning/secure_area, /turf/simulated/wall/r_wall, /area/gateway/prep_room) -"CH" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/obj/machinery/atmospherics/pipe/manifold/hidden{ +"CG" = ( +/turf/simulated/wall/rshull, +/area/main_map/maintenance/deck_four/aft/port) +"CJ" = ( +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, -/obj/machinery/door/blast/regular{ - id = "mobile_miningbase" +/obj/machinery/power/apc/direction_bump/north, +/obj/structure/cable/green{ + icon_state = "0-4" }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "CK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3972,13 +4622,52 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/library) -"CV" = ( +"CS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) +"CT" = ( /obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4) +"CW" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/main_map/maintenance/deck_four/forward) +"CX" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "E-W-Pass" + }, +/obj/structure/railing{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4/fore) +"CZ" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "Da" = ( /obj/machinery/embedded_controller/radio/airlock/access_controller{ dir = 1; @@ -3989,6 +4678,21 @@ /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled, /area/rnd/secure_storage/critical) +"Dc" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"De" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"Df" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai) "Dg" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -4002,15 +4706,25 @@ }, /turf/simulated/floor/tiled/monotile, /area/outpost/mining_main/outpost/near_gateway) -"Do" = ( -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green{ - icon_state = "0-2" +"Dj" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/starboard) +"Dl" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/miningdock) +"Dm" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"Dp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 }, /turf/simulated/floor/plating, -/area/maintenance/deck_four/forward) +/area/space) "Du" = ( /obj/machinery/camera/network/command{ dir = 4 @@ -4029,9 +4743,24 @@ }, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) +"Dy" = ( +/obj/machinery/door/morgue{ + dir = 2; + name = "Confession Booth (Chaplain)"; + req_access = list(22) + }, +/turf/simulated/floor/tiled/dark, +/area/main_map/maintenance/deck_four/forward) "Dz" = ( /turf/space/basic, /area/space) +"DA" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" + }, +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4) "DB" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 @@ -4039,40 +4768,25 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/vault2) -"DD" = ( -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 +"DC" = ( +/obj/machinery/button/remote/blast_door{ + id = "belter_blast_right"; + name = "Shuttle Blast Doors"; + pixel_y = 25 }, -/obj/structure/table/fancyblack, -/turf/simulated/floor/carpet/bcarpet, -/area/maintenance/deck_four/forward) -"DF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/machinery/atmospheric_field_generator/perma, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "belter_blast_right" }, -/obj/machinery/door/firedoor/glass, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/science{ - name = "Secure Storage"; - req_one_access = list(20,30) +/turf/simulated/shuttle/floor/voidcraft, +/area/main_map/maintenance/deck_four/aft/port) +"DH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"DG" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/airlock_sensor{ - pixel_y = 28; - pixel_x = -28 - }, -/obj/map_helper/airlock/sensor/chamber_sensor, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/plating, +/area/space) "DJ" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4084,42 +4798,37 @@ /obj/machinery/light, /turf/simulated/floor/tiled/monotile, /area/gateway) -"DL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/outpost/mining_main/outpost/near_gateway) "DM" = ( /turf/simulated/floor/bluegrid, /area/ai_upload) -"DO" = ( -/obj/machinery/door/blast/regular{ - dir = 4 +"DP" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_four/forward) +"DQ" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/maintenance/deck_four/aft/port) +"DU" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck4) +"DV" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck4) +"DX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 }, -/turf/simulated/floor/reinforced/airless, -/area/maintenance/deck_four/aft/port) -"DR" = ( /turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) -"DS" = ( -/obj/machinery/mineral/input, -/obj/machinery/conveyor{ - dir = 4; - id = "mining_interior" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"DW" = ( -/obj/spawner/window/reinforced/tinted/full, -/turf/simulated/floor/tiled/dark, -/area/maintenance/deck_four/forward) -"DY" = ( -/obj/machinery/atmospherics/component/unary/engine/bigger, -/turf/simulated/shuttle/plating/carry, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/aft/port) +"DZ" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) "Ea" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/door/window/brigdoor/southleft{ @@ -4140,24 +4849,22 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai) -"Ee" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai) +"Ec" = ( +/turf/simulated/wall, +/area/engineering/ftl) "Eh" = ( /obj/machinery/light/no_nightshift{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Ej" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 +"Em" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/aft/port) +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "Eq" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloor{ @@ -4168,32 +4875,25 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Es" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_four/forward) "Et" = ( /obj/machinery/door/airlock/maintenance/rnd, /turf/simulated/floor/tiled/techmaint, /area/rnd/research) -"Ev" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/starboard) -"Ex" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"EB" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_interior" +"Ew" = ( +/obj/structure/railing{ + dir = 4 }, -/obj/machinery/camera/network/cargo, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"EE" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/starboard) +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"Ey" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_four) +"EA" = ( +/obj/machinery/camera/network/research{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "EF" = ( /turf/simulated/floor/outdoors/grass/heavy/interior, /area/rnd/research) @@ -4215,14 +4915,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"EH" = ( -/obj/machinery/atmospheric_field_generator/perma, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "belter_blast_right" - }, -/turf/simulated/shuttle/floor/voidcraft, -/area/maintenance/deck_four/aft/port) "EI" = ( /obj/machinery/door/airlock/maintenance/rnd, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4236,39 +4928,75 @@ }, /turf/simulated/floor/plating, /area/gateway/prep_room) +"EJ" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" + }, +/turf/simulated/floor/reinforced/airless, +/area/main_map/hallway/deck4/fore) +"EL" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "expshuttle_dock"; + pixel_x = 32; + req_one_access = list(19,43,67) + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/miningdock) "EM" = ( /obj/structure/cable/heavyduty{ icon_state = "1-8" }, /turf/simulated/floor/reinforced/airless, /area/space) -"EN" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/railing{ +"EP" = ( +/obj/effect/floor_decal/borderfloor{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"EO" = ( -/turf/simulated/floor/tiled/techmaint, -/area/space) +/area/rnd/secure_storage/critical) +"EQ" = ( +/obj/structure/table/standard, +/obj/item/flashlight/lamp, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/direction_bump/north, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_one) +"ER" = ( +/obj/machinery/artifact_analyser, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_one) +"EV" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/library/study) "EX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) -"Fg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/camera/motion{ - network = list("Research","Command") - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +"EY" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/anomaly_lab) +"Fd" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/plating, +/area/space) "Fh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -4298,33 +5026,33 @@ /obj/structure/railing/grey, /turf/simulated/floor/plating, /area/ai_upload) -"Fp" = ( -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/vault1) -"Fq" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/plating, -/area/maintenance/deck_four) "Fr" = ( /obj/structure/railing, /turf/simulated/floor/carpet/bcarpet, /area/library) -"Fy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/toolbox/emergency, +"Fs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/aft/starboard) +"Ft" = ( +/obj/machinery/artifact_analyser, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_two) +"Fu" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/miningdock) +"Fv" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/secure_storage/lower) "Fz" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4333,25 +5061,33 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"FB" = ( -/turf/simulated/wall/r_wall, -/area/ai_upload) +"FA" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/hallway/deck4) "FC" = ( /turf/simulated/floor/tiled/techfloor, /area/ai) -"FD" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/aft/port) "FE" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 }, /turf/simulated/floor/tiled/monotile, /area/gateway) -"FF" = ( -/turf/simulated/floor/reinforced, -/area/maintenance/deck_four/aft/port) +"FG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/rnd/anomaly_lab/containment_one) "FH" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/door/blast/regular{ @@ -4360,6 +5096,14 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) +"FI" = ( +/obj/structure/stairs/spawner/west, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/starboard) "FJ" = ( /obj/structure/bookcase{ name = "bookcase (Reference)" @@ -4377,13 +5121,22 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"FL" = ( -/obj/structure/transit_tube/station, -/obj/structure/transit_tube_pod{ - dir = 4 +"FM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four) +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"FN" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/bluegrid, +/area/ai) "FP" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/railing{ @@ -4395,82 +5148,97 @@ /obj/structure/largecrate, /turf/simulated/floor/plating, /area/space) -"FS" = ( -/obj/machinery/camera/motion{ - dir = 8; - network = list("Research","Command") - }, -/obj/machinery/holoplant, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical) -"FT" = ( -/obj/machinery/mineral/processing_unit, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"FU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"FX" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"Ga" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/port) -"Gc" = ( -/obj/machinery/mineral/output, -/obj/machinery/conveyor{ +"FW" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"Gb" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/blast/regular{ dir = 4; - id = "mining_interior" + id = "mobile_miningbase_door" }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "mobile_miningbase_door"; + pixel_x = 32 + }, +/obj/machinery/atmospheric_field_generator, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/maintenance/deck_four/aft/port) +"Ge" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/main_map/maintenance/deck_four/forward) +"Gf" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/port) +"Gh" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) "Gj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/rnd/outpost/underground) -"Gl" = ( -/obj/machinery/door/airlock/maintenance/cargo, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/port) -"Gp" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/forward) -"Gv" = ( -/obj/machinery/door/morgue{ - dir = 2; - name = "Confession Booth (Chaplain)"; - req_access = list(22) +"Gm" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "expshuttle_dock"; + req_one_access = list(19,43,67); + pixel_y = 32 }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/deck_four/forward) +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/miningdock) +"Gs" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/research) +"Gy" = ( +/obj/machinery/door/airlock/science{ + name = "Secure Storage"; + req_one_access = list(20,30) + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + master_tag = "secure_science_stroage_airlock_control"; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/secure_storage/critical) "Gz" = ( /obj/structure/transit_tube/high_velocity{ icon_state = "E-W-Pass" }, /turf/simulated/floor/reinforced/airless, /area/space) +"GB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/anomaly_lab) "GD" = ( /obj/map_helper/airlock/door/int_door, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -4497,6 +5265,19 @@ }, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) +"GJ" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"GL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four) "GN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -4519,72 +5300,73 @@ /obj/machinery/light/small, /turf/simulated/floor/wood, /area/library) -"GR" = ( -/obj/machinery/door/airlock/maintenance/cargo, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"GT" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/obj/machinery/door/blast/regular{ - id = "mobile_miningbase" +"GS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 }, -/turf/simulated/floor/reinforced, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/plating, +/area/space) +"GW" = ( +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4/fore) "GX" = ( /turf/simulated/wall, /area/rnd/outpost/maintenance) -"GY" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ +"Ha" = ( +/obj/machinery/atmospherics/portables_connector{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"Hc" = ( -/obj/machinery/conveyor{ - id = "mining_interior"; - dir = 1 - }, -/obj/structure/plasticflaps/mining, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"Hb" = ( +/obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/aft/port) "Hd" = ( /turf/simulated/wall, /area/gateway) -"Hh" = ( -/obj/structure/table, -/turf/simulated/floor/plating, -/area/maintenance/deck_four) -"Hi" = ( -/turf/simulated/wall, -/area/outpost/mining_main/outpost/near_gateway) -"Hj" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) -"Hk" = ( -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/super/south_bump, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"Hm" = ( -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/port) -"Ho" = ( +"He" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/miningdock) +"Hf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /turf/simulated/floor/tiled, -/area/space) -"Hq" = ( +/area/main_map/hallway/deck4) +"Hg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"Hi" = ( +/turf/simulated/wall, +/area/outpost/mining_main/outpost/near_gateway) +"Hn" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_four/port) +"Hp" = ( +/obj/machinery/artifact_harvester, +/obj/structure/window/reinforced{ + dir = 1 + }, /turf/simulated/floor/tiled/techfloor/grid, -/area/space) +/area/rnd/anomaly_lab) "Hr" = ( /obj/structure/transit_tube/high_velocity{ icon_state = "auto" @@ -4592,17 +5374,65 @@ /obj/structure/lattice, /turf/space, /area/space) +"Ht" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"Hu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) "Hv" = ( /obj/machinery/camera/network/command, /turf/simulated/floor/greengrid, /area/ai) -"Hw" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "mining_interior" +"Hz" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"HA" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"HC" = ( +/obj/machinery/camera/network/research{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"HD" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_four) +"HE" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward/starboard) +"HK" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_four) +"HM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward/starboard) +"HP" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4/fore) "HQ" = ( /obj/machinery/door/firedoor{ dir = 1 @@ -4612,6 +5442,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) +"HS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/vent/high_volume, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/maintenance/deck_four/aft/port) "HT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4628,43 +5465,32 @@ }, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) -"HW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) -"HX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, +"HU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, -/area/maintenance/deck_four/forward) +/area/space) +"HZ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"Ib" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/main_map/hallway/deck4/fore) +"Ic" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_four/forward/starboard) "Id" = ( /obj/structure/closet/firecloset/full/double, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) -"Ie" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"If" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_four/forward) -"Ii" = ( -/obj/map_helper/airlock/atmos/pump_out_internal, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ +"Ig" = ( +/obj/machinery/door/firedoor/glass{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "Ik" = ( /obj/structure/cable/green, /obj/machinery/power/apc/critical/west_bump, @@ -4673,16 +5499,9 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai) -"Iq" = ( -/obj/machinery/conveyor{ - id = "mining_interior"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"Ir" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_four/forward/port) +"Ip" = ( +/turf/simulated/wall/prepainted/civilian, +/area/main_map/maintenance/deck_four/forward) "Is" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 1 @@ -4693,14 +5512,23 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/vault1) -"It" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/port) +"Iv" = ( +/obj/structure/closet/excavation, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "Iy" = ( /turf/simulated/floor/tiled, /area/engineering/ftl) +"Iz" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "IB" = ( /obj/item/storage/secure/safe{ pixel_x = 36 @@ -4716,21 +5544,9 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"IG" = ( -/turf/space, -/area/maintenance/deck_four/forward) -"IH" = ( -/obj/machinery/mineral/output, -/obj/machinery/conveyor{ - id = "mobile_mining_interior"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"II" = ( -/obj/structure/bed/chair/comfy/brown, -/turf/simulated/floor/plating, -/area/maintenance/deck_four) +"IF" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_four/forward/starboard) "IJ" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/research) @@ -4747,12 +5563,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/gateway) -"IO" = ( -/obj/structure/transit_tube/high_velocity{ - icon_state = "auto" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four) "IQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -4763,14 +5573,42 @@ }, /turf/simulated/floor/tiled, /area/gateway) -"IW" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/obj/machinery/door/blast/regular{ - id = "mobile_miningbase" - }, +"IR" = ( +/obj/structure/salvageable/console_broken_os, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/forward) +"IV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"IZ" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"Ja" = ( +/obj/structure/salvageable/data_os, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"Jb" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "Jc" = ( /obj/structure/bookcase/legal/combo, /obj/item/book/manual/standard_operating_procedure, @@ -4778,16 +5616,19 @@ /obj/item/book/manual/command_guide, /turf/simulated/floor/wood, /area/library) +"Jf" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_four/forward/port) "Ji" = ( /turf/simulated/floor/reinforced/airless, /area/space) -"Jk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +"Jl" = ( +/obj/machinery/artifact_scanpad, +/obj/machinery/light/no_nightshift{ + dir = 1 }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_two) "Jn" = ( /obj/machinery/power/terminal{ dir = 8 @@ -4798,12 +5639,6 @@ /obj/machinery/camera/network/command, /turf/simulated/floor/tiled/techfloor, /area/ai) -"Jo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) "Jq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -4819,6 +5654,17 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/monotile, /area/gateway) +"Jv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"Jy" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_four/aft/port) "Jz" = ( /obj/structure/table/wooden_reinforced, /obj/item/flashlight/lamp/green{ @@ -4827,16 +5673,6 @@ }, /turf/simulated/floor/wood, /area/library) -"JC" = ( -/obj/machinery/light/no_nightshift{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/deck_four/aft/port) -"JF" = ( -/obj/structure/closet/crate/nanotrasen, -/turf/simulated/floor/reinforced, -/area/maintenance/deck_four/aft/starboard) "JH" = ( /obj/structure/table/reinforced, /obj/machinery/recharger/wallcharger{ @@ -4851,17 +5687,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JI" = ( -/obj/machinery/light/small{ - dir = 4 +"JK" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) -"JJ" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_monitoring) +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/miningdock) "JM" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 6 @@ -4878,15 +5709,6 @@ /obj/machinery/power/apc/direction_bump/south, /turf/simulated/floor/tiled/monotile, /area/gateway) -"JP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) "JQ" = ( /obj/structure/table/steel_reinforced, /obj/effect/floor_decal/borderfloor{ @@ -4898,40 +5720,15 @@ }, /turf/simulated/floor/tiled, /area/rnd/secure_storage/critical) -"JT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/shunt) -"JV" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"JW" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/secure/briefcase, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/records) -"JX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) -"JY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +"JR" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) +"JZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) "Kb" = ( /obj/machinery/firealarm{ dir = 4; @@ -4954,21 +5751,18 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai) -"Kd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +"Ke" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "Kf" = ( /obj/machinery/washing_machine, /turf/simulated/floor/tiled, @@ -4979,23 +5773,21 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai) -"Kj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/steel_grid, -/area/outpost/mining_main/outpost/near_gateway) +"Kh" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/starboard) +"Ki" = ( +/obj/machinery/door/airlock/maintenance/rnd, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) "Kk" = ( /obj/spawner/window/full/firelocks, /turf/simulated/floor/plating, /area/gateway) -"Ko" = ( -/obj/machinery/door/airlock/glass_external, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/atmospheric_field_generator/perma, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/aft/port) +"Kl" = ( +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/port) "Kr" = ( /obj/structure/bookcase{ name = "bookcase (Non-Fiction)" @@ -5024,56 +5816,15 @@ }, /turf/simulated/floor/plating, /area/rnd/secure_storage/critical) -"Kw" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/vault{ - name = "FTL Drive"; - req_one_access = list(10) - }, -/turf/simulated/floor/plating, -/area/engineering/ftl) -"Ky" = ( -/obj/machinery/holoplant, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical) -"Kz" = ( -/obj/machinery/atmospherics/component/binary/passive_gate/on{ - dir = 1; - pressure_resistance = 750; - target_pressure = 750 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"KB" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/forward) +"KA" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/research/testingrange) "KE" = ( /obj/structure/transit_tube/high_velocity{ icon_state = "E-W-Pass" }, /turf/space, /area/space) -"KH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/space) -"KJ" = ( -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) "KL" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -5084,31 +5835,29 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"KN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"KP" = ( +/turf/simulated/floor/plating, +/area/engineering/shunt) +"KQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable/orange{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"KS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ icon_state = "1-4" }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"KR" = ( -/obj/machinery/camera/motion{ - dir = 8; - network = list("Research","Command") - }, /turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical) +/area/main_map/maintenance/deck_four/aft/starboard) "KT" = ( /obj/spawner/window/borosillicate/reinforced/full, /obj/machinery/door/blast/regular{ @@ -5117,12 +5866,34 @@ }, /turf/simulated/floor, /area/gateway) -"KV" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/port) +"KU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4/fore) "KX" = ( /turf/simulated/floor/tiled, /area/engineering/shunt) +"KY" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/airlock_sensor{ + pixel_y = 28; + pixel_x = -28 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"KZ" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four) "La" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -5131,48 +5902,92 @@ }, /turf/simulated/floor/tiled/monotile, /area/gateway) -"Lc" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 +"Lf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/space) -"Ld" = ( -/obj/structure/table/rack/shelf, -/obj/machinery/air_alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/deck_four/aft/starboard) -"Lg" = ( -/obj/structure/transit_tube/high_velocity{ - icon_state = "auto" - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four) +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) "Lj" = ( /obj/landmark/spawnpoint/job/librarian, /obj/structure/bed/chair/comfy/brown, /turf/simulated/floor/carpet/bcarpet, /area/library/study) -"Lm" = ( -/obj/structure/bed/chair/office/dark{ +"Lk" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "mobile_miningbase_door" + }, +/obj/machinery/atmospheric_field_generator, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/maintenance/deck_four/aft/port) +"Ll" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"Lq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/glass/reinforced, -/area/maintenance/deck_four) -"Ln" = ( -/turf/simulated/mineral/icerock/lythios43c, -/area/rift/surfacebase/underground/under2) -"Lw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"Lr" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) +"Lu" = ( +/obj/structure/filingcabinet{ + desc = "A large cabinet with drawers. They seem to be ominously empty."; + name = "Classified Science Records" + }, +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 24 }, /turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"LB" = ( -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/forward) +/area/rnd/secure_storage/critical/records) +"LA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"LE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"LF" = ( +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "LG" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 10 @@ -5185,6 +6000,42 @@ }, /turf/simulated/floor/tiled/monotile, /area/gateway) +"LH" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) +"LJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/secure_storage/critical) +"LM" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/bio_suit/anomaly, +/obj/item/clothing/head/bio_hood/anomaly, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "LO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -5194,16 +6045,31 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) +"LP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/component/binary/passive_gate/on{ + regulate_mode = 1; + target_pressure = 80; + pressure_resistance = 80 + }, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) "LS" = ( /obj/structure/ladder/up, /turf/simulated/floor/plating, /area/space) -"LV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"LT" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"LW" = ( +/obj/machinery/light/small{ + dir = 4 }, -/turf/simulated/floor/glass/reinforced, -/area/maintenance/deck_four) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four) "LX" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/power/apc{ @@ -5216,39 +6082,70 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"Ma" = ( -/obj/structure/table/rack/shelf, -/obj/machinery/air_alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/reinforced, -/area/rnd/secure_storage/lower) -"Md" = ( -/obj/machinery/conveyor{ - id = "mining_interior"; +"Mc" = ( +/obj/machinery/artifact_scanpad, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"Mi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/map_helper/airlock/sensor/ext_sensor, -/obj/machinery/airlock_sensor/airlock_exterior{ - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/vent/high_volume{ - dir = 8 - }, /turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/deck_four/aft/port) -"Mk" = ( +/area/rnd/anomaly_lab) +"Me" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/starboard) +"Mf" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/atmospheric_field_generator, +/obj/machinery/door/blast/regular{ + id = "mobile_miningbase_shuttle_door" + }, +/obj/machinery/button/remote/blast_door{ + id = "mobile_miningbase_shuttle_door"; + pixel_y = 32 + }, /turf/simulated/floor/tiled/techfloor, -/area/space) +/area/main_map/maintenance/deck_four/aft/port) "Mp" = ( /turf/simulated/floor/carpet/bcarpet, /area/library/study) +"Mq" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4/fore) +"Mu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_two) +"Mv" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/space) +"Mw" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"Mx" = ( +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) "My" = ( /obj/structure/railing/grey{ dir = 8 @@ -5265,43 +6162,34 @@ "MA" = ( /turf/simulated/floor/plating, /area/rnd/research) -"MB" = ( -/obj/machinery/door/airlock/maintenance/rnd, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/rnd/secure_storage/lower) +"MC" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) "MF" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, /turf/simulated/floor/plating, /area/space) -"MI" = ( -/turf/simulated/wall, -/area/maintenance/deck_four) -"ML" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +"MJ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) +/area/rnd/anomaly_lab) +"MK" = ( +/obj/structure/table/rack/shelf, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/deck_four/aft/starboard) +"MM" = ( +/obj/machinery/door/airlock/maintenance/int{ + req_access = list(27); + name = "Chapel Access" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) "MN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -5311,16 +6199,47 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"MP" = ( -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/aft/port) +"MO" = ( +/obj/machinery/air_alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/gateway) +"MR" = ( +/obj/machinery/light/fairy{ + dir = 4 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) +"MS" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"MT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_four) "MU" = ( /obj/machinery/porta_turret/ai_defense, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) -"Nb" = ( +"MV" = ( /turf/simulated/floor/carpet/bcarpet, -/area/maintenance/deck_four) +/area/main_map/maintenance/deck_four) +"MX" = ( +/obj/structure/girder, +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/plating, +/area/space) "Ne" = ( /obj/machinery/power/apc/direction_bump/north, /obj/structure/cable/green{ @@ -5335,23 +6254,52 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, /area/space) -"Nh" = ( -/obj/structure/filingcabinet, -/obj/machinery/air_alarm{ - pixel_y = 24 +"Ng" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 8 }, -/turf/simulated/floor/reinforced, -/area/rnd/secure_storage/lower) -"Nn" = ( -/turf/simulated/wall, -/area/maintenance/deck_four/port) -"Nq" = ( -/obj/machinery/conveyor{ - id = "mobile_mining_interior"; - dir = 4 +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_four/forward/starboard) +"Nl" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 }, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/aft/port) +"No" = ( +/obj/structure/table/standard, +/obj/item/anobattery{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/anobattery{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/anobattery{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/anobattery{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/tool/screwdriver, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 3 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"Np" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_four) "Nr" = ( /obj/structure/table/reinforced, /obj/machinery/camera/network/research_outpost{ @@ -5360,26 +6308,36 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/outpost/near_gateway) -"Nt" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/engi_engine) -"Nu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +"Ns" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"Nv" = ( +/obj/spawner/window/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4/fore) "Nw" = ( /turf/simulated/wall/r_wall, /area/gateway) +"Nz" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) "NA" = ( /obj/structure/stairs/spawner/west, /obj/structure/railing, /turf/simulated/floor/carpet/bcarpet, /area/library) +"NB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) "NC" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5395,28 +6353,19 @@ }, /turf/simulated/floor/plating, /area/ai_upload) -"NF" = ( -/obj/structure/cable{ - icon_state = "4-8" +"NJ" = ( +/obj/machinery/atmospheric_field_generator/perma, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "belter_blast_left" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/shunt) -"NI" = ( -/obj/machinery/telepad, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/turf/simulated/shuttle/floor/voidcraft, +/area/main_map/maintenance/deck_four/aft/port) "NK" = ( /obj/structure/table/wooden_reinforced, /obj/item/book/codex/lore/news, /turf/simulated/floor/wood, /area/library) -"NL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/vent/high_volume, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/deck_four/aft/port) "NN" = ( /obj/machinery/door/firedoor{ dir = 1 @@ -5426,28 +6375,79 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) +"NP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/anomaly_lab) "NR" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/records) +"NV" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"NW" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward) +"NX" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "E-W-Pass" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4/fore) "NY" = ( /obj/effect/floor_decal/borderfloor/corner, /turf/simulated/floor/tiled, /area/rnd/secure_storage/critical) -"Od" = ( +"Oc" = ( +/obj/machinery/atmospherics/pipe/vent, /turf/simulated/floor/plating, -/area/maintenance/deck_four/starboard) -"Oe" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_four/port) -"Oi" = ( -/obj/structure/transit_tube/high_velocity{ - icon_state = "E-W-Pass" +/area/maintenance/trash_pit) +"Of" = ( +/obj/machinery/mineral/processing_unit, +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "mining_interior"; + name = "Ore processing belt" }, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/quartermaster/miningdock) +"Og" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four) "Ok" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -5466,25 +6466,17 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"Om" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"Ot" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"Ol" = ( +/obj/machinery/door/airlock/maintenance/cargo, +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/port) +"Or" = ( +/obj/machinery/light/small{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/forward/starboard) "Ou" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5493,6 +6485,17 @@ }, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) +"Ow" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "mobile_miningbase" + }, +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/deck_four/aft/port) "Ox" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -5505,60 +6508,56 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/vault1) -"Oz" = ( -/obj/machinery/light/fairy{ - dir = 8 - }, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) +"Oy" = ( +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "OA" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"OB" = ( -/obj/machinery/door/airlock/maintenance/rnd, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/research/xenobio) -"OE" = ( -/obj/machinery/door/airlock/science{ - name = "Secure Storage"; - req_one_access = list(20,30) - }, -/obj/map_helper/airlock/door/int_door, -/obj/machinery/access_button/airlock_interior{ - master_tag = "secure_science_stroage_airlock_control"; - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"OG" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/tiled/dark, -/area/gateway/prep_room) -"OI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"OC" = ( +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck4) +"OD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, +/obj/effect/floor_decal/techfloor, /obj/structure/cable/green{ icon_state = "4-8" }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"OF" = ( +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/plating, +/area/quartermaster/miningdock) +"OG" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/tiled/dark, +/area/gateway/prep_room) +"OJ" = ( +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light/no_nightshift{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) +/area/rnd/anomaly_lab) +"OK" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/secure_storage/critical/vault1) "OL" = ( /obj/structure/bookcase{ name = "bookcase (Reference)" @@ -5580,9 +6579,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/library/study) -"OO" = ( -/turf/simulated/floor/tiled/dark, -/area/space) "OP" = ( /obj/structure/table/reinforced, /obj/item/clothing/ears/earmuffs, @@ -5590,40 +6586,21 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"OR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) "OS" = ( /obj/structure/cable/heavyduty{ icon_state = "2-8" }, /turf/simulated/floor/reinforced/airless, /area/space) -"OT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"OU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/map_helper/airlock/door/int_door, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/science{ - name = "Secure Storage"; - req_one_access = list(20,30) - }, -/obj/machinery/access_button/airlock_interior{ - dir = 4; - master_tag = "secure_science_stroage_airlock_control"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +/area/rnd/anomaly_lab/containment_two) "OV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -5631,38 +6608,48 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/bluegrid, /area/ai) +"OW" = ( +/turf/space, +/area/main_map/maintenance/deck_four) "OX" = ( /obj/machinery/camera/network/civilian{ dir = 1 }, /turf/simulated/floor/wood, /area/library) -"Pd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"Pa" = ( +/turf/simulated/wall/prepainted/engineering, +/area/maintenance/trash_pit) +"Pb" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/space) +"Ph" = ( +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_four/forward/starboard) +"Pj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"Pl" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 +/area/rnd/anomaly_lab) +"Po" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/vault2) -"Pn" = ( -/obj/item/barrier_tape_segment/engineering, -/turf/simulated/floor/tiled, -/area/maintenance/deck_four) -"Pp" = ( -/obj/structure/table/fancyblack, -/turf/simulated/floor/wood, -/area/maintenance/deck_four/forward) +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) "Pq" = ( /obj/machinery/camera/network/command{ dir = 9 @@ -5670,10 +6657,15 @@ /obj/structure/lattice, /turf/space, /area/space) -"Pr" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, +"Ps" = ( +/obj/machinery/door/airlock/maintenance, /turf/simulated/floor/plating, -/area/maintenance/deck_four/starboard) +/area/main_map/maintenance/deck_four/aft/port) +"Pt" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/int_door, +/turf/simulated/floor/plating, +/area/space) "Pv" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -5687,18 +6679,14 @@ /obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/monotile, /area/gateway) -"Px" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/vault1) +"Pw" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/port) +"Py" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4) "Pz" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -5712,34 +6700,39 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"PC" = ( -/obj/item/radio/intercom{ - broadcasting = 1; - dir = 8; - frequency = 1473; - name = "Confession Intercom"; - pixel_x = -24 +"PD" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 }, -/obj/machinery/light/small, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/deck_four/forward) +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "PE" = ( /obj/machinery/suit_cycler/mining{ req_access = null }, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) +"PF" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/pointybush, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) "PG" = ( /obj/machinery/ai_slipper, /turf/simulated/floor/tiled/techfloor, /area/ai) -"PK" = ( -/obj/structure/table/rack/shelf, -/turf/simulated/floor/reinforced, -/area/maintenance/deck_four/aft/starboard) +"PI" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/space) +"PJ" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "E-W-Pass" + }, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4) "PL" = ( /obj/structure/railing/grey{ dir = 8 @@ -5752,33 +6745,25 @@ }, /turf/simulated/floor/plating, /area/rnd/secure_storage/critical) -"PM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"PN" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"PO" = ( +/obj/structure/table/fancyblack, +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_four/forward) "PS" = ( /obj/machinery/power/apc/direction_bump/north, /turf/simulated/floor/carpet/bcarpet, /area/library/study) -"PV" = ( -/obj/structure/girder/reinforced, -/obj/structure/foamedmetal, +"PY" = ( +/obj/spawner/window/reinforced/full/firelocks, /turf/simulated/floor/plating, -/area/rnd/secure_storage/critical) -"PX" = ( -/obj/machinery/door/airlock/maintenance/engi, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/space) +/area/quartermaster/miningdock) "PZ" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass/research{ @@ -5797,79 +6782,81 @@ /obj/machinery/recharge_station, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) -"Qe" = ( +"Qc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"Qd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"Qf" = ( +/obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 10 + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"Qi" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/shuttle/wall/voidcraft, +/area/main_map/maintenance/deck_four/aft/port) +"Qo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"Qr" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/main_map/maintenance/deck_four/aft/port) +"QB" = ( +/obj/structure/flora/ausbushes/pointybush, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) +"QF" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/power/apc/direction_bump/north, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"Qg" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) -"Qk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/forward) -"Qm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"Qu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/machinery/atmospherics/component/unary/vent_scrubber{ dir = 8 }, /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"QA" = ( -/turf/simulated/wall/r_wall, -/area/engineering/hallway) -"QD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) +/area/rnd/anomaly_lab/containment_one) "QH" = ( /obj/machinery/libraryscanner, /turf/simulated/floor/wood, @@ -5878,33 +6865,42 @@ /obj/machinery/porta_turret/ai_defense, /turf/simulated/floor/tiled/techfloor, /area/ai) -"QK" = ( -/obj/machinery/door/airlock/maintenance/common, +"QJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"QL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"QM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/forward) -"QN" = ( -/obj/landmark/spawnpoint/job/chaplain, -/obj/item/radio/intercom{ - broadcasting = 1; - dir = 4; - frequency = 1473; - name = "Confession Intercom"; - pixel_x = 24 +/obj/machinery/door/airlock/glass_external{ + name = "Isolation Room 2"; + req_access = list(65); + req_one_access = list(47) }, -/obj/machinery/light/small, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/deck_four/forward) -"QS" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab/containment_two) +"QQ" = ( +/obj/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4 }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"QU" = ( +/obj/spawner/window/reinforced/tinted/full, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/forward) "QV" = ( /obj/machinery/door/airlock/highsecurity{ name = "AI Chamber"; @@ -5929,16 +6925,19 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/library) -"Rf" = ( -/obj/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 24; - pixel_y = -24 +"Rc" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four) +"Re" = ( +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) +/obj/machinery/atmospherics/pipe/vent, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"Rh" = ( +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/miningdock) "Ri" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/multi_tile/metal{ @@ -5952,40 +6951,18 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"Rl" = ( -/obj/structure/curtain/black{ - anchored = 1; - icon_state = "open" +"Rj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/simulated/floor/carpet/bcarpet, -/area/maintenance/deck_four/forward) -"Ro" = ( -/obj/machinery/camera/network/research{ - dir = 8 +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_four) +"Rm" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) -"Rp" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "mobile_miningbase_sidedoor"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"Rr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4/fore) "Rs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -5995,37 +6972,27 @@ }, /turf/simulated/floor/tiled/monotile, /area/outpost/mining_main/outpost/near_gateway) -"Ru" = ( -/turf/simulated/floor/reinforced/airless, -/area/maintenance/deck_four/port) -"Rx" = ( -/obj/structure/cable{ - icon_state = "2-4" +"Rt" = ( +/obj/machinery/button/crematorium{ + id = "crematorium"; + pixel_x = -4; + pixel_y = 28; + req_access = null; + req_one_access = list(27,6) }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/shunt) -"Rz" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"RC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"RG" = ( -/obj/machinery/door/airlock/glass_external, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/door/blast/regular{ +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_four/forward) +"RA" = ( +/obj/machinery/air_alarm{ dir = 4; - id = "mobile_miningbase_door" + pixel_x = -23 }, -/obj/machinery/atmospheric_field_generator, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/deck_four/aft/port) +/turf/simulated/floor/tiled/techfloor, +/area/rnd/secure_storage/critical/vault2) +"RB" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/main_map/maintenance/deck_four/aft/port) "RH" = ( /obj/item/storage/secure/safe{ pixel_x = 36 @@ -6044,12 +7011,11 @@ /obj/item/radio/electropack, /turf/simulated/floor/plating, /area/space) -"RK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, +"RJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) +/area/main_map/hallway/deck4/fore) "RM" = ( /obj/structure/grille, /obj/machinery/door/firedoor/border_only, @@ -6064,29 +7030,113 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) -"RR" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/obj/structure/cable/green{ - icon_state = "0-8" +"RP" = ( +/turf/simulated/wall/r_wall{ + can_open = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) +/area/main_map/maintenance/deck_four/forward) +"RS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/secure_storage/critical) "RT" = ( /obj/structure/transit_tube/high_velocity{ icon_state = "N-S-Pass" }, /turf/space, /area/space) +"RV" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/maintenance/deck_four/aft/port) +"RZ" = ( +/obj/structure/transit_tube/station{ + dir = 4 + }, +/obj/structure/transit_tube_pod{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck4) +"Sb" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) +"Sc" = ( +/obj/structure/table/standard, +/obj/item/anodevice, +/obj/item/anodevice{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tool/crowbar, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "Sd" = ( /turf/simulated/floor/tiled/monotile, /area/outpost/mining_main/outpost/near_gateway) -"Se" = ( -/obj/machinery/mining/brace, +"Sf" = ( +/obj/structure/girder, +/obj/item/barrier_tape_segment/engineering, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/engineering/ftl) +"Si" = ( +/obj/machinery/door/airlock/maintenance/int{ + req_access = list(27); + name = "Chapel Access" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"Sj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) "Sk" = ( /turf/simulated/wall, /area/rnd/outpost/underground) +"So" = ( +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/tiled, +/area/main_map/hallway/deck4/fore) +"Sp" = ( +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"Sq" = ( +/turf/simulated/wall, +/area/main_map/maintenance/deck_four/aft/port) "Ss" = ( /obj/structure/cable{ icon_state = "1-2" @@ -6104,17 +7154,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Su" = ( -/obj/structure/filingcabinet{ - desc = "A large cabinet with drawers. They seem to be ominously empty."; - name = "Classified Science Records" - }, -/obj/machinery/air_alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/records) "Sv" = ( /obj/machinery/door/blast/shutters{ dir = 4; @@ -6133,35 +7172,45 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/gateway) -"Sw" = ( -/turf/simulated/wall/r_wall, -/area/rnd/secure_storage/lower) -"Sz" = ( -/obj/machinery/door/firedoor{ +"Sx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/deck_four/aft/port) -"SF" = ( -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/rnd/research/testingrange) +/area/rnd/anomaly_lab) +"Sy" = ( +/obj/structure/cable/green, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + pixel_y = 8; + state = 2 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/anomaly_lab) +"SC" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/quartermaster/miningdock) +"SH" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/miningdock) +"SI" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/port) +"SJ" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/library/study) "SK" = ( /obj/structure/table/reinforced, /obj/machinery/recharger/wallcharger{ @@ -6178,6 +7227,15 @@ /obj/item/storage/bag/trash, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) +"SL" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) "SM" = ( /obj/structure/table/reinforced, /turf/simulated/floor/tiled, @@ -6191,10 +7249,29 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"ST" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) +"SP" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"SQ" = ( +/obj/spawner/window/reinforced/tinted/full, +/turf/simulated/floor/tiled/dark, +/area/main_map/maintenance/deck_four/forward) +"SS" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/secure_storage/critical) "SU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -6207,20 +7284,29 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/records) -"SX" = ( -/turf/simulated/floor/tiled/neutral, -/area/space) -"Tb" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/effect/floor_decal/borderfloor{ +"SW" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "mining_interior"; + name = "Ore processing belt" + }, +/turf/simulated/floor/plating, +/area/quartermaster/miningdock) +"Ta" = ( +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/deck_four/aft/port) +"Tc" = ( +/obj/effect/floor_decal/techfloor{ dir = 5 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) "Td" = ( /obj/machinery/button/windowtint{ id = "library_study"; @@ -6229,58 +7315,87 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/library/study) -"Tg" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 +"Th" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/shunt) -"Tz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"Tm" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/vault2) -"TA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/area/main_map/maintenance/deck_four/aft/port) +"Tq" = ( +/turf/simulated/floor/wood, +/area/main_map/maintenance/deck_four) +"Ts" = ( +/turf/simulated/floor/reinforced/airless, +/area/main_map/hallway/deck4/fore) +"Tt" = ( +/turf/simulated/wall, +/area/engineering/shunt) +"Tw" = ( +/obj/machinery/mineral/processing_unit, +/obj/machinery/conveyor{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc/direction_bump/west, -/obj/structure/cable/green, +/obj/map_helper/conveyor/belt{ + id_tag = "_mobile_mining_interior"; + name = "Ore processing belt" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"Tx" = ( +/obj/machinery/mineral/input, +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "mining_interior"; + name = "Ore processing belt" + }, +/turf/simulated/floor/plating, +/area/quartermaster/miningdock) +"Ty" = ( /obj/structure/cable/green{ icon_state = "1-2" }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"TF" = ( +/obj/machinery/camera/network/research{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"TE" = ( -/obj/structure/stairs/spawner/east, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/port) -"TH" = ( -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/port) +/area/rnd/anomaly_lab) +"TG" = ( +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/deck_four/aft/port) "TJ" = ( /obj/machinery/atmospherics/component/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/bluegrid, /area/ai_upload) +"TL" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "TM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) +"TN" = ( +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/port) "TO" = ( /obj/structure/table/wooden_reinforced, /obj/item/paper_bin{ @@ -6320,6 +7435,19 @@ }, /turf/simulated/floor/bluegrid, /area/ai_upload) +"TS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/trash_pit) +"TT" = ( +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/carpet/bcarpet, +/area/main_map/maintenance/deck_four) "TU" = ( /turf/simulated/shuttle/wall/voidcraft/blue, /area/space) @@ -6339,28 +7467,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai) -"TX" = ( -/turf/simulated/open, -/area/space) -"TY" = ( -/obj/machinery/air_alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/library) -"TZ" = ( -/obj/structure/transit_tube/high_velocity{ - icon_state = "auto" - }, -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) -"Uc" = ( -/obj/machinery/door/airlock/glass_external, -/obj/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) "Uf" = ( /obj/machinery/power/apc/direction_bump/north, /obj/structure/cable/green{ @@ -6381,10 +7487,6 @@ }, /turf/space, /area/space) -"Uk" = ( -/obj/structure/stairs/spawner/south, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/forward) "Un" = ( /obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, @@ -6399,22 +7501,18 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai) -"UB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +"Us" = ( +/obj/machinery/door/airlock/glass_external, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/atmospheric_field_generator, +/obj/machinery/door/blast/regular{ + id = "mobile_miningbase_shuttle_door" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"UC" = ( -/obj/machinery/camera/motion{ - network = list("Research","Command") - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/vault1) +/area/main_map/maintenance/deck_four/aft/port) +"UD" = ( +/turf/simulated/wall/r_wall, +/area/main_map/hallway/deck4/fore) "UE" = ( /obj/machinery/camera/network/research_outpost{ dir = 4; @@ -6422,6 +7520,13 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/outpost/underground) +"UF" = ( +/obj/machinery/atmospherics/component/binary/pump{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "UG" = ( /obj/machinery/holopad, /turf/simulated/floor/tiled/monotile, @@ -6430,37 +7535,68 @@ /obj/machinery/floodlight, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) -"UP" = ( +"UJ" = ( +/obj/machinery/door/airlock/maintenance/command, +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"UK" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/ai_upload) +"UN" = ( /obj/structure/transit_tube/high_velocity{ - icon_state = "auto" + icon_state = "E-W-Pass" }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4) "UQ" = ( /obj/structure/transit_tube/high_velocity{ icon_state = "N-S-Pass" }, /turf/simulated/floor/reinforced/airless, /area/space) -"UY" = ( -/turf/simulated/shuttle/plating/airless/carry, -/area/space) +"US" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "_mobile_mining_interior"; + name = "Ore processing belt" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"UV" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering, +/turf/simulated/floor/tiled/steel_ridged, +/area/main_map/hallway/deck4/fore) +"UW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) "UZ" = ( /obj/item/storage/secure/safe{ pixel_x = 36 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/records) -"Va" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 8; - frequency = 1380; - id_tag = "expshuttle_dock"; - pixel_x = 32; - req_one_access = list(19,43,67) - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/aft/port) "Vb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6482,6 +7618,11 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/library) +"Vg" = ( +/obj/structure/girder, +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/plating, +/area/engineering/shunt) "Vj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -6500,18 +7641,9 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) -"Vn" = ( -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) -"Vo" = ( +"Vm" = ( /turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/port) +/area/maintenance/trash_pit) "Vp" = ( /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) @@ -6523,117 +7655,64 @@ /obj/item/book/custom_library/reference, /turf/simulated/floor/wood, /area/library) -"Vu" = ( -/obj/machinery/conveyor{ - id = "mining_interior"; - dir = 4 - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"Vw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"Vx" = ( -/obj/machinery/mineral/output, -/obj/structure/window/reinforced, -/obj/machinery/conveyor{ - dir = 1; - id = "mining_interior" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"VA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/port) -"VB" = ( -/obj/structure/girder/reinforced, -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/rnd/secure_storage/critical/vault1) -"VD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, +"Vt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/light/no_nightshift{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) -"VG" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/aft/port) -"VK" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 2; - name = "General Storage"; - req_one_access = list(47) - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/obj/effect/floor_decal/techfloor{ + dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) -"VL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/door/blast/regular{ - id = "mobile_miningbase" +/area/rnd/research) +"Vy" = ( +/obj/structure/disposaloutlet{ + dir = 1 }, -/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/obj/structure/railing, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/maintenance/trash_pit) +"VH" = ( +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"VM" = ( +/obj/machinery/door/airlock/glass/mining{ + name = "Mining Operations"; + req_access = list(31); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/quartermaster/miningdock) "VN" = ( /obj/structure/filingcabinet, /turf/simulated/floor/reinforced, /area/rnd/secure_storage/lower) -"VQ" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"VR" = ( -/obj/machinery/door/morgue{ - dir = 2; - name = "Confession Booth" - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/deck_four/forward) -"VS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/vault{ - name = "Shunt Drive"; - req_one_access = list(10) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/shunt) "VT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/bluegrid, /area/ai_upload) +"VU" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "VX" = ( /turf/simulated/wall/r_wall, /area/rnd/secure_storage/critical) @@ -6653,48 +7732,78 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) +"VZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) "Wb" = ( /obj/machinery/holopad, /obj/landmark/spawnpoint/job/scientist, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Wd" = ( -/obj/machinery/door/airlock/glass_external, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "mobile_miningbase_door" +"Wc" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "mobile_miningbase_door"; - pixel_x = 32 - }, -/obj/machinery/atmospheric_field_generator, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/deck_four/aft/port) +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "We" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/wall/r_wall, /area/gateway) +"Wf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"Wh" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/starboard) +"Wi" = ( +/turf/simulated/wall/r_wall/prepainted/science, +/area/rnd/anomaly_lab/containment_one) +"Wj" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/starboard) "Wk" = ( /obj/structure/table/reinforced, /obj/item/bodybag/cryobag, /obj/item/bodybag/cryobag, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) -"Wm" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 +"Wp" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 4 }, -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 +/obj/map_helper/conveyor/belt{ + id_tag = "_mobile_mining_interior"; + name = "Ore processing belt" }, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/main_map/maintenance/deck_four/aft/port) "Wq" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -6707,6 +7816,17 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/research) +"Wt" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume, +/turf/simulated/floor/plating, +/area/space) +"Wu" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/main_map/maintenance/deck_four/forward/starboard) "Wv" = ( /obj/structure/transit_tube/high_velocity{ icon_state = "auto" @@ -6726,37 +7846,11 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"Wz" = ( -/obj/spawner/window/borosillicate/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) "WA" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/secure/briefcase, /turf/simulated/floor/tiled/techfloor, /area/rnd/secure_storage/critical/records) -"WB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/forward) -"WC" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical) -"WG" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/starboard) "WJ" = ( /obj/effect/floor_decal/techfloor{ dir = 4 @@ -6769,30 +7863,42 @@ }, /turf/simulated/floor/plating, /area/space) -"WP" = ( -/obj/machinery/air_alarm{ - pixel_y = 22 +"WM" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 8; + frequency = 1473; + name = "Confession Intercom"; + pixel_x = -24 }, -/obj/structure/closet/hydrant{ - pixel_x = -32 +/obj/machinery/light/small, +/obj/structure/bed/chair{ + dir = 4 }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/outpost/underground) -"WR" = ( -/obj/structure/stairs/spawner/west, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/starboard) -"WS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/main_map/maintenance/deck_four/forward) +"WN" = ( +/obj/structure/salvageable/machine_os, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"WO" = ( /obj/machinery/light/no_nightshift{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/rnd/research) +/area/main_map/maintenance/deck_four/aft/starboard) +"WT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/trash_pit) +"WU" = ( +/turf/simulated/wall/r_wall/prepainted/engineering, +/area/main_map/hallway/deck4/fore) "WV" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -6802,25 +7908,92 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) +"WW" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "mobile_miningbase" + }, +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/deck_four/aft/port) "WX" = ( /turf/simulated/floor/tiled/monotile, /area/space) -"Xf" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/aft/port) -"Xm" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 +"WZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"Xa" = ( +/obj/structure/closet/crate/nanotrasen, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/deck_four/aft/starboard) +"Xd" = ( +/obj/landmark/spawnpoint/job/scientist, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) +"Xg" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4/fore) +"Xh" = ( +/obj/machinery/door/airlock{ + name = "Auxiliary Janitorial Closet"; + req_access = list(26) }, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) +/area/main_map/hallway/deck4) +"Xi" = ( +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"Xo" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/machinery/camera/network/research{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/anomaly_lab) "Xp" = ( /turf/simulated/floor/wood, /area/library) -"Xr" = ( -/turf/simulated/wall, -/area/maintenance/deck_four/aft/starboard) +"Xq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four) +"Xu" = ( +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "mobile_miningbase" + }, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/deck_four/aft/port) "Xv" = ( /obj/machinery/door/airlock/science{ name = "Secure Storage"; @@ -6832,12 +8005,57 @@ }, /turf/simulated/floor/plating, /area/rnd/secure_storage/critical) -"Xw" = ( -/obj/structure/bed/chair/wood{ +"Xx" = ( +/obj/item/barrier_tape_segment/engineering, +/turf/simulated/floor/plating, +/area/engineering/shunt) +"Xy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "mobile_miningbase" + }, +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/reinforced, +/area/main_map/maintenance/deck_four/aft/port) +"Xz" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled/techmaint, +/area/main_map/maintenance/deck_four/aft/port) +"XA" = ( +/obj/machinery/air_alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/turf/simulated/floor/carpet/bcarpet, -/area/maintenance/deck_four/forward) +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"XC" = ( +/obj/machinery/mineral/input, +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/map_helper/conveyor/belt{ + id_tag = "_mobile_mining_interior"; + name = "Ore processing belt" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) "XF" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/reinforced/airless, @@ -6849,73 +8067,34 @@ }, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) -"XH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +"XI" = ( +/obj/machinery/door/airlock/maintenance/rnd, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/research/testingrange) +"XK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"XJ" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - id = "mining_interior" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"XM" = ( -/obj/spawner/window/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/rnd/secure_storage/lower) -"XN" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/forward) -"XO" = ( -/obj/machinery/door/airlock/science{ - name = "Secure Storage"; - req_one_access = list(20,30) - }, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/access_button/airlock_exterior{ - dir = 4; - master_tag = "secure_science_stroage_airlock_control"; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/turf/simulated/floor/plating, +/area/rnd/anomaly_lab) +"XL" = ( +/turf/simulated/wall/r_wall/prepainted/science, /area/rnd/secure_storage/critical) -"XP" = ( -/obj/machinery/mining/drill, -/turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"XR" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 2; - name = "General Storage"; - req_one_access = list(47) +"XS" = ( +/obj/machinery/air_alarm{ + pixel_y = 22 }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/lower) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/dark, +/area/gateway/prep_room) "XU" = ( /obj/machinery/floodlight, /obj/machinery/atmospherics/component/unary/vent_pump/on{ @@ -6924,37 +8103,12 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) -"XW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, +"Yc" = ( +/obj/structure/table/standard, +/obj/item/multitool, +/obj/structure/window/reinforced, /turf/simulated/floor/tiled, -/area/space) -"XZ" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/ftl) -"Ya" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) -"Yb" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/critical/vault1) -"Ye" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/stairs/spawner/west, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/forward) +/area/rnd/anomaly_lab) "Yi" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 2; @@ -6965,6 +8119,18 @@ }, /turf/simulated/floor/tiled/monotile, /area/gateway/prep_room) +"Yj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) "Yk" = ( /obj/item/radio/intercom{ dir = 1; @@ -6979,27 +8145,41 @@ /obj/machinery/disposal, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Yn" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "mobile_miningbase"; - pixel_y = -32; - name = "Window Blast Door Control" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/port) -"Yr" = ( -/obj/machinery/light/fairy{ +"Yl" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) -"Yv" = ( -/obj/machinery/camera/network/research{ - dir = 8 +/turf/simulated/floor/tiled/techfloor, +/area/main_map/maintenance/deck_four/aft/port) +"Yq" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/space) +"Yu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 }, -/turf/simulated/floor/tiled/white, -/area/rnd/secure_storage/lower) +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/direction_bump/north, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"Yw" = ( +/obj/landmark/map_data/euthenia, +/turf/space, +/area/space) +"Yx" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward/starboard) "Yy" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ywflowers, @@ -7026,23 +8206,19 @@ }, /turf/simulated/floor/greengrid, /area/ai) -"YE" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/deck_four/aft/starboard) "YF" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, /area/space) +"YG" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4) "YH" = ( /obj/structure/table/reinforced, /obj/item/storage/firstaid/adv, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) -"YI" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/lower) "YJ" = ( /obj/machinery/light/small, /obj/machinery/light_switch{ @@ -7064,84 +8240,68 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"YM" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/aft/starboard) -"YO" = ( -/obj/structure/transit_tube/station{ - dir = 1 - }, -/obj/structure/transit_tube_pod{ - dir = 8 +"YN" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" }, +/obj/spawner/window/borosillicate/reinforced/full/firelocks, /turf/simulated/floor/plating, -/area/maintenance/deck_four/aft/port) -"YP" = ( -/obj/machinery/door/airlock/maintenance/cargo, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/deck_four/aft/port) -"YS" = ( -/turf/simulated/floor/outdoors/grass/heavy/interior, /area/space) +"YQ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/anomaly_lab/containment_two) +"YR" = ( +/turf/simulated/floor/outdoors/grass/heavy/interior, +/area/main_map/maintenance/deck_four/starboard) "YV" = ( /obj/item/tvcamera, /obj/item/tvcamera, /obj/structure/table/woodentable, /turf/simulated/floor/carpet/bcarpet, /area/library/study) -"YZ" = ( -/obj/machinery/light/no_nightshift{ +"YW" = ( +/obj/structure/transit_tube/station, +/obj/structure/transit_tube_pod{ dir = 4 }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/hallway/deck4/fore) +"YY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) +/area/main_map/maintenance/deck_four/aft/starboard) "Za" = ( /turf/space, /area/space) -"Zd" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) -"Zf" = ( -/obj/machinery/door/airlock/maintenance/rnd, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/research/testingrange) -"Zg" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/maintenance/deck_four/aft/port) "Zh" = ( /obj/item/radio/intercom{ pixel_y = -24 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/outpost/near_gateway) -"Zj" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/grass/heavy/interior, -/area/maintenance/deck_four/starboard) -"Zk" = ( -/obj/structure/railing/grey{ - dir = 4 +"Zi" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/secure_storage/critical) -"Zn" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, -/area/maintenance/deck_four/aft/starboard) +/area/main_map/maintenance/deck_four/aft/starboard) +"Zm" = ( +/turf/simulated/wall/r_wall/prepainted/civilian, +/area/main_map/maintenance/deck_four) "Zo" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -7150,14 +8310,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, /area/gateway) -"Zp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"Zq" = ( +/obj/structure/transit_tube/high_velocity{ + icon_state = "auto" }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/deck_four/forward) +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/hallway/deck4) "Zr" = ( /obj/structure/railing{ dir = 1 @@ -7176,9 +8335,6 @@ }, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) -"Zt" = ( -/turf/simulated/wall/r_wall, -/area/engineering/break_room) "Zu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -7188,10 +8344,21 @@ }, /turf/simulated/floor/bluegrid, /area/ai) -"Zx" = ( -/obj/structure/girder, +"Zw" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_four/forward/port) +"Zy" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, /turf/simulated/floor/plating, -/area/maintenance/deck_four) +/area/main_map/maintenance/deck_four/aft/port) "Zz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -7201,6 +8368,18 @@ }, /turf/simulated/floor/plating, /area/rnd/outpost/maintenance) +"ZA" = ( +/obj/structure/salvageable/server, +/turf/simulated/floor/plating, +/area/engineering/shunt) +"ZE" = ( +/obj/machinery/atmospheric_field_generator/perma, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "belter_blast_right" + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/main_map/maintenance/deck_four/aft/port) "ZF" = ( /obj/machinery/computer/message_monitor{ dir = 1 @@ -7210,65 +8389,47 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) -"ZJ" = ( -/turf/simulated/floor/reinforced, +"ZG" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/main_map/maintenance/deck_four/aft/port) +"ZH" = ( +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/starboard) +"ZI" = ( +/turf/simulated/wall/r_wall, +/area/main_map/maintenance/deck_four/aft/port) +"ZK" = ( +/obj/map_helper/network_builder/power_cable/green/auto, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/techmaint, +/area/quartermaster/miningdock) +"ZP" = ( +/obj/structure/salvageable/console_os, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/forward) +"ZQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/spawner/window/borosillicate/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/main_map/maintenance/deck_four/aft/port) +"ZR" = ( +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, /area/space) -"ZL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"ZN" = ( -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/deck_four/aft/port) -"ZS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/air_alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/secure_storage/critical) "ZU" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"ZV" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/space) -"ZY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/secure_storage/lower) "ZZ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, @@ -7405,48 +8566,48 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Sw -MB -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -lc -lc +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -7599,6 +8760,48 @@ Za Za Za Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -7617,49 +8820,7 @@ Za Za Za Za -Za -Sw -OI -kf -da -Ya -Sw -md -ZY -ci -md -Sw -qJ -ZY -ci -qJ -Sw -VN -ci -ZY -VN -Sw -lc -lc -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Yw Za "} (3,1,1) = {" @@ -7793,48 +8954,48 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Sw -oI -Au -zA -EN -Sw -Ma -cv -Ks -kH -Sw -Ma -cv -Ks -kH -Sw -Nh -cv -Ks -VN -Sw -km -lc +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -7987,68 +9148,68 @@ Za Za Za Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Sw -eU -FX -pw -Cf -Sw -kH -hS -Ku -kH -Sw -kH -hS -Ku -kH -Sw -VN -hS -Ku -VN -Sw -lc -lc -Za -my -mt -Ln -VX -VX -VX -VX -VX -VX -VX -VX -VX -VX -VX -VX -VX -VX -VX -VX +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (5,1,1) = {" Za @@ -8181,68 +9342,68 @@ Za Za Za Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Sw -Qe -YI -fk -hp -vN -XM -hS -XR -XM -Sw -XM -hS -XR -XM -Sw -Sw -hS -XR -Sw -Sw -OB -vI -Za -VX -VX -VX -VX -PV -PV -PV -PV -PV -PV -PV -PV -VX -PV -PV -PV -PV -PV -VX +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (6,1,1) = {" Za @@ -8375,68 +9536,68 @@ Za Za Za Za -gt -gt -gt -gt -gt -gt -gt -Nt +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za -Za -Za -JJ -aC -aC -aC -aC -aC -aC -aC -Sw -qj -ML -zm -Pd -gr -Pd -eP -XH -Cm -yX -Pd -eP -XH -Pd -yX -Pd -eP -XH -Pd -pA -Pd -Pd -Za -VX -Zk -kR -VX -VX -VX -VX -VX -VX -VX -VX -VX -VX -VX -VX -VX -VX -PV -VX +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (7,1,1) = {" Za @@ -8569,68 +9730,68 @@ Za Za Za Za -gt -gt -gt -gt -gt -gt -gt -Nt +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za -Za -Za -JJ -aC -aC -aC -aC -aC -aC -aC -Sw -nh -jS -oM -Jo -qE -Jo -Jo -Jo -Qm -oM -Jo -Jo -Jo -Jo -oM -Jo -Jo -Jo -Jo -Qm -Jo -Jo -Za -vc -Rr -lh -OT -VD -pG -TA -Qu -ZS -qV -pG -qV -PM -qV -KN -Nu -VX -PV -VX +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (8,1,1) = {" Za @@ -8763,68 +9924,68 @@ Za Za Za Za -gt -gt -gK -gK -gK -gK -Tg -Nt +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za -Za -Za -JJ -yp -XZ -XZ -XZ -XZ -aC -aC -Sw -Sw -Sw -Sw -Sw -Sw -uh -pw -Yv -pw -pw -pw -xq -pw -pw -Yv -pw -pw -pw -pw -pw -pw -cV -Za -DF -jD -qz -dX -jD -Kd -jD -UB -bA -jD -Kd -jD -bA -jD -Kd -rh -VX -PV -VX +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (9,1,1) = {" Za @@ -8957,68 +10118,68 @@ Za Za Za Za -gt -gt -gK -gK -gK -gK -Rx -VS +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za -Za -Za -JJ -rd -XZ -XZ -XZ -XZ -aC -aC -aa -aa -aa -aa -aa -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Sw -Za -fp -VX -VX -VX -lv -lr -lv -AX -WC -lv -lr -lv -WC -lv -lr -AX -VX -PV -VX +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (10,1,1) = {" Za @@ -9151,25 +10312,37 @@ Za Za Za Za -gt -gt -gK -gK -gK -gK -JT -QA -Za -Za -Za -Kw -zQ -XZ -XZ -XZ -XZ -aC -aC +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -9182,37 +10355,25 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -VX -PV -VX -aS -lv -lr -lv -KR -Ky -lv -lr -lv -FS -lv -lr -lv -VX -VX -VX +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (11,1,1) = {" Za @@ -9345,25 +10506,37 @@ Za Za Za Za -gt -gt -gK -gK -gK -gK -NF -QA -Za -Za -Za -JJ -uB -XZ -XZ -XZ -XZ -aC -aC +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -9376,37 +10549,25 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Vc -xM -Vc -Vc -Vc -wQ -Vc -Vc -gk -gk -Ch -gk -gk -bi -om -bi -bi -eK -bi +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (12,1,1) = {" Za @@ -9539,25 +10700,37 @@ Za Za Za Za -gt -gt -gK -gK -gK -gK -aQ -QA -Za -Za -Za -Zt -vY -XZ -XZ -XZ -XZ -aC -aC +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -9570,37 +10743,25 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Vc -xM -Vc -qW -rK -vh -rK -qW -gk -Bt -tB -Bt -gk -ty -cT -ty -bi -eK -bi +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (13,1,1) = {" Za @@ -9733,25 +10894,37 @@ Za Za Za Za -gt -gt -gt -gt -gt -gt -gt -QA -Za -Za -Za -Zt -aC -aC -aC -aC -aC -aC -aC +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -9764,37 +10937,25 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Vc -xM -Vc -WA -bk -SU -jJ -JW -gk -UC -Px -Yb -gk -Bo -Tz -Pl -bi -eK -bi +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (14,1,1) = {" Za @@ -9927,37 +11088,37 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Ji Za Za @@ -9970,25 +11131,25 @@ Za Za Za Za -Vc -xM -Vc -tf -rK -NR -rK -WA -gk -Ne -Fp -Bt -gk -Uf -gP -ty -bi -eK -bi +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (15,1,1) = {" Za @@ -10164,25 +11325,25 @@ Za Za Za Za -Vc -xM -Vc -iB -RH -IB -UZ -Su -gk -gk -gk -gk -gk -bi -bi -bi -bi -eK -bi +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (16,1,1) = {" Za @@ -10358,25 +11519,25 @@ Za Za Za Za -Vc -xM -Vc -Vc -Vc -Vc -Vc -Vc -gk -VB -VB -VB -VB -eK -eK -eK -eK -eK -bi +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (17,1,1) = {" Za @@ -10552,25 +11713,25 @@ Za Za Za Za -Vc -xM -xM -xM -xM -xM -xM -xM -gk -VB -gk -gk -gk -bi -bi -bi -bi -bi -bi +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (18,1,1) = {" Za @@ -10746,25 +11907,25 @@ Za Za Za Za -Vc -Vc -Vc -Vc -Vc -Vc -Vc -Vc -gk -gk -gk -Ln -Ln -Ln -Ln -Ln -Ln -Ln -Ln +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz "} (19,1,1) = {" Za @@ -11573,14 +12734,14 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -11767,27 +12928,27 @@ Za Za Za Za -Za -ac -ac -ac -ac -ac -ac -ac +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Hd Hd Hd Hd Hd -AO -AO -AO -AO -AO -AO -ac -ac +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -11961,27 +13122,27 @@ Za Za Za Za -Za -ac -ac -ac -ac -ac -ac -ac +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Hd vz hK IQ Hd -AO -AO -AO -AO -AO -AO -ac -ac +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -11999,13 +13160,13 @@ Za Za Ji Ji -Nw -Nw -Nw -Nw -Nw -tZ -tZ +gv +gv +gv +gv +gv +ZI +ZI Ji Ji Za @@ -12089,13 +13250,13 @@ Za Za Ji Ji -YE -YE -YE -YE -YE -YE -YE +lF +lF +lF +lF +lF +lF +lF Ji Ji Za @@ -12155,27 +13316,27 @@ Za Za Za Za -Za -ac -ac -ac -ac -ac -ac -ac +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Hd vz Ao hw Hd -AO -AO -AO -AO -AO -AO -ac -ac +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -12193,14 +13354,14 @@ Ji Ji Ji Ji -Nw +gv vz hK IQ -Hd -KJ -tZ -tZ +gv +Dc +ZI +ZI Ji Ji Ji @@ -12282,14 +13443,14 @@ Za Ji Ji Ji -YE -YE -qk -qk -qk -Xr -qk -YE +lF +lF +ZH +ZH +ZH +qh +ZH +lF Ji Ji Ji @@ -12349,27 +13510,27 @@ Za Za Za Za -Za -AO -AO -AO -AO -AO -AO -AO +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Hd Kf iZ bS Hd -AO -AO -AO -AO -AO -AO -AO -AO +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -12387,15 +13548,15 @@ Ji Ji Ji Ji -Nw +gv vz Ao hw -Hd -KJ -KJ -tZ -tZ +gv +Dc +Dc +ZI +ZI Ji Ji Ji @@ -12475,15 +13636,15 @@ Ji Ji Ji Ji -YE -YE -qk -qk -qk -qk -qk -qk -YE +lF +lF +ZH +ZH +ZH +ZH +ZH +ZH +lF Ji Ji Ji @@ -12556,14 +13717,14 @@ Nw Kk zy Nw -AO -AO -AO -AO -AO -AO -ac -AO +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -12581,16 +13742,16 @@ Ji Ji Ji Ji -Nw +gv Kf iZ bS -Hd -KJ -KJ -KJ -tZ -tZ +gv +Dc +Dc +Dc +ZI +ZI Ji Ji Ji @@ -12598,11 +13759,11 @@ Ji Ji Ji Ji -tZ -tZ -tZ -tZ -tZ +ZI +ZI +ZI +ZI +ZI kL py py @@ -12668,16 +13829,16 @@ kL kL Ji Ji -YE -YE -qk -qk -qQ -qQ -qQ -yR -Qg -YE +lF +lF +ZH +ZH +xA +xA +xA +Lr +Wj +lF Ji Ji Ji @@ -12757,7 +13918,7 @@ Sk Sk Sk Sk -AO +Dz Za Za Za @@ -12768,35 +13929,35 @@ Za Za Za Ji -Nw -Nw -Nw -Nw -Nw -Nw -Nw -Nw -Nw +gv +gv +gv +gv +gv +gv +gv +gv +gv Kk zy -Nw -iH -iH -iH -tZ -tZ -tZ -tZ -tZ -tZ -tZ -Wz -Wz -tZ -KJ -KJ -KJ -tZ +gv +Sq +Sq +Sq +ZI +ZI +ZI +ZI +ZI +ZI +ZI +hW +hW +ZI +Dc +Dc +Dc +ZI Ji Za Za @@ -12858,16 +14019,16 @@ Ji Ji Ji kL -YE -YE -YE -YE -YE -YE -qk -qk -qQ -qk +lF +lF +lF +lF +lF +lF +ZH +ZH +xA +ZH gk gk gk @@ -12944,14 +14105,14 @@ aA FE Al Nw -WP +dF UE ux Cw Cw nV Sk -AO +Dz Za Za Za @@ -12962,7 +14123,7 @@ Za Za Za Ji -Nw +gv pY iF nL @@ -12973,25 +14134,25 @@ RO aA jV LG -Nw -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ -KV -KV -KJ -KJ -KJ -tZ -tZ -tZ +gv +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +ZI +pj +pj +Dc +Dc +Dc +ZI +ZI +ZI Za Za Za @@ -13052,25 +14213,25 @@ py py py kL -YE -YE -qk -qk -qk -qk -qk -qk -qQ -qk -gk -gk -gk -gk -gk -bi -bi -bi -bi +lF +lF +ZH +ZH +ZH +ZH +ZH +ZH +xA +ZH +vS +vS +vS +vS +vS +fH +fH +fH +fH bi bi Ji @@ -13145,7 +14306,7 @@ Cw Cw nV Sk -AO +Dz Za Za Za @@ -13156,7 +14317,7 @@ Za Za Za Ji -Nw +gv hP hP hP @@ -13167,25 +14328,25 @@ iF aA FE Al -Nw -KJ -KV -KV -KV -KV -KV -KV -KV -KV -dt -KV -KV -KJ -KJ -KJ -tZ -tZ -tZ +gv +Dc +pj +pj +pj +pj +pj +pj +pj +pj +Xz +pj +pj +Dc +Dc +Dc +ZI +ZI +ZI Za Za Za @@ -13246,25 +14407,25 @@ Za Za Za Ji -YE -qk -qk -qQ -qQ -qQ -qQ -qQ -qQ -qk -gk +lF +ZH +ZH +xA +xA +xA +xA +xA +xA +ZH +vS Bt -jp +OK Bt -gk +vS ty -bR +RA ty -bi +fH bi bi Ji @@ -13350,7 +14511,7 @@ Za Ji Ji Ji -Nw +gv ll ll ll @@ -13361,25 +14522,25 @@ mr Nw Pv La -Nw -KJ -KV -KV -KV -KV -KV -KV -KV -KV -KV -KV -KV -KJ -KJ -KJ -tZ -tZ -tZ +gv +Dc +pj +pj +pj +pj +pj +pj +pj +pj +pj +pj +pj +Dc +Dc +Dc +ZI +ZI +ZI Za Za Za @@ -13440,25 +14601,25 @@ Za Za Za kL -YE -YE -qk -qQ -qk -qk -qk -qk -qk -qk -gk +lF +lF +ZH +xA +ZH +ZH +ZH +ZH +ZH +ZH +vS BV zB Is -gk +vS Bo cm DB -bi +fH bi Ji Ji @@ -13544,7 +14705,7 @@ Ji Ji Ji Ji -Nw +gv lz ki hB @@ -13555,24 +14716,24 @@ iF FH FE mE -Nw -KJ -KV -KV -KV -KV -KV -KV -KV -KJ -tZ -Sz -Sz -tZ -KJ -KJ -KJ -tZ +gv +Dc +pj +pj +pj +pj +pj +pj +pj +Dc +ZI +RV +RV +ZI +Dc +Dc +Dc +ZI Ji Za Za @@ -13634,25 +14795,25 @@ Za Za Za kL -YE -YE -qk -qQ -qk -qk -qk -qk -qk -qk -gk +lF +lF +ZH +xA +ZH +ZH +ZH +ZH +ZH +ZH +vS Ne Ox Bt -gk +vS Uf jL ty -bi +fH bi bi Ji @@ -13738,7 +14899,7 @@ Ji Ji Ji Ji -Nw +gv lz AK ri @@ -13749,25 +14910,25 @@ hN lS Zo kS -Nw -KJ -KV -KV -KV -KV -KV -KV -KV -KJ -qn -KV -KV -qn -KJ -KJ -tZ -tZ -tZ +gv +Dc +pj +pj +pj +pj +pj +pj +pj +Dc +Hb +pj +pj +Hb +Dc +Dc +ZI +ZI +ZI Za Za Za @@ -13828,26 +14989,26 @@ Za Za Za kL -YE -YE -qk -qQ -Sw -Sw -Sw -Sw -Sw -Sw -gk -gk +lF +lF +ZH +xA +Fv +Fv +Fv +Fv +Fv +Fv +vS +vS Ch -gk -gk -bi +vS +vS +fH AS -bi -bi -bi +fH +fH +fH bi Ji Ji @@ -13932,7 +15093,7 @@ Ji kL kL kL -Nw +gv lz rH Fj @@ -13943,25 +15104,25 @@ iF uG FE mE -Nw -KJ -KV -KV -KV -KV -KV -KV -KV -KJ -qn -Ag -Ag -qn -KJ -KJ -tZ -tZ -tZ +gv +Dc +pj +pj +pj +pj +pj +pj +pj +Dc +Hb +ag +ag +Hb +Dc +Dc +ZI +ZI +ZI Za Za Za @@ -14022,26 +15183,26 @@ Za Za Za kL -YE -YE -qk -qQ -Sw +lF +lF +ZH +xA +Fv VN ci TP VN -Sw -Fg -by -Om -by -pT -eM -Aq +Fv +hC +LJ +tO +vJ +RS +yO +SS yr JQ -VX +XL VX kL kL @@ -14126,7 +15287,7 @@ Ji kL kL kL -Nw +gv Dg Dg Dg @@ -14137,25 +15298,25 @@ mr Nw IK Jt -Nw -KJ -KV -KV -KV -KV -KV -KV -KV -KJ -tZ -tZ -tZ -tZ -KJ -KJ -tZ -tZ -tZ +gv +Dc +pj +pj +pj +pj +pj +pj +pj +Dc +ZI +ZI +ZI +ZI +Dc +Dc +ZI +ZI +ZI Za Za Za @@ -14216,26 +15377,26 @@ Za Za Za Ji -YE -qk -qk -qQ -Sw -Nh +lF +ZH +ZH +xA +Fv +yM cv Ks VN -Sw -ca +Fv +nI NY jD +wg jD -jD -tg -jD +EP +tz jD pD -VX +XL VX kL kL @@ -14295,7 +15456,7 @@ zu iF AW bC -pn +MO iF RO aA @@ -14320,7 +15481,7 @@ Ji kL kL kL -Nw +gv jI jI jI @@ -14331,24 +15492,24 @@ iF aA FE DJ -Nw -KJ -KV -KV -KV -KV -KV -KV -KV -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ +gv +Dc +pj +pj +pj +pj +pj +pj +pj +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +ZI Ji Dz Dz @@ -14410,26 +15571,26 @@ py py py kL -YE -YE -qk -qQ -Sw +lF +lF +ZH +xA +Fv VN hS Ku VN -Sw -OE +Fv +Gy qI -Vc -Vc -Vc +fc +fc +fc wQ -Vc -Vc -Vc -Vc +fc +fc +fc +fc Vc kL kL @@ -14514,36 +15675,36 @@ Ji Ji Ji Ji -Nw +gv zu iF AW dp -pn +MO iF RO aA gO JM -Nw -KJ -KV -KV -KV -KV -KV -KV -KV -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ -tZ -tZ +gv +Dc +pj +pj +pj +pj +pj +pj +pj +Dc +Dc +Dc +Dc +Dc +Dc +Dc +ZI +ZI +ZI py py py @@ -14604,25 +15765,25 @@ Ji Ji Ji kL -YE -YE -YE -sX -Sw -Sw -hS -XR -Sw -Sw -ca +aR +aR +aR +Ki +Fv +Fv +dL +jQ +Fv +Fv +nI eL -Vc +fc qW rK vh rK qW -Vc +fc Vc Vc Ji @@ -14708,36 +15869,36 @@ Ji Ji Ji Ji -Nw -Nw -Nw -Nw -Nw -Nw -Nw -Nw -Nw +gv +gv +gv +gv +gv +gv +gv +gv +gv xr Sv -no -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ -tZ -tZ +bu +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +ZI +ZI +ZI Ji Ji Ji @@ -14798,25 +15959,25 @@ py py py kL -YE -YE -Zn -aG -Vn -aG -aG -aG -aG -XO -Br +aR +jk +xC +iA +cK +Ll +Cq +YY +fJ +rq +de Da -Vc +fc WA bk SU jJ bN -Vc +fc Vc Vc Ji @@ -14879,7 +16040,7 @@ oZ qO pZ gw -rE +XS Wq IE mJ @@ -14902,36 +16063,36 @@ Za Ji Ji Ji -tZ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -jY -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -Xm -KJ -KJ -tZ -tZ -tZ +sd +xT +xT +xT +xT +xT +xT +xT +xT +sT +xT +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +VU +Dc +Dc +ZI +ZI +ZI py py py @@ -14992,25 +16153,25 @@ Za Za Za Ji -nS -JX -rf -DR -DR -DR -ot -OR -DR +Po +Ty +gc +jk +Cc +mh +wl +Wf +jk Xv jD tC -Vc +fc tf rK NR rK WA -Vc +fc Vc Ji Ji @@ -15095,36 +16256,36 @@ Za Za Za Ji -tZ -tZ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -cP -Jk -It -It -Ga -It -KJ -KJ -tZ +sd +sd +xT +xT +xT +xT +xT +xT +xT +xT +xT +xT +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +cf +nC +zS +zS +zN +zS +Dc +Dc +ZI Ji Za Za @@ -15186,25 +16347,25 @@ Za Za Za Ji -RR -qk -HW -DR -YE -jR -ot -VK -jR -VX +rB +yE +Ke +fG +aR +tG +Af +uQ +tG +XL Kv PL -Vc +fc iB RH IB UZ -Su -Vc +Lu +fc Vc Vc kL @@ -15289,37 +16450,37 @@ Za Za Za Ji -tZ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -kl -KJ -KJ -KJ -KJ -KJ -tZ -tZ -tZ +sd +xT +xT +xT +xT +xT +xT +xT +xT +xT +xT +xT +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +SP +Dc +Dc +Dc +Dc +Dc +ZI +ZI +ZI Za Za ai @@ -15369,7 +16530,7 @@ Uh fC uq ai -ai +Za Za Za Za @@ -15380,25 +16541,25 @@ Za Za Za kL -YE -YE -HW -DR -YE -JF -ot -OR -JF -VX +aR +yE +Ke +fG +aR +Xa +wl +Wf +Xa +XL cR -VX -Vc -Vc -Vc -Vc -Vc -Vc -Vc +XL +fc +fc +fc +fc +fc +fc +fc Vc Vc kL @@ -15483,42 +16644,42 @@ Za Za Za Ji -tZ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ -tZ -tZ +sd +xT +xT +xT +xT +xT +xT +xT +xT +xT +xT +xT +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +ZI +ZI +ZI Ji Wv -tZ -tZ -tZ +ZI +ZI +ZI py Cu py @@ -15537,12 +16698,12 @@ Ji kL kL kL -Za kL +zh +sZ +zh kL kL -Za -kL kL kL Ji @@ -15563,10 +16724,10 @@ py kL kL kL -Ji -Wv -Ji -Ji +YN +Un +Un +Un kL kL kL @@ -15574,27 +16735,27 @@ Ji Ji Ji kL -YE -YE -HW -DR -YE -Ld -fL -tA -PK -VX -VX -VX -YE -YE -YE -YE -YE -YE -YE -YE -YE +aR +yE +Ke +fG +aR +AR +mh +Cc +MK +XL +XL +XL +lF +lF +lF +lF +lF +lF +lF +lF +lF Za Za Za @@ -15677,44 +16838,44 @@ Za Za Za Za -tZ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ -tZ -tZ -bd -Wz -tZ -tZ -tZ +sd +xT +xT +xT +xT +xT +xT +xT +xT +xT +xT +xT +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +Dc +ZI +ZI +ZI +Wc +hW +ZI +ZI +ZI Ji -Gz +Wv Ji kL kL @@ -15732,9 +16893,9 @@ kL kL kL kL -kL -kL -kL +Wt +Dp +PI kL kL kL @@ -15754,41 +16915,41 @@ kL Ji Wv Ji -kL -YE -YE -wo -wo -TZ -wo -YE -YE -YE -YE -YE -YE -YE -YE -YE -DR -DR -YE -PK -Ro -YZ -PK -YE -qk -YE -YE -YE -qk -YE -YE -YE -YE -YE -YE +pa +pa +pa +OC +DU +DU +RZ +pa +pa +pa +pa +pa +pa +pa +rZ +yE +Ke +fG +aR +MK +gC +WO +MK +aR +ZH +lF +lF +lF +ZH +lF +lF +lF +lF +lF +lF Za Za Za @@ -15871,117 +17032,117 @@ Za Za Za Za -tZ -tZ -KJ -KJ -KJ -tZ -tZ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -gq -KJ -tZ -tZ -tZ -py -ql -py +sd +sd +sd +sd +sd +sd +sd +hW +hW +hW +sd +sd +Dc +Dc +Dc +Dc +Dc +Dc +eE +eE +eE +eE +eE +eE +eE +eE +eE +eE +eE +eE +eE +aj +eE +pa +pa +pa +jy +Zq +jy +pa +pa +pa +eE +pa +pa +pa +eE +pa +pa +pa +sZ kL kL kL sZ +Wt +xX +PI +sZ kL kL kL sZ kL -kL -kL -sZ -kL -kL -kL -gz -kL -kL -kL -gz -kL -kL -kL -gz -kL -kL -kL -gz -kL -kL -kL -gz -kL -kL -kL -py -Cu -py -kL -YE -YE -qk -qk -qk -UP -YE -YE -YE -qk -qk -YE -YE -YE -DR -DR -DR -YE -YE -YE -YE -YE -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE +pa +pa +AU +pa +pa +pa +AU +pa +pa +pa +jy +dT +jy +pa +pa +pa +OC +OC +OC +OC +pa +pa +pa +vo +vo +vo +vo +rZ +yE +Ke +fG +aR +aR +aR +aR +aR +aR +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +lF Ji Za Za @@ -16035,13 +17196,13 @@ Za Za Za Za -Za -gL -gL -gL -db -gL -By +Dz +Dz +Dz +Dz +Dz +Dz +Dz gw OG pl @@ -16053,9 +17214,9 @@ iT sO PE gw -ac -ac -ac +Dz +Dz +Dz Za Za Za @@ -16065,118 +17226,118 @@ Za Za Za Za -tZ -FF -FF -FF -FF -FF -tZ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -Oi -KJ -KJ -tZ -Ji -Za -ai -Za -Ji -kL -sZ -sZ -sZ -sZ -sZ -sZ +sd +TG +TG +TG +TG +sd +TG +TG +TG +TG +TG +sd +Dc +Dc +Dc +Dc +Dc +Dc +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +PJ +AU +AU +DV +AU +CT +UN +BP +AU +DV +AU +AU +AU +AU +AU +AU +AU +AU +pa sZ sZ +Pb +hM +hM +Pt +GS +Pt +hM +hM sZ sZ sZ kL -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -KX -KX -KX -KX -KX -gz -gz -gz -gz -kL -Ji -py -Vd -py -Ji -YE -qk -qk -qk -qk -qQ -UP -mq -qQ -qk -qk -YE -YE -YE -DR -DR -DR -qk -qk -qk -qk -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE +AU +AU +AU +AU +AU +AU +AU +AU +DV +AU +CT +UN +BP +AU +DV +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +DV +ff +Ke +fG +aR +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +lF +lF +lF Za Za Za @@ -16229,13 +17390,13 @@ Za Za Za Za -Za -DL -DL -AP -Kj -Kj -Kj +Dz +Dz +Dz +Dz +Dz +Dz +Dz gw YH sg @@ -16247,9 +17408,9 @@ tr sO XG gw -ac -ac -ac +Dz +Dz +Dz Za Za Za @@ -16259,118 +17420,118 @@ Za Za Za Za -tZ -FF -FF -FF -FF -FF -Wz -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -Oi -KJ -tZ -tZ -tZ -Za -ai -Za -kL -kL -kL -LS -sZ -sZ -sZ -sZ -sZ +sd +TG +TG +TG +TG +TG +TG +TG +TG +TG +TG +hW +Dc +Dc +Dc +Dc +Dc +Dc +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +PJ +AU +AU +DV +AU +CT +AM +BP +AU +DV +AU +AU +AU +AU +AU +AU +AU +AU +pa +sZ +sZ +WL +ZR +hM +sZ +GS +sZ +hM +ZR sZ sZ sZ kL -kL -kL -gz -gz -gz -gz -gz -gz -gz -gz -gz -KX -KX -KX -KX -KX -gz -gz -gz -kL -kL -kL -py -Vd -py -kL -YE -YE -qk -qk -qk -qQ -qQ -qQ -qQ -qk -qk -YE -YE -YE -DR -DR -DR -qk -qk -qk -qk -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE +AU +AU +AU +AU +AU +AU +AU +AU +DV +AU +CT +AM +BP +AU +DV +AU +AU +Cp +sq +sq +sq +sq +sq +sq +sq +sq +sq +dq +Jv +KS +fG +aR +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +lF +lF +lF Za Za Za @@ -16423,14 +17584,14 @@ Za Za Za Za -Za -Hi -Hi -Hi -Hi -Hi -Hi -fv +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz gw yV lZ @@ -16441,9 +17602,9 @@ iT sw PE gw -ac -ac -ac +Dz +Dz +Dz Za Za Za @@ -16453,118 +17614,118 @@ Za Za Za Za -tZ -FF -FF -NI -FF -FF -Wz -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -YO -KJ -tZ -tZ -tZ -Za -ai -Za -kL -kL -kL -sZ -sZ -sZ -sZ -sZ +sd +TG +TG +TG +TG +TG +TG +TG +fo +TG +TG +hW +Dc +Dc +Dc +Dc +Dc +Dc +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +PJ +AU +AU +DV +AU +CT +AM +BP +AU +DV +AU +AU +AU +AU +AU +AU +AU +Py +wt +HU +rs +Ai +YF +hE +YF +DH +sZ +Yq sZ sZ sZ sZ kL -kL -kL -gz -gz -gz -gz -gz -gz -gz -gz -gz -KX -KX -KX -KX -KX -gz -gz -gz -kL -kL -kL -py -Vd -py -kL -YE -YE -qk -qk -qk -qQ -qQ -qQ -qQ -qk -qk -DR -YE -DR -DR -DR -DR -qk -qk -qk -qk -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE +AU +AU +AU +AU +AU +AU +AU +AU +DV +AU +CT +AM +BP +AU +DV +AU +AU +Hf +AU +AU +AU +AU +AU +AU +AU +AU +AU +DV +Iz +nn +fG +aR +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +lF +lF +lF Za Za Za @@ -16617,14 +17778,14 @@ Za Za Za Za -Za -Hi -wf -wf -wf -wf -wf -wf +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz gw gw gw @@ -16635,9 +17796,9 @@ gw gw gw gw -ac -ac -ac +Dz +Dz +Dz Za Za Za @@ -16647,117 +17808,117 @@ Za Za Za Za -tZ -FF -FF -FF -FF -FF -Wz -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ -tZ -tZ -Za -ai -Za +sd +TG +TG +TG +TG +TG +TG +TG +TG +TG +TG +hW +Dc +Dc +Dc +Dc +Dc +Dc +Sq +pF +pF +pF +pF +pF +AU +AU +pF +AU +AU +AU +AU +DA +Cg +Cg +pa +pa +jy +Zq +jy +pa +pa +pa +pF +pF +Xh +pa +AU +AU +AU +pa +kL +kL kL kL kL sZ sZ sZ -sZ -sZ -sZ -sZ -sZ -sZ kL kL kL -gz -gz -gz -gz -gz -gz -gz -gz -gz -KX -KX -KX -KX -KX -gz -gz -gz kL kL kL -Za -ai -Za -kL -YE -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE -DR -DR -DR -YE -YE -YE -qk -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE +AU +AU +AU +vD +vD +vD +vD +vD +vD +pa +jy +Zq +jy +pa +pa +pa +pa +FA +pa +EY +EY +EY +EY +EY +EY +EY +EY +EY +yE +Ke +fG +aR +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +lF Ji Za Za @@ -16811,6 +17972,13 @@ Za Za Za Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -16834,125 +18002,118 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -tZ -FF -FF -JC -FF -FF -tZ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ -tZ -tZ +sd +TG +TG +TG +TG +sd +TG +TG +Ta +TG +TG +sd +Dc +Dc +Dc +Dc +Dc +Dc +Ps +Dc +Dc +Dc +Dc +pF +AU +AU +pF +xT +xT +xT +Jy +Jy +ig +tb +ZI +ZI Za ai Za kL kL kL +iS +eE +eE +pa +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +Mv sZ sZ sZ sZ -sZ -sZ -sZ -sZ -sZ -sZ -kL -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -kL +Mv Ji Za ai Za Ji -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE -DR -DR -DR -DR -DR -YE -qk -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE +lF +ZH +ZH +Lq +gZ +EY +Hp +Sp +Yc +TF +pS +Bg +pS +EY +Em +Zi +fG +aR +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +lF +lF +lF Za Za Za @@ -17035,118 +18196,118 @@ Za Za Za Za -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -Wz -Wz -tZ -tZ -tZ -tZ -tZ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ +sd +sd +sd +sd +sd +sd +sd +sd +sd +sd +sd +sd +hW +hW +ZI +ZI +ZI +ZI +ZI +Dc +Dc +Dc +Dc +pF +AU +AU +pF +xT +xT +Jy +Jy +Jy +Jy +Jy +ZI Ji Za ai Za Ji kL -sZ -sZ -sZ -sZ -sZ -sZ -sZ -sZ -sZ -sZ -kL -kL -kL -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -kL kL +eE +eE +YG +pa +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +Mv +sZ +sZ +sZ +sZ +Mv kL Za ai Za kL -YE -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE -DR -DR -DR -DR -DR -YE -qk -YE -qk -qk -yK -qk -qk -qk -qk -qk -qk -YE -YE -YE +lF +lF +ZH +Lq +Hz +EY +Mc +Sp +Sc +Sp +GB +GB +GB +EY +yE +Ke +fG +aR +ZH +ZH +ZH +ZH +ZH +ZH +pf +ZH +ZH +ZH +ZH +ZH +ZH +lF +lF +lF Za Za Za @@ -17229,9 +18390,9 @@ Za Za Za Za -tZ -tZ -tZ +ZI +ZI +ZI Ji Ji py @@ -17247,100 +18408,100 @@ py py Ji Ji -Wz -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ -tZ -tZ +hW +Dc +Dc +Dc +Dc +pF +AU +AU +pF +xT +Jy +Jy +Jy +Jy +Jy +Jy +ZI +ZI py Cu py kL kL kL +eE +eE +eE +pa +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +AU +Mv sZ sZ sZ sZ -sZ -sZ -sZ -sZ -sZ -kL -kL -kL -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -kL -kL +Mv kL Za ai Za kL -YE -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -DR -DR -DR -IJ -IJ +lF +lF +ZH +Lq +ZH +EY +zl +Sp +No +Sp +Sp +Sp +NP +EY +yE +Ke Bh -kw -kw -kw -kw -kw -kw -qk -qk -qk -qk -qk -qk -YE -YE -YE +Gs +Gs +Gs +Gs +Gs +Gs +Gs +Gs +ZH +ZH +ZH +ZH +ZH +ZH +lF +lF +lF Ji Za Za @@ -17424,117 +18585,117 @@ Za Za Za Ji -tZ +ZI Ji Ji -BI -BI -GT -GT -BI -GT -GT -BI -BI -qd -AC -BI -BI +CG +CG +lK +lK +CG +lK +lK +CG +CG +Mf +Us +CG +CG Ji -Wz -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ -tZ -tZ +hW +Dc +Dc +Dc +Dc +pF +AU +AU +pF +Jy +Jy +Jy +Jy +Jy +ZG +yl +ZI +ZI XF sG XF kL kL kL -sZ -sZ -sZ -sZ -sZ -sZ -sZ -sZ -sZ +eE +eq +pq +pa kL kL kL -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -Iy -Iy -Iy -Iy -gz -gz kL kL kL +kL +kL +Mv +jE +jE +jE +Mv +Mv +Mv +Mv +Mv +Mv +Mv +Mv +Mv +Mv +sZ +sZ +sZ +sZ +Mv +kL Za ai Za kL -YE -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -DR -vE -DR -DR -DR -IJ -IJ +lF +lF +cC +zf +Qc +zI +XK +XK +Pj +ox +Ck +hk +rO +EY +yE +Ke Ws Qa +Qa +Qa HQ Qa MA mb -kw -qk -qk -qk -qk -qk -qk -qk -YE -YE +Gs +ZH +ZH +ZH +ZH +ZH +ZH +ZH +lF +lF Ji Za Za @@ -17621,38 +18782,38 @@ Ji Ji Ji py -BI -IH -mu -iO -ln -Lw -Rp -ug -Uc -wP -lL -jr -if +CG +Wp +aW +XC +fM +WZ +oS +zb +HA +Gh +QJ +Xu +RB py -tZ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ +ZI +Dc +Dc +Dc +np +pF +AU +AU +pa +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI Cu py py @@ -17669,48 +18830,48 @@ sZ sZ sZ sZ +sZ kL +Mv gz gz gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -Iy -Iy -Iy -Iy -gz -gz -gz -kL +Mv +sZ +sZ +sZ +Fd +sZ +sZ +sZ +sZ +hM +sZ +sZ +sZ +sZ +Mv Ji Za ai Za Ji -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -DR -vE -DR -DR -DR +lF +ZH +hH +ZH +ZH +EY +dm +Sp +HZ +ek +Sp +kZ +Bp +EY +ur +Ke IJ IJ cc @@ -17719,17 +18880,17 @@ NN WJ MA mb -kw -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE +Gs +ZH +ZH +ZH +ZH +ZH +ZH +ZH +lF +lF +lF Za Za Za @@ -17815,29 +18976,29 @@ Ji Ji Ji py -jr -Nq -qn -qn -iH -qU -ug -ug -Uc -wP -Rf -jr -if +Xu +US +Hb +Hb +Sq +DX +zb +zb +HA +Gh +cA +Xu +RB py -tZ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ +ZI +Dc +Dc +Dc +Aj +pF +AU +AU +pa py Cu Wv @@ -17860,70 +19021,70 @@ kL sZ sZ sZ +or +sZ sZ sZ kL +Mv +gz +gz +gz +Mv +sZ +sZ +sZ +sZ +sZ +sZ +sZ +sZ +hM +sZ +sZ +sZ +sZ +Mv kL +py +Vd +py kL -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -Iy -Iy -Iy -Iy -gz -gz -kL -kL -kL -Za -ai -Za -kL -YE -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE -sX -kw +lF +lF +hH +ZH +ZH +EY +jd +Sp +lw +Iv +Sp +Sp +Sp +Sp +yE +Ke +IJ IJ Bh -kw -kw -ko -kw -kw -kw -kw -kw -kw +Gs +Gs +qx +Gs +Gs +Gs +Gs +Gs +Gs Et -kw -qk -qk -YE -YE -YE +Gs +ZH +ZH +lF +lF +lF Za Za Za @@ -18009,98 +19170,98 @@ Ji Ji Ji py -jr -fh -qn -ug -ug -ug -ug -BI -BI -Wz -QS -BI -BI +Xu +hY +Hb +zb +zb +zb +zb +CG +CG +hW +Nl +CG +CG Ji -tZ -tZ -tZ -tZ -tZ -YP -tZ -tZ -tZ +ij +tT +vP +vP +vP +vP +VM +VM +ij Cu -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT py kL sZ sZ sZ +Cv +sZ sZ sZ kL +Mv +gz +gz +gz +Mv +sZ +sZ +sZ +sZ +sZ +sZ +sZ +sZ +sZ +sZ +sZ +sZ +sZ +Mv kL +py +Vd +py kL -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -Iy -Iy -Iy -Iy -gz -gz -kL -kL -kL -Za -ai -Za -kL -YE -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -qk -qk -qQ -kw -bT +lF +lF +hH +ZH +ZH +EY +CZ +Sp +op +Iv +Sp +fw +Sp +kM +yE +Ke +IJ +IJ Bh na Yy @@ -18111,13 +19272,13 @@ EF yH na Pz -IJ -kw -qk -qk -YE -YE -YE +Bh +Gs +ZH +ZH +lF +lF +lF Za Za Za @@ -18200,34 +19361,34 @@ Za Za Za Ji -tZ +ZI Ji py -BI -ns -iH -bQ -Ct -GY -Yn -BI -JV -JV -tl -JY -BL +CG +Tw +Sq +oy +Yl +am +eR +CG +lx +lx +wv +tD +Ow py -tZ -MP -MP -MP -MP -MP -MP -MP -tZ +ij +Rh +Rh +Rh +Rh +Rh +Rh +Rh +ij Wv -mX +BT mR mR mR @@ -18242,58 +19403,58 @@ qg mR mR mR -mX +BT Ji kL +LS +sZ sZ sZ sZ sZ sZ kL +Mv +nM +nM +nM +Mv +Mv +Mv +sZ +sZ +sZ +aq +aq +sZ +sZ +sZ +sZ +sZ +sZ +Mv kL +py +Vd +py kL -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -Iy -Iy -Iy -Iy -gz -gz -kL -kL -kL -Za -ai -Za -kL -YE -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE -qk -dg -kw +lF +lF +hH +ZH +ZH +EY +cj +Sp +Sp +ek +Sp +Sp +sE +kM +yE +ed +IJ IJ Bh na @@ -18305,12 +19466,12 @@ FP ol na Pz -IJ -kw -qk -qk -qk -YE +Bh +Gs +ZH +ZH +ZH +lF Ji Za Za @@ -18393,35 +19554,35 @@ Za Za Za Za -tZ -tZ -tZ +ZI +ZI +ZI Ji -BI -gh -jj -av -Lw -ks -qP -Ae -Ie -fq -qN -Vw -aL +CG +yg +bZ +Oy +WZ +IV +er +KQ +sa +Qd +tt +vg +WW CK -VQ -VG -MP -MP -MP -MP -MP -MP -tZ +uL +JK +ji +ji +ji +ji +Rh +Rh +ij Cu -mX +BT mR QI lu @@ -18436,7 +19597,7 @@ TW lu QI mR -mX +BT py kL kL @@ -18444,50 +19605,50 @@ kL kL kL kL +sZ +sZ kL -kL +Mv gz gz gz gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -kL +MX +ih +sZ +sZ +sZ +sZ +sZ +sZ +hM +sZ +sZ +sZ +sZ +Mv Ji Za ai Za Ji -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE -qk -dg -kw +lF +ZH +hH +ZH +ZH +EY +cj +lV +zX +ek +Sp +EA +LM +kM +yE +ed +IJ IJ fu Qa @@ -18499,13 +19660,13 @@ Qa Qa Qa Vl -IJ -kw -qk -qk -YE -YE -YE +Bh +Gs +ZH +ZH +lF +lF +lF Za Za Za @@ -18587,41 +19748,41 @@ Za Za Za Za -tZ -tZ -tZ +ZI +ZI +ZI Ji -BI -qn -iH -kr -qU -nE -Hk -BI -Rz -Wm -Kz -Fy -ax +CG +Hb +Sq +AN +DX +Ht +sC +CG +Th +Zy +gx +xu +Xy py -tZ -MP -MP -MP -MP -MP -MP -MP -tZ +ij +Rh +Rh +Rh +Rh +ji +Rh +Rh +ij Cu -mX +BT mR oi OV AI -mX -mX +BT +BT tK My qg @@ -18630,7 +19791,7 @@ Zu dc Kg mR -mX +BT py py py @@ -18639,67 +19800,67 @@ py py kL kL +sZ kL -kL +Mv gz gz gz gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -kL -kL +MX +dn +sZ +sZ +sZ +sZ +sZ +sZ +hM +sZ +sZ +sZ +sZ +Mv kL Za ai Za kL -YE -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE -qk -dg -kw -IJ -Ce -rz -eW -dk -dk -Am -dk -dk -WS -yF -IJ -kw -qk -qk -YE -YE -YE +lF +lF +hH +ZH +ZH +EY +EY +EY +EY +oh +ae +EY +EY +EY +yE +ed +WJ +WJ +Cl +Vt +Hg +og +og +HC +Qo +fW +fm +LE +cH +Gs +ZH +ZH +lF +lF +lF Za Za Za @@ -18781,41 +19942,41 @@ Za Za Za Za -tZ -tZ -tZ +ZI +ZI +ZI Ji -BI -KJ -KJ -KJ -KJ -ug -tL -BI -Aa -cp -RC -xl -BI -tZ -tZ -tZ -tZ -tZ -MP -MP -MP -MP -tZ +CG +Dc +Dc +Dc +Dc +zb +IZ +CG +ZQ +iL +Ns +PN +CG +ij +ij +ij +ij +ij +Rh +ji +Rh +Rh +ij Cu -mX +BT Hv FC mR mR -mX -mX +BT +BT gj xP qg @@ -18824,76 +19985,76 @@ mR fD FC az -FB -FB -FB -FB -FB -FB +UK +UK +UK +UK +UK +UK py py kL kL kL +Mv gz gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -hM -hM -hM -hM -kL -kL +KX +KX +Vg +ZA +mg +mg +mg +mg +mg +sZ +Mv +Mv +mO +Mv +Mv +Mv kL Za ai Za kL -YE -YE -ka -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE -qk -dg -kw -kw -kw -kw +lF +lF +jh +ZH +Wi +EY +EY +EY +EY +CJ +TL +MJ +qs +EY +yE +Cy +Gs +Gs +Gs +Gs Fk -kw -kw -uX +Gs +Gs +KA PZ PZ -uX -kw -kw -kw -qk -qk -YE -YE -YE +KA +Gs +Gs +Gs +ZH +ZH +lF +lF +lF Za Za Za @@ -18974,121 +20135,121 @@ Za Za Za Za -tZ -tZ -tZ -tZ +ZI +ZI +ZI +ZI py -BI -KJ -KJ -KJ -KJ -ug -Ex -zq -DG -Be -Be -Ot -RG -Bc -ug -ug -ug -Uc -MP -MP -MP -MP -tZ +CG +Dc +Dc +Dc +Dc +zb +Dm +DQ +KY +Nz +Nz +fT +Lk +Dl +wK +wK +wK +SH +Rh +ji +Rh +Rh +ij Cu -mX +BT qg FC mR mR -mX -mX -mX -mX -mX -mX +BT +BT +BT +BT +BT +BT mR fD FC qg -FB +UK MU lX lX MU -FB -FB +UK +UK py kL -kL -kL -hM -hM +Mv +Mv +Mv +Mv gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -hM +KX +KX +Xx +KP +mg +mg +mg +mg +mg +sZ +Mv +sZ sZ sZ sZ -kL kL kL Za ai Za kL -YE -YE -pO -qk -qk -qk -qk -qk -qk -qk -qk -qk -YE -qk -qk -dg -qk -qk -qk -qk -JP -qk -qk -uX +lF +lF +Yj +ZH +Wi +EQ +lH +uz +oQ +yy +De +Sx +Ha +kM +yE +Cy +aR +ZH +ZH +qh +pM +ph +ZH +KA eC eC -uX -qk -qk -qk -qk -qk -qk -YE -YE -YE +KA +ZH +ZH +ZH +ZH +ZH +ZH +lF +lF +lF Za Za Za @@ -19167,76 +20328,76 @@ Za Za Za Za -tZ -tZ -KJ -KJ -tZ +ZI +ZI +Dc +Dc +ZI py -jr -Se -Se -KJ -KJ -ug -Ex -zq -Lw -ug -ug -CV -RG -Bc -ug -ug -ug -Uc -MP -MP -MP -MP -tZ +Xu +vi +vi +Dc +Dc +zb +Dm +DQ +WZ +zb +zb +Tm +Lk +Dl +wK +wK +wK +SH +Rh +ji +Rh +Rh +ij Wv -mX +BT qg FC qg qg -mX +BT Eb BU Ik QI -mX +BT qg oC FC qg -FB +UK VT dO lX lX jg -FB +UK Ji Ji -kL +Mv vU vU dN gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -hM +KX +KX +Xx +KP +mg +mg +mg +mg +mg +sZ +Mv sZ sZ LS @@ -19247,43 +20408,43 @@ Za ai Za Ji -YE -JI -QD -qk -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE -qk -dg -qk -qk -qk -qk -JP -qk -qk -uX +lF +uk +Fs +ZH +Wi +pB +jv +wR +FG +ud +Sy +Xd +UF +EY +jx +uo +aR +ZH +ZH +qh +pM +ZH +ZH +KA eC OA -uX -qk -qk -qk -qk -qk -YE -YE -YE -YE -YE +KA +ZH +ZH +ZH +ZH +ZH +lF +lF +lF +lF +lF Za Za Za @@ -19360,43 +20521,43 @@ Za Za Za Za -tZ -tZ -KJ -KJ -KJ -tZ +ZI +ZI +Dc +Dc +Dc +ZI py -jr -XP -XP -KJ -KJ -ug -Ex -zq -iP -Ii -Ii -kE -Wd -Bc -ug -ug -ug -Uc -MP -MP -MP -MP -tZ +Xu +tY +tY +Dc +Dc +zb +Dm +DQ +sr +QQ +QQ +kW +Gb +Dl +wK +wK +wK +SH +Rh +ji +Rh +Rh +ij Wv -mX +BT qg FC PG FC -mX +BT Jn Ss Up @@ -19412,71 +20573,71 @@ DM lX lX ZF -FB +UK eI -kL -kL +Mv +Mv gz gz dN gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -hM +KX +KX +Xx +KP +mg +mg +mg +mg +mg +sZ +Mv +sZ sZ sZ sZ -kL kL kL Za ai Za kL -YE -YE -Xr -Xr -Xr -qk -qk -qk -qk -qk -qk -YE -YE -YE -qk -dg -qk -qk -qk -qk -JP -qk -uX -uX +lF +lF +qh +qh +Wi +ER +sy +QF +pR +An +aN +fx +QL +ae +MS +Cy +aR +ZH +ZH +qh +pM +ZH +KA +KA PZ PZ -uX -uX -uX -uX -uX -uX -uX -uX -uX -uX +KA +KA +KA +KA +KA +KA +KA +KA +KA +KA uX uX Za @@ -19553,78 +20714,78 @@ Za Za Za Za -tZ -tZ -KJ -KJ -KJ -KJ -tZ +ZI +ZI +Dc +Dc +Dc +Dc +ZI py -BI -Se -Se -KJ -KJ -ug -xi -BI -CH -IW -VL -ia -BI -tZ -Wz -Wz -Wz -tZ -MP -MP -MP -MP -tZ +CG +vi +vi +Dc +Dc +zb +nU +CG +dK +AA +oL +BY +CG +ij +SC +SC +SC +ij +Rh +ji +Rh +Rh +ij Wv -mX +BT qg FC qg qg -mX -Ee +BT +Df FC FC FC -mX +BT qg oC FC qg -FB +UK TQ TJ lX lX os -FB +UK Ji -kL -kL +Mv +Mv gz gz -nP +nM gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -hM +KX +KX +Tt +KP +mg +mg +mg +mg +mg +sZ +Mv sZ sZ sZ @@ -19635,33 +20796,33 @@ Za ai Za kL -YE -YE -qo -qo -Xr -qk -qk -qk -qk -qk -qk -YE -YE -YE -qk -dg -qk -qk -qk -qk -JP -qk -uX -AV +lF +lF +Bd +Bd +Wi +dU +dU +dU +dU +iK +LT +bY +LA +kM +yE +Cy +aR +qh +yu +qh +pM +ZH +KA +Qf eC eC -SF +XA cu rv cW @@ -19670,7 +20831,7 @@ Eh cW cW cW -uX +KA uX uX uX @@ -19747,78 +20908,78 @@ Za Za Za Za -tZ -KJ -KJ -KJ -KJ -KJ -tZ +ZI +Dc +Dc +Dc +Dc +Dc +ZI Ji -BI -BI -GT -GT -BI -GT -GT -BI -eT -eT -eT -Mi -BI -tZ -MP -MP -MP -MP -MP -MP -MP -MP -tZ +CG +CG +lK +lK +CG +lK +lK +CG +bo +bo +bo +ic +CG +ij +Rh +Rh +Rh +Rh +Rh +ji +Rh +Rh +ij Cu -mX +BT qg FC mR mR -mX -mX -mX -mX -mX -mX -od +BT +BT +BT +BT +BT +BT +FN fD FC qg -FB -mz +UK +rD lX lX lX -FB -FB +UK +UK Ji -kL -kL +Mv +Mv gz gz +nM gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -gz -PX +KX +KX +Tt +Vg +Sf +Sf +Ec +Ec +mg +sZ +xf sZ sZ sZ @@ -19829,29 +20990,29 @@ Za ai Za kL -YE -YE -qQ -qQ -Xr -qk -qk -qk -qk -qk -qk -qk -YE -qk -qk -dg -qk -qk -qk -qk -JP -qk -uX +lF +lF +xA +xA +vj +eB +YQ +gJ +QM +Jb +mI +Sp +QL +ae +MS +OD +aR +ZH +ZH +ZH +pM +ZH +KA SK eC eC @@ -19864,7 +21025,7 @@ ZZ cW oH cW -uX +KA uX uX uX @@ -19941,13 +21102,13 @@ Za Za Za Za -tZ -KJ -KJ -KJ -KJ -KJ -tZ +ZI +Dc +Dc +Dc +Dc +Dc +ZI Ji Ji py @@ -19961,19 +21122,19 @@ py py py Ji -tZ -tZ -yi -MP -MP -MP -MP -MP -MP -MP -tZ +ij +ij +Gm +Rh +Rh +Rh +ji +ji +Rh +Rh +ij Cu -mX +BT Hv FC mR @@ -19982,37 +21143,37 @@ mR qg My Kc -mX -mX +BT +BT mR fD FC az -FB +UK NC -FB +UK bM Fo -FB +UK py Ji Ji -kL +Mv gz gz -hM +Mv gz -gz -gz -gz -kL -iz -iz -iz -kL -gz -gz -hM +KX +KX +KX +KX +Iy +Iy +Iy +Ec +mg +sZ +Mv sZ sZ sZ @@ -20023,29 +21184,29 @@ py ql py Ji -YE -qk -qQ -qQ -Xr -qk -qk -qk -qk -qk -qk -YE -YE -YE -qk -dg -qk -qk -qk -qk -JP -qk -uX +lF +ZH +xA +xA +vj +Jl +eu +OU +BR +Ca +Sy +Sp +UF +EY +yE +OD +aR +ZH +ZH +ZH +pM +ZH +KA JH eC xp @@ -20058,7 +21219,7 @@ cW cW cW cW -uX +KA uX uX uX @@ -20135,39 +21296,39 @@ Za Za Za Za -tZ -tZ -tZ -iH -GR -iH -tZ -tZ -tZ -tZ -Wz -Wz -tZ -tZ -tZ -tZ -Wz -Wz -tZ -tZ -tZ -MP -MP -MP -MP -MP -MP -FD -iH -iH -tZ +ZI +ZI +ij +ij +tn +ij +ij +ij +ij +ij +SC +SC +ij +ij +ij +ij +SC +SC +ij +ij +ij +Rh +Rh +Rh +Rh +Rh +ji +He +pJ +pJ +ij Cu -mX +BT mR oi uJ @@ -20176,39 +21337,39 @@ mR qg xP yC -mX -mX +BT +BT FK zL Kg mR -FB +UK gT -FB +UK hx es -FB +UK Ji Ji -kL -kL -kL +Mv +Mv +Mv gz -kL -kL -kL -gz -gz -kL +Mv gz gz gz -kL gz gz -kL -kL -kL +gz +gz +gz +hM +sZ +sZ +Mv +Mv +Mv sZ kL kL @@ -20217,29 +21378,29 @@ Ji Gz Ji kL -YE -YE -qQ -qQ -Xr -Xr -Xr -Xr -qk -Xr -Xr -YE -YE -YE -qk -dg -qk -qk -qk -qk -JP -qk -uX +lF +lF +xA +xA +vj +Ft +pe +Mu +dV +LF +OJ +zr +Xo +kM +yE +OD +aR +ZH +ZH +ZH +pM +ZH +KA YK eC eC @@ -20252,7 +21413,7 @@ ZZ cW bU cW -uX +KA uX uX uX @@ -20331,37 +21492,37 @@ Za Za Ji Ji -DO -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -Xf -av -cb -tZ +qt +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +ji +ji +ji +ji +ji +ji +Fu +OF +Tx +ij Cu -mX +BT mR QI gA @@ -20376,33 +21537,33 @@ pz gA QI mR -FB -FB -FB -FB -FB -FB +UK +UK +UK +UK +UK +UK Ji Ji -kL -kL -kL -kL -kL -kL -kL -gz -gz -kL +Mv +Mv +Mv +Mv +Mv gz gz gz -kL gz gz -kL -kL -kL +gz +gz +gz +hM +sZ +sZ +Mv +Mv +Mv kL kL kL @@ -20411,30 +21572,30 @@ Ji Wv Ji kL -YE -YE -qQ -uF -Xr -qk -qk -qk -qk -qk -qk -YE -YE -YE -qk -dg -qk -qk -qk -qk -JP -qk -uX -ZL +lF +lF +mG +xA +vj +vj +vj +vj +vj +EY +EY +Ig +EY +EY +yE +OD +aR +ZH +ZH +ZH +pM +ZH +KA +Yu eC Wb tN @@ -20446,7 +21607,7 @@ cW cW cW cW -uX +KA uX uX uX @@ -20525,37 +21686,37 @@ Za Za Ji Ji -DO -MP -MP -ly -DY -Zg -nX -vK -pP -nX -nX -nX -nX -nX -nX -vL -MP -MP -MP -MP -MP -MP -MP -MP -MP -Ej -qn -mu -tZ +qt +Rh +Rh +pu +wC +la +Qr +hJ +NJ +Qr +Qr +Qr +Qr +Qr +Qr +bq +Rh +Rh +Rh +ji +Rh +Rh +Rh +Rh +Rh +li +PY +yW +ij Wv -mX +BT mR mR mR @@ -20570,7 +21731,7 @@ qg mR mR mR -mX +BT Ji Du py @@ -20578,57 +21739,57 @@ py py py Ji -kL -kL -kL +Mv +Mv +Mv +Ji +Mv +Mv +Mv +Un +Un +Mv +wI +wI +wI +Mv +Un +Un +Mv +Mv +Mv Ji kL kL kL -Un -Un -kL -iz -iz -iz -kL -Un -Un -kL -kL -kL Ji -kL -kL -kL Wv Ji -Ji kL -YE -YE -qQ -qQ -qQ -qQ -qQ -qQ -qQ -qQ -qQ -qQ -YM -qQ -qQ -fn -zT -zT -zT -ib -RK -fb -Zf -FU +lF +lF +xA +xA +ak +GW +GW +GW +GW +rC +PD +Wh +Wh +Wh +ff +Cy +aR +ZH +ZH +xA +UW +tu +XI +wN TM TM kD @@ -20640,7 +21801,7 @@ ZZ cW bU cW -uX +KA uX uX uX @@ -20719,52 +21880,52 @@ Za Za Ji Ji -DO -MP -MP -ly -ly -KJ -KJ -BF -BF -BF -cJ -ug -ug -ug -nX -nX -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -qn -Vu -tZ +qt +Rh +Rh +pu +pu +Dc +Dc +cL +cL +cL +GJ +zb +zb +zb +Qr +Qr +Rh +Rh +Rh +ji +Rh +Rh +Rh +Rh +Rh +Rh +PY +tc +ij Cu -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT +BT Ji Ji Ji @@ -20781,6 +21942,11 @@ py py py Ji +Un +yZ +yZ +yZ +Un Ji Ji Ji @@ -20791,37 +21957,32 @@ Ji Ji Ji Ji -Ji -Ji -kL Wv Ji Ji -Ji -Ji -YE -qk -qQ -qQ -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE -qk -qk -qk -qk -qk -qk -qk -qB -uX +lF +ZH +xA +xA +Bq +GW +GW +GW +GW +rC +Tc +wH +wH +wH +wH +gV +aR +ZH +ZH +xA +wD +rn +KA Yk eC BO @@ -20834,7 +21995,7 @@ cW cW cW cW -uX +KA uX uX uX @@ -20913,35 +22074,35 @@ Za Za Ji Ji -DO -MP -MP -MP -NL -KJ -KJ -BF -BF -BF -BF -BF -ug -ug -ug -vv -MP -MP -MP -MP -MP -MP -MP -iH -go -MP -qn -Iq -tZ +qt +Rh +Rh +Jy +HS +Dc +Dc +cL +cL +cL +cL +cL +zb +zb +zb +Qi +Rh +Rh +Rh +ji +Rh +Rh +Rh +pJ +iE +Rh +PY +zU +ij py Cu Wv @@ -20975,11 +22136,11 @@ TV Cu Cu Cu -Wv -UQ -TV -UQ -Wv +YN +sF +sF +sF +YN Wv Cu Cu @@ -20990,32 +22151,32 @@ Wv Wv Ji Ji -Ji +Wv Ji kL -YE -YE -qQ -qQ -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE -qk -qk -qk -qk -qk -qk -qk -WG -uX +lF +lF +xA +xA +ak +vT +pL +GW +GW +Ib +aR +aR +aR +aR +aR +ea +aR +ZH +ZH +xA +wD +SL +KA Eq eC eC @@ -21028,7 +22189,7 @@ ZZ cW bU cW -uX +KA uX uX uX @@ -21107,44 +22268,44 @@ Za Za Ji Ji -DO -MP -MP -ly -DY -KJ -KJ -BF -BF -BF -jb -ug -ug -ug -nX -nX -MP -MP -MP -MP -MP -FD -vp -iH -qn -qn -qn -cb -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ +qt +Rh +Rh +pu +wC +Dc +Dc +cL +cL +cL +rx +zb +zb +zb +Qr +Qr +Rh +Rh +Rh +ji +Rh +He +ld +pJ +PY +PY +PY +Tx +ij +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI Cu py Cu @@ -21169,11 +22330,11 @@ py py py py -Ji -Ji -py -Ji -Ji +Un +GE +GE +GE +Un Ji py py @@ -21182,47 +22343,47 @@ Ji py Ji Ji +Wv Ji -Ji -Ji +Wv Ji kL -YE -YE -qQ -qQ -qk -qk -qk -qk -qk -qk -qk -YE -YE -YE -qk -qk -qk -qk -qk -qk -qk -qk -uX -Tb +lF +lF +xA +xA +ak +uw +nR +GW +GW +ak +ZH +ZH +ZH +ZH +ZH +vA +ZH +ZH +ZH +xA +wD +ZH +KA +VZ EG VY xB sH -aM +FM cW cW eJ cW cW cW -uX +KA uX uX uX @@ -21301,44 +22462,44 @@ Za Za Za Ji -DO -MP -MP -ly -ly -Zg -nX -Ko -Ko -nX -nX -AY -EH -nX -nX -ZN -MP -MP -MP -MP -MP -Xf -iI -Hc -Md -Md -jX -ns -tZ -KJ -KJ -KJ -KJ -KJ -KJ -KJ -tZ -tZ +qt +Rh +Rh +pu +pu +la +Qr +ze +ze +Qr +Qr +DC +ZE +Qr +Qr +eF +Rh +Rh +Rh +ji +Rh +Fu +xJ +bz +lJ +lJ +SW +Of +ij +Dc +Dc +Dc +Dc +Dc +Dc +Dc +ZI +ZI py hQ py @@ -21363,11 +22524,11 @@ py py py py -Ji -Ji -py -Ji -Ji +Un +gz +gz +gz +Un Ji py py @@ -21377,46 +22538,46 @@ py Ji Ji Ji -py +hQ py py kL -YE -YE -qQ -qQ -qk -qk -qk -qk -qk -qk -qk -qk -YE -qk -qk -qk -qk -qk -qk -qk -qk -qk -uX -uX -uX -uX -uX -uX -uX -uX -uX -uX -uX -uX -uX -uX +lF +lF +xA +xA +ak +ak +ak +GW +GW +RJ +xA +xA +iQ +iQ +Ar +Hu +yt +yt +yt +yt +iw +ZH +KA +KA +KA +KA +KA +KA +KA +KA +KA +KA +KA +KA +KA +KA uX uX Za @@ -21495,44 +22656,44 @@ Za Za Za Za -tZ -tZ -tZ -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -tZ -tZ -iH -tZ -tZ -tZ -iH -tZ -tZ -tZ -KJ -tZ -tZ -tZ -KJ -tZ -tZ -tZ +ij +ij +ij +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +ji +ij +ij +pJ +ij +ij +ij +pJ +ij +ij +ZI +Dc +ZI +ZI +ZI +Dc +ZI +ZI +ZI py ql py @@ -21556,9 +22717,13 @@ kL kL kL Ji -kL -kL -kL +Mv +Mv +gz +gz +gz +Mv +Mv Ji kL kL @@ -21567,51 +22732,47 @@ Ji kL kL kL -Ji -kL -kL -kL -Ji +Wv Ji Ji kL -YE -YE -qQ -YE -YE -YE -qk -YE -YE -YE -qk -YE -YE -YE -qk -YE -YE -YE -qk -YE -YE -YE -qk -YE -YE -YE -qk -YE -YE -YE -qk -YE -YE -YE -qk -YE -YE +lF +lF +xA +xA +UD +UD +ak +GW +GW +UD +lF +lF +lF +lF +lF +lF +lF +lF +ZH +lF +lF +lF +ZH +lF +lF +lF +ZH +lF +lF +lF +ZH +lF +lF +lF +ZH +lF +lF Za Za Za @@ -21690,121 +22851,121 @@ Za Za Za Za -tZ -tZ -tZ -MP -MP -MP -Va -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -MP -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ -tZ +vr +ij +ij +Rh +Rh +Rh +EL +Rh +Rh +ji +ji +ji +ji +ji +ji +ji +ji +ji +ji +ij +vr +vr +vr +vr +vr +vr +vr +vr +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI XF sG XF kL -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -kL -Ji -Ji -Ji -kL -YE -YE -YM -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE -YE +UD +UD +UD +UD +UD +UD +UD +UD +UD +UD +UD +UD +UD +UD +UD +UD +UD +UD +UD +WU +WU +UV +UV +UV +WU +WU +UD +UD +UD +UD +UD +UD +UD +UD +Ts +EJ +Ts +UD +UD +UD +jH +UD +UD +UD +UD +GW +GW +UD +wV +wV +wV +wV +cM +cM +cM +cM +cM +cM +cM +cM +cM +cM +lF +lF +lF +lF +lF +lF +lF +lF +lF +lF +lF +lF Za Za Za @@ -21885,119 +23046,119 @@ Za Za Za Za -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -cS -Oe -Oe -Oe -Oe -Oe -Oe -VA -VA -VA -Oe -Oe -hR -Oe -Oe -Oe -hR -Oe -Oe -Oe -hR -Oe -Oe -Oe -hR -Oe -Oe +Ab +xd +xd +xd +xd +xd +xd +xd +Ol +xd +xd +xd +xd +xd +ij +ld +ld +ld +ij +Ab +ne +Ab +Ab +Ab +ne +Ab +Ab +Ab +ne +Ab +Ab +Ab +ne +Ab +Ab kL py ql py kL -lD -lD -MI -lD -lD -lD -po -lD -lD -lD -po -lD -lD -lD -po -lD -lD -lD -po -lD -lD -lD -po -lD -lD -lD -po -lD -lD -lD -po -lD -lD -kL -Ji -Ji -Ji -kL -zo -zo -Ev -zo -zo -zo -Od -zo -zo -zo -Od -zo -zo -zo -Od -zo -zo -zo -Od -zo -zo -zo -Od -zo -zo -zo -Od -zo -zo -zo -Od -zo -zo -zo -zo +UD +UD +ak +UD +UD +UD +ak +UD +UD +UD +ad +UD +UD +UD +ad +UD +UD +UD +ad +WU +WU +GW +GW +GW +WU +WU +ad +UD +UD +UD +ad +UD +UD +UD +Xg +yh +Xg +UD +UD +UD +Bq +UD +UD +UD +GW +GW +GW +UD +wV +wV +wV +wV +cM +cM +cM +cM +sx +cM +cM +cM +wV +cM +cM +cM +wV +cM +cM +cM +wV +cM +cM +cM +cM Za Za Za @@ -22080,117 +23241,117 @@ Za Za Za Za -Oe -Oe -Oe -Oe -Oe -hR -hR -Vo -hR -hR -hR -hR -hR -Nn -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +Ab +Ab +Ab +Ab +Ab +ne +ne +SI +ne +ne +ne +ne +ne +vP +bH +bH +bH +vP +ne +ne +Kl +Kl +Kl +Kl +Kl +Pw +Kl +ne +ne +Hn +ne +ne +Ab +Ab kL Za KE Za kL -lD -lD -FL -mf -mf -MI -po -po -po -po -po -po -lD -po -po -po -po -po -po -po -lD -po -po -po -po -po -po -po -po -po -po -lD -lD -kL -py -py -py -kL -zo -zo -Ev -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -Od -Od -Od -Od -Od -zo -zo -zo -zo +UD +UD +YW +sD +sD +sD +ak +GW +GW +GW +GW +GW +qX +GW +GW +GW +GW +GW +GW +gF +GW +GW +GW +GW +GW +gF +GW +GW +GW +GW +GW +GW +gF +GW +vs +CX +KU +GW +qX +GW +GW +GW +GW +GW +GW +GW +GW +rQ +wV +wV +wV +wV +wV +sx +wV +wV +sx +wV +wV +wV +wV +wV +cM +wV +wV +wV +wV +wV +cM +cM +cM +cM Za Za Za @@ -22277,111 +23438,111 @@ Za Za Za Za -Oe -Oe -Oe -Oe -Vo -Vo -Vo -Vo -hR -hR -Nn -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +Ab +Ab +Ab +Ab +SI +SI +SI +SI +ne +ne +vP +VM +VM +VM +vP +ne +ne +Kl +Hn +Hn +Hn +Hn +Hn +Kl +ne +ne +Hn +ne +ne +Ab +Ab kL Za ai Za kL -lD -lD -Lg -mf -mf -MI -po -po -po -po -po -lD -lD -lD -po -po -po -po -po -lD -lD -lD -po -po -po -po -po -po -po -po -po -lD -lD -kL -Za -Za -Za -kL -zo -zo -Ev -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo -zo -zo -zo -zo -zo +UD +UD +Bx +sD +sD +sD +Nv +GW +GW +GW +GW +GW +qX +GW +GW +GW +GW +GW +GW +gF +GW +GW +GW +GW +GW +gF +GW +GW +GW +GW +GW +GW +gF +GW +vs +NX +KU +GW +qX +GW +GW +GW +GW +GW +GW +GW +GW +ak +kq +wV +sx +sx +sx +sx +wV +wV +sx +wV +wV +wV +wV +cM +cM +cM +cM +cM +cM +cM +cM Za Za Za @@ -22472,130 +23633,130 @@ Za Za Za Za -Oe -Oe -Oe -TH -hR -hR -Vo -hR -hR -Nn -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +Ab +Ab +Ab +TN +ne +ne +SI +ne +ne +vP +bH +bH +bH +vP +SI +Kl +Kl +Hn +ne +ne +ne +Hn +Kl +Kl +Kl +Pw +Kl +ne +Ab +Ab kL Za Za ai kL -lD -lD -Lg -mf -mf -MI -po -po -po -po -po -lD -lD -lD -po -po -po -po -po -lD -lD -lD -po -po -po -po -po -po -po -po -po -lD -lD -kL -Za -Za -Za -kL -zo -zo -Ev -Ev -Ev -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo -zo -zo -zo -zo -zo -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +UD +UD +Bx +sD +sD +GW +HP +GW +GW +GW +GW +GW +qX +GW +GW +GW +GW +GW +GW +gF +GW +GW +GW +GW +GW +gF +GW +GW +GW +GW +GW +GW +gF +GW +vs +NX +KU +GW +qX +GW +GW +GW +GW +GW +GW +GW +GW +ak +vu +wV +sx +wV +wV +sx +wV +wV +sx +sx +sx +sx +sx +cM +cM +cM +cM +cM +cM +cM +cM Za Za Za Za Za Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -22667,120 +23828,106 @@ Za Za Za Za -Oe -Oe -TE -hR -hR -Vo -Vo -Vo -cS -qq -qq -qq -cS -Vo -Vo -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe +Ab +Ab +va +ne +ne +SI +SI +SI +ZK +eX +eX +eX +ZK +SI +ne +TN +Hn +ne +ne +ne +Hn +Gf +Hn +Hn +Hn +Kl +ne +ne +Ab Ji Za Dz Za Wv -yf -IO -mf -mf -mf -MI -po -po -po -po -po -lD -lD -lD -po -po -po -po -po -lD -lD -lD -po -po -po -po -po -po -po -po -po -po -lD -Ji -Za -Za -Za -Ji -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo -zo -zo -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +yh +Rm +sD +sD +GW +GW +Nv +GW +GW +GW +GW +GW +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +xc +ak +ak +ak +ak +ak +ak +ak +ak +UD +UD +Xg +yh +Xg +UD +UD +ak +Bq +ak +ak +ak +ak +ak +ak +ak +sx +sx +sx +wV +wV +Dj +ok +ok +sx +wV +wV +wV +wV +cM +cM +cM +cM +cM Za Za Za @@ -22790,6 +23937,20 @@ Za Za Za Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -22841,123 +24002,123 @@ Za Za Za Za -OO -OO -OO -OO -OO -OO -OO -OO -WX -WX -WX -WX -WX -WX -WX -WX -WX -WX -WX +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za -Oe -Oe -hR -hR -hR -hR -hR -Nn -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +Ab +Ab +ne +ne +fs +ne +eN +vP +bH +bH +bH +vP +ne +ne +va +Hn +ne +ne +ne +ne +ne +ne +ne +Hn +Kl +ne +Ab +Ab kL Za Za Za kL -lD -lD -mf -mf -mf -eZ -uD -uD -uD -uD -uD -uD -eZ -uD -uD -uD -uD -po -po -po -lD -po -po -po -po -po -MI -MI -MI -po -po -lD -lD +UD +UD +ak +Nv +HP +Nv +Nv +GW +GW +GW +GW +GW +rQ +jC +jC +jC +Xq +Rc +Rc +Rc +HD +Rc +Rc +jC +Xq +Rc +Rc +Ey +Rc +Rc +Rc +HD +HD kL -Za -Za -Za +py +Hr +py kL -zo -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo +cM +cM +ok +wV +wV +wV +sx +wV +wV +sx +wV +wV +wV +wV +wV +sx +wV +ok +sx +wV +wV +wV +wV +wV +cM Ji Ji Ji @@ -22970,20 +24131,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -23035,124 +24196,124 @@ Za Za Za Za -OO -ZJ -ZJ -ZJ -xE -xE -xE -xE -xE -Hq -Hq -Hq -Hq -xE -xE -xE -xE -xE -Hq +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za -Oe -Oe -hR -hR -hR -hR -hR -Nn -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +Ab +Ab +ne +ne +fs +ne +cD +vP +bH +bH +bH +vP +ne +ne +Hn +Hn +ne +ne +ne +ne +ne +ne +ne +Hn +Kl +ne +Ab +Ab kL Za Za Za kL -lD -lD -mf -mf -mf -MI -po -po -po -po -po -lD -lD -lD -po -po -uD -po -po -lD -lD -lD -po -po -po -uD -lG -bv -MI -po -po -lD -lD +UD +UD +GW +GW +GW +GW +GW +GW +GW +GW +GW +UD +UD +HD +Rc +Rc +jC +Rc +Rc +HD +HD +HD +hs +Rc +jC +Rc +Rc +Ey +Rc +Rc +Rc +HD +HD kL -Za -Za -Za +py +Cu +py kL -zo -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +cM +ok +wV +wV +wV +sx +wV +wV +sx +wV +wV +wV +wV +wV +sx +sx +Dj +sx +wV +wV +wV +wV +cM +cM +cM Ji Ji Za @@ -23164,20 +24325,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -23229,124 +24390,124 @@ Za Za Za Za -OO -ZJ -Hq -xE -xE -Mk -Mk -Mk -xE -xE -xE -xE -xE -xE -Hq -Hq -Hq -xE -xE +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za -Oe -hR -hR -hR -hR -hR -hR -Nn -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +Ab +ne +ne +ne +fs +fs +fs +vP +bH +bH +bH +vP +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +rX +ak +UD +UD +UD +Xg +Xg +Xg +UD +UD +UD +GW +GW +GW +GW +GW +GW +GW +ak +ak +UD +UD +HD +Rc +Rc +jC +Rc +Rc +HD +HD +HD +bK +Rc +jC +mD +tV +Ey +Rc +Rc +Rc +HD +HD kL -Za -Za -Za +py +Cu +py kL -lD -lD -mf -mf -mf -MI -MI -MI -MI -MI -MI -lD -lD -lD -po -po -uD -po -po -lD -lD -lD -po -po -po -uD -MI -MI -MI -po -po -lD -lD -kL -Za -Za -Za -kL -zo -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +cM +ok +wV +wV +wV +sx +wV +wV +sx +wV +wV +wV +wV +wV +sx +wV +ok +sx +wV +wV +wV +wV +cM +cM +cM Ji Ji Za @@ -23358,20 +24519,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -23423,124 +24584,124 @@ Za Za Za Za -OO -ZJ -xE -xE -Mk -Mk -Mk -Mk -sZ -Mk -Mk -Mk -xE -Hq -Hq -Mk -Mk -Mk -Hq +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za -Oe -Oe -hR -hR -hR -hR -hR -Nn -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe +Ab +Ab +ne +ne +lU +ne +ne +vP +bH +bH +bH +bH +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +gF +GW +GW +GW +GW +GW +qX +GW +GW +GW +GW +GW +GW +GW +GW +GW +Mq +UD +UD +HD +Rc +Rc +jC +Rc +Rc +HD +HD +HD +Ey +Ey +jC +Ey +Ey +Ey +Rc +Rc +Rc +Rc +HD Ji Za -Za +ai Za Ji -lD -mf -mf -ts -ts -ts -ts -kz -ts -ts -eV -lD -lD -lD -po -po -uD -po -po -lD -lD -lD -po -po -po -uD -po -po -po -po -po -po -lD -Ji -Za -Za -Za -Ji -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -hn -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +wV +ok +wV +wV +wV +sx +wV +wV +sx +sx +sx +sx +sx +sx +sx +wV +ok +Dj +ok +ok +ok +wV +cM +cM +cM Ji Ji Za @@ -23552,20 +24713,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -23617,123 +24778,123 @@ Za Za Za Za -OO -ZJ -xE -xE -Mk -Mk -EO -EO -Hq -EO -EO -EO -Hq -EO -EO -Mk -Mk -Mk -Hq +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za -Oe -Oe -hR -hR -hR -hR -hR -Nn -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +Ab +Ab +ne +ne +wu +ne +ne +vP +bH +bH +bH +bH +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +gF +GW +GW +GW +GW +GW +qX +GW +GW +GW +GW +GW +GW +GW +GW +GW +Mq +ak +UD +Rc +Rc +Rc +jC +jC +jC +jC +jC +uU +jC +jC +jC +jC +jC +uU +jC +Rc +Rc +HD +HD kL Za -Za +ai Za kL -lD -lD -mf -ts -ts -ts -ts -kz -ts -ts -eV -MI -lD -po -po -po -uD -uD -uD -uD -uD -eZ -uD -uD -uD -uD -uD -uD -uD -po -po -lD -lD -kL -Za -Za -Za -kL -zo -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -WR -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo +cM +cM +ok +wV +wV +wV +sx +wV +wV +sx +wV +wV +wV +FI +wV +sx +wV +wV +sx +wV +wV +ok +wV +wV +cM Ji Ji Ji @@ -23746,20 +24907,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -23811,124 +24972,124 @@ Za Za Za Za -OO -ZJ -ZJ -xE -xE -xE -sZ -Hq -xE -xE -sZ -Hq -xE -Mk -EO -Mk -xE -xE -xE +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za -Oe -Oe -Oe -hR -hR -hR -hR -Nn -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +Ab +Ab +Ab +ne +ne +ne +ne +vP +bH +bH +bH +bH +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +gF +GW +GW +GW +GW +GW +qX +GW +GW +GW +GW +GW +GW +GW +GW +GW +Mq +UD +UD +HD +Rc +Rc +Rc +jC +Rc +HD +HD +HD +GL +Rc +Rc +Rc +Rc +Ey +jC +Rc +Rc +HD +HD kL Za -Za +ai Za kL -lD -lD -mf -ts -ts -ts -ts -kz -ts -ts -eV -lD -lD -lD -po -po -po -po -po -lD -lD -lD -po -po -po -po -po -po -uD -po -po -lD -lD -kL -Za -Za -Za -kL -zo -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -hf -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +cM +Dj +sx +sx +sx +sx +wV +wV +sx +wV +wV +wV +Me +wV +sx +wV +wV +sx +wV +wV +ok +wV +cM +cM +cM Ji Ji Za @@ -23940,20 +25101,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -24005,124 +25166,124 @@ Za Za Za Za -OO -ZJ -ZJ -Hq -sZ -Mk -EO -EO -Mk -sZ -Mk -EO -xE -Mk -EO -Mk -sZ -UY -ZJ +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za -Oe -Oe -Oe +Ab +Ab +Ab ra TU TU TU ra -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +ix +ix +ix +vP +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +rX +ak +UD +UD +UD +Xg +Xg +Xg +UD +UD +UD +ef +So +So +So +ak +ak +ak +ak +ak +UD +UD +HD +Rc +Rc +Rc +jC +Rc +HD +HD +HD +Ey +Ey +Ey +Ey +Ey +Ey +uU +Ey +Ey +HD +HD kL Za -Za +ai Za kL -lD -lD -zx -Pn -Pn -Pn -MI -MI -MI -MI -MI -lD -lD -lD -po -po -po -po -po -lD -lD -lD -po -po -po -po -po -po -uD -po -po -lD -lD -kL -Za -Za -Za -kL -zo -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Ev -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +cM +ok +ok +ok +ok +Dj +ok +wV +sx +wV +wV +wV +ok +wV +sx +wV +wV +sx +sx +sx +Dj +sx +cM +cM +cM Ji Ji Za @@ -24134,20 +25295,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -24199,124 +25360,124 @@ Za Za Za Za -OO -ZJ -ZJ -Hq -sZ -Mk -EO -EO -Mk -sZ -Mk -EO -xE -Mk -EO -Mk -sZ -UY -ZJ +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Ji -Oe -Oe +Ab +Ab TU -TX -TX -TX +sZ +sZ +sZ TU -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe +bH +bH +bH +vP +ne +ne +ne +ne +Hn +ne +ne +Hn +ne +ne +ne +ne +Kl +ne +ne +Ab Ji Za Za Za Ji -lD -mf -mf -ts -po -po -fr -po -po -po -po -lD -lD -lD -po -po -po -po -po -lD -lD -lD -po -po -po -po -po -po -uD -po -po -po -lD +HD +HK +HK +mA +Rc +Rc +ap +Rc +Rc +Rc +Rc +HD +HD +HD +Rc +Rc +Rc +jC +Rc +HD +HD +HD +Rc +Rc +Rc +Rc +Ey +Rc +jC +Rc +Rc +Rc +HD Ji Za -Za +ai Za Ji -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Ev -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +wV +wV +wV +wV +wV +sx +ok +wV +sx +wV +wV +wV +ok +wV +sx +wV +wV +sx +wV +wV +ok +wV +cM +cM +cM Ji Ji Za @@ -24328,20 +25489,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -24393,123 +25554,123 @@ Za Za Za Za -OO -ZJ -ZJ -Hq -sZ -Mk -EO -EO -Mk -sZ -Mk -EO -xE -Mk -EO -Mk -sZ -UY -ZJ +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Ji -Ru -Oe +aw +Ab TU -TX -TX -TX +sZ +sZ +sZ WX -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +bH +bH +bH +vP +ne +ne +ne +ne +Hn +ne +ne +Hn +ne +ne +ne +ne +Kl +eN +Ab +Ab kL Za Za Za kL -lD -lD -mf -ts -po -po -Hh -po -po -po -po -po -bO -po -po -po -po -po -po -po -lD -po -po -po -po -po -po -po -uD -po -po -lD -lD +HD +HD +HK +mA +Rc +Rc +Og +Rc +Rc +Rc +Rc +Rc +kc +jC +jC +jC +jC +LW +Rc +Rc +HD +Rc +Rc +Rc +Rc +Rc +Ey +Rc +jC +Rc +Rc +HD +HD kL Za -Za +ai Za kL -zo -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo +cM +cM +wV +wV +wV +wV +sx +Dj +sx +sx +wV +wV +wV +ok +wV +sx +sx +sx +sx +wV +wV +ok +wV +wV +cM Ji Ji Ji @@ -24522,20 +25683,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -24587,124 +25748,124 @@ Za Za Za Za -OO -ZJ -ZJ -Hq -sZ -Mk -EO -EO -Mk -sZ -Mk -EO -sZ -Mk -EO -Mk -sZ -UY -ZJ +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Ji -Ru -Oe +aw +Ab TU -TX -TX -TX +sZ +sZ +sZ WX -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +bH +bH +bH +vP +ne +ne +ne +ne +Hn +ne +ne +Hn +ne +ne +ne +ne +Kl +cD +Ab +Ab kL Za Za Za kL -lD -lD -mf -po -po -ts -Hh -po -po -po -po -lD -lD -lD -po -lD -lD -lD -po -lD -lD -lD -po -po -po -po -po -po -uD -uD -uD -lD -lD +HD +HD +HK +Rc +Rc +mA +Og +Rc +Rc +Rc +Rc +HD +HD +HD +Rc +HD +HD +HD +Rc +HD +HD +HD +Rc +Rc +Rc +Rc +Ey +Rc +jC +jC +jC +HD +HD kL Za -Za +ai Za kL -zo -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +cM +wV +wV +wV +wV +sx +ok +wV +sx +wV +wV +wV +ok +kq +sx +ok +ok +Dj +ok +ok +ok +wV +cM +cM +cM Ji Ji Za @@ -24716,20 +25877,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -24781,124 +25942,124 @@ Za Za Za Za -OO -ZJ -ZJ -Hq -sZ -Mk -EO -EO -Mk -sZ -Mk -EO -Hq -EO -EO -Mk -sZ -UY -ZJ +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za -Ru -Oe +aw +Ab TU -TX -TX -TX +sZ +sZ +sZ TU -qq -qq -qq -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +bH +bH +bH +vP +ne +ne +ne +ne +Hn +ne +ne +Hn +ne +ne +ne +ne +Kl +ne +Ab +Ab kL Za Za Za kL -lD -lD -mf -po -po -ts -fr -po -po -po -po -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -lD -MI -MI -MI -MI -MI -MI -eZ -MI -uD -lD -lD +HD +HD +HK +Rc +Rc +mA +ap +Rc +Rc +Rc +Rc +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +Zm +sU +sU +sU +sU +sU +sU +uU +sU +jC +HD +HD kL Za -Za +ai Za kL -zo -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +cM +wV +wV +wV +wV +sx +ok +wV +sx +wV +wV +wV +ok +vu +sx +ok +wV +sx +wV +wV +ok +wV +cM +cM +cM Ji Za Za @@ -24910,20 +26071,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -24975,124 +26136,124 @@ Za Za Za Za -OO -ZJ -ZJ -xE -xE -xE -sZ -Hq -xE -xE -sZ -sZ -xE -Hq -xE -sZ -xE -xE -xE +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za -Ru -Oe +aw +Ab ra TU TU TU ra -Nn -Gl -Nn -Nn -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe +vP +vH +vP +vP +ne +ne +ne +ne +Hn +ne +ne +Hn +ne +ne +ne +ne +Kl +ne +ne +Ab Ji Za Za Za Ji -lD -mf -mf -ts -ts -po -MI -fr -po -po -Zx -lD -lD -lD +HD +HK +HK +mA +mA +Rc +Ey +ap +Rc +Rc +KZ +HD +HD +HD Ji -lD -lD -lD +HD +HD +HD Ji -lD -lD -lD -po -po -po -po -vw -vw -po -MI -uD -po -lD +HD +HD +Zm +MV +MV +MV +MV +MV +MV +MV +sU +jC +Rc +HD Ji Za -Za +ai Za Ji -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +wV +wV +wV +wV +wV +sx +ok +wV +sx +sx +sx +sx +Dj +sx +sx +ok +wV +sx +wV +wV +ok +wV +cM +cM +cM Ji Za Za @@ -25104,20 +26265,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -25169,73 +26330,73 @@ Za Za Za Za -OO -ZJ -xE -xE -SX -SX -EO -EO -Hq -EO -EO -EO -EO -EO -Hq -EO -EO -EO -xE +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za -Ru -Oe -aU -hR -Vo -Vo -Vo -Vo -Vo -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +aw +Ab +gl +ne +Kl +Kl +Kl +Kl +Kl +ne +Hn +ne +ne +ne +ne +Hn +ne +ne +Hn +ne +ne +ne +ne +ne +ne +Ab +Ab kL Za Za Za kL -lD -lD -mf -po -po -ts -mf -po -po -ts -mf -po -lD +HD +HD +HK +Rc +Rc +mA +HK +Rc +Rc +mA +HK +Rc +HD Za Za Za @@ -25243,49 +26404,49 @@ Za Za Za Dz -lD -po -po -Lm -Lm -Lm -vw -vw -vw -MI -uD -lD -lD +HD +Zm +MV +MV +MV +MV +MV +MV +MV +sU +jC +HD +HD kL Za -Za +ai Za kL -zo -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo +cM +cM +wV +wV +wV +wV +sx +ok +wV +wV +wV +wV +sx +ok +ok +ok +ok +wV +sx +wV +wV +ok +wV +wV +cM Ji Ji Za @@ -25298,20 +26459,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -25363,73 +26524,73 @@ Za Za Za Za -OO -ZJ -xE -xE -SX -SX -SX -SX -sZ -Mk -Mk -Mk -Mk -Mk -xE -EO -EO -EO -xE +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za -Ru -Oe -Oe -Oe -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +aw +Ab +Ab +Ab +ne +ne +ne +ne +ne +ne +Hn +ne +ne +ne +ne +Hn +ne +ne +Hn +Hn +Hn +Hn +Hn +Hn +Hn +Ab +Ab kL Za Za Za kL -lD -lD -mf -ts -po -po -po -po -po -ts -lD -lD -lD +HD +HD +HK +mA +Rc +Rc +Rc +Rc +Rc +mA +HD +HD +HD Za Za Za @@ -25437,50 +26598,50 @@ Za Za Za Dz -lD -lD -lD -sW -sW -sW -BC -vw -vw -MI -uD -lD -lD +HD +Zm +MV +MT +MT +MT +Tq +Tq +MV +sU +jC +HD +HD kL Za -Za +ai Za kL -zo -zo -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +cM +wV +wV +wV +wV +sx +ok +wV +wV +wV +wV +sx +wV +wV +wV +wV +wV +sx +wV +wV +ok +wV +cM +cM +cM Ji Za Za @@ -25492,20 +26653,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -25557,73 +26718,73 @@ Za Za Za Za -OO -ZJ -Hq -xE -xE -SX -SX -SX -xE -sZ -sZ -sZ -sZ -xE -xE -EO -EO -xE -xE +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za -Ru -Oe -Oe -Oe -Hm -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +aw +Ab +Ab +Ab +Hn +Hn +Hn +Hn +Hn +Hn +Hn +Hn +Hn +Hn +Hn +Hn +ne +ne +Hn +ne +ne +ne +ne +ne +ne +Ab +Ab kL Za Za Za kL -lD -lD -mf -po -po -po -po -po -ts -po -lD -lD -lD +HD +HD +HK +Rc +Rc +Rc +Rc +Rc +mA +Rc +HD +HD +HD Dz Za Za @@ -25631,50 +26792,50 @@ Za Za Za Dz -lD -lD -lD -po -Fq -sW -BC -vw -vw -MI -uD -lD -lD +HD +Zm +MV +qH +qH +qH +Rj +Tq +MV +sU +jC +HD +HD kL Za -Za +ai Za kL -zo -zo -hn -hn -hn -hn -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +cM +sx +sx +sx +sx +sx +ok +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +Dj +sx +cM +cM +cM Ji Za Za @@ -25686,20 +26847,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -25751,73 +26912,73 @@ Za Za Za Za -OO -ZJ -ZJ -ZJ -xE -xE -xE -xE -xE -Hq -Hq -Hq -Hq -xE -xE -sZ -Hq -xE -Hq +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za -Ru -Oe -Oe -Oe -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe +aw +Ab +Ab +Ab +ne +ne +ne +ne +ne +ne +Hn +ne +ne +ne +Hn +ne +ne +ne +Hn +ne +ne +ne +ne +ne +ne +ne +Ab Ji Za Za Za Ji -lD -mf -mf -ts -ts -ts -po -po -po -ts -lD -lD -lD +HD +HK +HK +mA +mA +mA +Rc +Rc +Rc +mA +HD +HD +HD Dz Za Za @@ -25825,50 +26986,50 @@ Za Za Za Dz -lD -lD -lD -sW -sW -sW -BC -vw -vw -MI -uD -po -lD +HD +Zm +MV +Tq +mH +qH +Rj +Tq +MV +sU +jC +Rc +HD Ji Za -Za +ai Za Ji -Pr -BW -Oz -Oz -iM -hn -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +Kh +hb +ba +ba +zW +sx +wV +ok +sx +wV +wV +wV +wV +wV +wV +wV +sx +wV +wV +wV +wV +ok +wV +cM +cM +cM Ji Za Za @@ -25880,20 +27041,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -25945,72 +27106,72 @@ Za Za Za Za -OO -OO -OO -OO -OO -OO -OO -OO -WX -WX -WX -WX -WX -WX -WX -WX -WX -WX -WX +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za -Ru -Ru -Oe -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +aw +aw +Ab +ne +ne +ne +ne +ne +ne +ne +Hn +ne +ne +ne +Hn +ne +ne +ne +Hn +ne +ne +ne +ne +ne +ne +Ab +Ab kL Za Za Za kL -lD -lD -MI -lB -lB -lB -MI -ts -po -po -po -lD +HD +HD +Ey +mZ +mZ +mZ +Ey +mA +Rc +Rc +Rc +HD Ji Za Za @@ -26020,48 +27181,48 @@ Za Za Dz Ji -lD -po -LV -LV -LV -vw -vw -vw -MI -uD -lD -lD +Zm +MV +qH +qH +qH +Rj +Tq +MV +sU +jC +HD +HD kL Za -Za +ai Za kL -zo -iM -Bm -Zj -ee -EE -Ev -Ev -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo +cM +zW +tm +Sb +YR +Dj +ok +ok +Dj +ok +ok +ok +ok +wV +wV +wV +sx +wV +wV +wV +wV +ok +wV +wV +cM Ji Ji Za @@ -26074,20 +27235,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -26161,51 +27322,51 @@ Za Za Za Za -Ru -Oe -Oe -Oe -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +aw +Ab +Ab +Ab +ne +ne +ne +ne +ne +ne +Hn +ne +ne +ne +Hn +ne +ne +ne +Hn +ne +ne +ne +ne +ne +ne +Ab +Ab kL Za Za Za kL -lD -lD -MI -qA -qA -qA -MI -mf -po -ts -lD -lD -lD +HD +HD +Ey +OW +OW +OW +Ey +HK +Rc +mA +HD +HD +HD Za Za Za @@ -26213,50 +27374,50 @@ Za Za Za Za -lD -lD -po -po -po -po -vw -vw -Nb -MI -uD -lD -lD +HD +Zm +MV +Np +Np +Np +Tq +Tq +MV +sU +jC +HD +HD kL Za -Za +ai Za kL -zo -BW -ST -ee -pE -hn -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +hb +QB +YR +PF +sx +ok +wV +sx +wV +wV +wV +ok +ok +ok +ok +Dj +ok +ok +ok +ok +ok +wV +cM +cM +cM Ji Za Za @@ -26268,20 +27429,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -26355,51 +27516,51 @@ Za Za Za Za -Ru -Oe -Oe -Oe -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe -Oe +aw +Ab +Ab +Ab +ne +ne +ne +ne +ne +ne +Hn +ne +ne +ne +Hn +ne +ne +ne +Hn +ne +ne +ne +ne +ne +ne +Ab +Ab kL Za Za Za kL -lD -lD -MI -qA -qA -qA -MI -mf -po -ts -lD -lD -lD +HD +HD +Ey +OW +OW +OW +Ey +HK +Rc +mA +HD +HD +HD Za Za Za @@ -26407,50 +27568,50 @@ Za Za Za Za -lD -lD -po -po -po -po -po -Nb -Nb -MI -uD -lD -lD +HD +Zm +MV +MV +MV +MV +MV +MV +MV +sU +jC +HD +HD kL Za -Za +ai Za kL -zo -Zd -Hj -dE -ee -hn -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +cM +uE +MC +sM +JR +sx +ok +wV +sx +wV +wV +wV +wV +wV +wV +wV +sx +wV +wV +wV +wV +wV +wV +cM +cM +cM Ji Za Za @@ -26462,20 +27623,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -26549,50 +27710,50 @@ Za Za Za Za -Ru -Oe -Oe -Oe -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -hR -Oe +aw +Ab +Ab +Ab +ne +ne +ne +ne +ne +ne +Hn +ne +ne +ne +Hn +ne +ne +ne +Hn +ne +ne +ne +ne +ne +ne +ne +Ab Ji Za Za Za Ji -lD -MI -MI -qA -qA -qA -MI -mf -ts -ts -mf -lD +HD +Ey +Ey +OW +OW +OW +Ey +HK +mA +mA +HK +HD Ji Za Za @@ -26601,50 +27762,50 @@ Za Za Za Za -lD -lD -po -po -po -II -po -Nb -Nb -MI -uD -po -lD +HD +Zm +MV +MV +MV +TT +MV +MV +MV +sU +jC +Rc +HD Ji py -py +Cu py Ji -Pr -Cd -Zd -Yr -BW -hn -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -zo -zo -zo +Kh +xI +uE +MR +JR +sx +ok +wV +sx +wV +wV +wV +wV +wV +wV +wV +sx +wV +wV +wV +wV +wV +wV +cM +cM +cM Ji Za Za @@ -26656,20 +27817,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -26743,51 +27904,51 @@ Za Za Za Za -Ru -Oe -Oe -Oe -hR -Oe -Oe -Oe -hR -Oe -Oe -Oe -hR -Oe -Oe -Oe -hR -Oe -Oe -Oe -hR -Oe -Oe -Oe -hR -Oe -Oe +aw +Ab +Ab +Ab +ne +Ab +Ab +Ab +ne +Ab +Ab +Ab +ne +Ab +Ab +Ab +ne +Ab +Ab +Ab +ne +Ab +Ab +Ab +ne +Ab +Ab kL py py py kL -lD -lD -MI -MI -MI -lD -lD -mf -ts -ts -lD -lD -lD +HD +HD +Ey +Ey +Ey +HD +HD +HK +mA +mA +HD +HD +HD Za Za Za @@ -26795,49 +27956,49 @@ Za Za Za Za -lD -lD -lD -qm -pW -lD -lD -Nb -Nb -lD -uD -lD -lD +HD +Zm +Zm +ti +lA +Zm +Zm +MV +MV +Zm +jC +HD +HD kL Ji -Ji +Wv Ji kL -zo -zo -lb -zo -zo -zo -Od -zo -zo -zo -Od -zo -zo -zo -Od -zo -zo -zo -Od -zo -zo -zo -Od -zo -zo +cM +cM +qR +cM +cM +cM +ok +cM +cM +cM +wV +cM +cM +cM +wV +cM +cM +cM +wV +cM +cM +cM +wV +cM +cM Ji Ji Za @@ -26850,20 +28011,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -26937,51 +28098,51 @@ Za Za Za Za -Ru -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe -Oe +aw +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab kL Ji Ji Ji kL -If -If -If -If -If -If -If -If -If -Cz -If -If -If +nH +nH +nH +nH +nH +nH +nH +nw +nw +ke +nw +nw +nw Za Za Za @@ -26990,49 +28151,49 @@ Za Za Za nd -nd -nd -nd -nd -nd -nd -nd +sQ +sQ +sQ +sQ +sQ +sQ +sQ aD -nd -QK -If -If +sQ +ou +nw +nw kL Ji -Ji +Wv Ji kL -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo -zo +cM +cM +cM +cM +cM +cM +Dj +cM +cM +cM +cM +cM +cM +cM +cM +cM +cM +cM +cM +cM +cM +cM +cM +cM +cM +cM Ji Za Za @@ -27044,20 +28205,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -27134,48 +28295,48 @@ Za Ji kL kL -Ir -qu -Ir -Ir -Ir -qu -Ir -Ir -Ir -qu -Ir -Ir -Ir -qu -Ir -Ir -Ir -qu -Ir -Ir -Ir -qu -Ir -Ir +Zw +sn +Zw +Zw +Zw +sn +Zw +Zw +Zw +sn +Zw +Zw +Zw +sn +Zw +Zw +Zw +sn +Zw +Zw +Zw +sn +Zw +Zw kL py py py kL -If -If -ky -zs -LB -If -If -Es -Es -xK -If -If -If +nH +nH +Rt +px +DP +nH +nH +wM +wM +uv +nw +nw +nw py py py @@ -27184,47 +28345,47 @@ py py py nd -nd -nd +sQ +sQ OL FJ -nd -nd +sQ +sQ aD aD -nd -xK -If -If +sQ +uv +nw +nw kL Ji -Ji +Wv Ji kL -df -df -cN -df -df -df -cN -df -df -df -cN -df -df -df -cN -df -df -df -cN -df -df -df -df -df +IF +IF +HE +IF +IF +IF +oa +IF +IF +IF +HE +IF +IF +IF +HE +IF +IF +IF +HE +IF +IF +IF +IF +IF kL kL Ji @@ -27238,20 +28399,20 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -27328,47 +28489,47 @@ Za Za Ji Ji -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir +Zw +sn +sn +sn +sn +sn +sn +sn +sn +sn +sn +Zw +sn +sn +sn +sn +sn +sn +sn +Jf +sn +sn +sn +Zw Ji Za Za Za Ji -Gp -gS -pQ -pQ -pQ -pQ -aH -Es -Es -xK -Es -Gp +fX +xH +Ge +Ge +Ge +Ge +Ip +wM +wM +uv +wM +fX Ji Ji Ji @@ -27386,39 +28547,39 @@ yG tx aD ft -qr -xK -Es -Gp +bl +uv +wM +fX Ji py -py +Cu py Ji -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df +IF +HE +HE +HE +HE +HE +oa +HE +Ic +HE +HE +HE +IF +HE +HE +HE +HE +HE +HE +HE +HE +HE +IF +IF Ji Ji Za @@ -27522,48 +28683,48 @@ Za Za Za Za -Ir -Ir -Ir -Ir -Ir -qu -Ir -Ir -Ir -qu -Ir -Ir -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -Ir +Zw +Zw +Zw +Zw +Zw +sn +Zw +Zw +Zw +sn +Zw +Zw +Zw +sn +sn +sn +sn +sn +sn +Jf +sn +sn +Zw +Zw kL Za Za Za kL -If -If -pQ -pQ -pQ -pQ -bI -xK -xK -xK -If -If -If +nH +nH +Ge +Ge +Ge +Ge +MM +uv +uv +uv +nw +nw +nw py py py @@ -27572,47 +28733,47 @@ py py py nd -nd -nd +sQ +sQ aD aD Vr rm aD aD -qr -xK -If -If +bl +uv +nw +nw kL Za -Za +ai Za kL -df -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df -df -cN -df -df -df -cN -df -df -df -df -df +IF +IF +HE +HE +HE +HE +oa +HE +Ic +HE +HE +IF +IF +IF +HE +IF +IF +IF +HE +IF +IF +IF +IF +IF Za Za Za @@ -27718,46 +28879,46 @@ Za Za Za Za -Ir -Ir -Ir -Ir -Ir -Ir -Ir -Ir -Ir -Ir -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -Ir +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Jf +Jf +Jf +Jf +Jf +Jf +Jf +sn +sn +Zw +Zw kL Za Za Za kL -If -If -Xw -pQ -Xw -Xw -aH -Es -Es -xK -If -If -If +nH +nH +CW +Ge +CW +CW +Ip +wM +wM +NW +nw +nw +nw Za Za Za @@ -27766,45 +28927,45 @@ Za Za Za nd -nd -nd +sQ +sQ AB aD Xp Xp aD Vf -qr -xK -If -If +bl +uv +nw +nw kL Za -Za +ai Za kL -df -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df -df -df -df -df -df -df -df -df -df +IF +IF +HE +HE +HE +HE +oa +HE +Ic +HE +HE +IF +IF +IF +IF +IF +IF +IF +IF +IF +IF +IF Za Za Za @@ -27920,38 +29081,38 @@ kL kL kL Ji -Ir -Ir -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -Ir +Zw +Zw +Zw +sn +sn +sn +sn +sn +sn +Jf +sn +sn +Zw +Zw kL Za Za Za kL -If -If -Xw -pQ -Xw -Xw -aH -Es -Es -xK -If -If -If +nH +nH +CW +Ge +CW +CW +Ip +wM +wM +uv +nw +nw +nw Za Za Za @@ -27960,41 +29121,41 @@ Za Za Za nd -nd -nd +sQ +sQ CQ aD pg fy aD aD -qr -xK -If -If +bl +uv +nw +nw kL Za -Za +ai Za kL -df -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df -df +IF +IF +HE +HE +HE +HE +oa +Yx +Ic +HE +HE +IF +IF +IF Ji -df -df -df +IF +IF +IF Ji Za Za @@ -28115,36 +29276,36 @@ Ji Ji Ji Ji -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir +Zw +sn +sn +sn +sn +sn +sn +sn +Jf +sn +sn +sn +Zw Ji Za Za Za Ji -Gp -gS -Xw -pQ -Xw -Xw -aH -Es -Es -xK -Es -Gp +fX +xH +CW +Ge +CW +CW +Ip +wM +wM +uv +wM +fX Ji Za Za @@ -28162,28 +29323,28 @@ uC Ci aD ft -qr -xK -Es -Gp +bl +uv +wM +fX Ji Za -Za +ai Za Ji -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -cN -cN -df +IF +HE +oa +oa +oa +oa +oa +wh +Ic +HE +HE +HE +IF Ji Ji Ji @@ -28308,38 +29469,38 @@ Ji Ji Ji Ji -Ir -Ir -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -Ir +Zw +Zw +Zw +sn +sn +sn +sn +sn +sn +Jf +sn +sn +Zw +Zw kL Za Za Za kL -If -If -pQ -pQ -pQ -pQ -aH -Es -Es -xK -If -If -If +nH +nH +Ge +Ge +Ge +Ge +Ip +wM +wM +uv +nw +nw +nw Za Za Za @@ -28348,37 +29509,37 @@ Za Za Za nd -nd -nd +sQ +sQ fI Kr qr mV aD aD -qr -xK -If -If +bl +uv +nw +nw kL Za -Za +ai Za kL -df -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df -df +IF +Ic +sL +Ic +Ic +Ic +oa +HE +Ic +HE +HE +IF +IF +IF Ji Ji Ji @@ -28481,11 +29642,11 @@ Za Za Za Za -hM -hM -qp -jW -iN +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -28502,38 +29663,38 @@ Ji Ji Ji Ji -Ir -Ir -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -Ir +Zw +Zw +Zw +Jf +Jf +Jf +Jf +Jf +Jf +Jf +Jf +Jf +Zw +Zw kL Za Za Za kL -If -If -Rl -Rl -DD -DD -aH -Es -Es -xK -If -If -If +nH +nH +iv +iv +fd +fd +Ip +wM +wM +uv +nw +nw +nw Za Za Za @@ -28542,37 +29703,37 @@ Dz Dz Dz nd -nd -nd +sQ +sQ qr qr qr Jc aD -TY -qr -xK -If -If +uV +bl +uv +nw +nw kL -Za -Za -Za +py +Hr +py kL -df -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df -df +IF +Ph +Ph +ei +Ng +Ic +oa +HE +Ic +Ic +Ic +IF +IF +IF Ji Ji Ji @@ -28673,13 +29834,13 @@ Za Za Za Za -Za -Za -At -Hw -Vx -KH -GE +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -28696,38 +29857,38 @@ Za Ji Ji Ji -Ir -Ir -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -Ir +Zw +Zw +Zw +sn +sn +Jf +sn +sn +sn +sn +sn +sn +Zw +Zw kL Za Za Za kL -If -If -ha -ha -ha -nb -aH -Es -Es -xK -If -If -If +nH +nH +ej +ej +ej +xy +Ip +wM +wM +uv +nw +nw +nw py py py @@ -28736,37 +29897,37 @@ py py py nd -nd -nd +sQ +sQ QX NA qr iU aD aD -qr -xK -If -If +bl +uv +nw +nw kL -Za -Za -Za +Ji +Wv +Ji kL -df -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df -df +IF +Ph +Ph +qy +Wu +Ic +oa +HE +Ic +HE +HE +IF +IF +IF Ji Ji Ji @@ -28867,13 +30028,13 @@ Za Za Za Za -Za -Za -EB -uS -uS -gz -gz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -28891,36 +30052,36 @@ Ji Ji Ji Ji -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir +Zw +sn +sn +sn +Jf +sn +sn +sn +sn +sn +sn +sn +Zw Ji Za Za Za Ji -Gp -Pp -ha -ha -ha -nb -aH -Es -Es -xK -Es -Gp +fX +PO +ej +ej +ej +xy +Ip +wM +wM +uv +wM +fX Ji Ji Ji @@ -28938,28 +30099,28 @@ qr QW aD aD -qr -xK -iC -Gp +bl +uv +DZ +fX Ji -Za -Za -Za Ji -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -cN -cN -df +Wv +Ji +Ji +IF +Ph +Ph +Ph +Ph +Ic +oa +HE +Ic +HE +HE +HE +IF Ji Ji Ji @@ -29061,13 +30222,13 @@ Za Za Za Za -Za -Za -zJ -uS -zR -tP -Lc +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -29084,38 +30245,38 @@ Za Ji Ji Ji -Ir -Ir -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -Ir +Zw +Zw +Zw +sn +sn +Jf +sn +sn +sn +sn +sn +sn +Zw +Zw kL Za Za Za kL -If -If -ha -ha -qe -aH -aH -Es -Es -xK -If -If -If +nH +nH +ej +ej +QU +Ip +Ip +wM +wM +uv +nw +nw +nw py py py @@ -29124,37 +30285,37 @@ py py py nd -nd -nd +sQ +sQ aD aD TO QW aD ft -qr -xK -If -If +bl +uv +nw +nw kL -Za -Za -Za +Ji +Wv +Ji kL -df -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df -df +IF +Ph +Ph +Ph +uR +Ic +oa +HE +Ic +HE +HE +IF +IF +IF Ji Ji Ji @@ -29255,13 +30416,13 @@ Za Za Za Za -Za -Za -DS -uS -rV -Ho -kI +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -29278,38 +30439,38 @@ Za Za Ji Ji -Ir -Ir -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -Ir +Zw +Zw +Zw +sn +sn +Jf +sn +sn +sn +sn +sn +sn +Zw +Zw kL Za Za Za kL -If -If -ha -ha -ha -Uk -aH -Es -Es -xK -If -If -If +nH +nH +ej +ej +ej +ex +Ip +wM +wM +uv +nw +nw +nw Za Za Za @@ -29318,37 +30479,37 @@ Za Za Za nd -nd -nd +sQ +sQ AB aD aD aD aD ya -qr -xK -If -If +bl +uv +nw +nw kL -Za -Za -Za +py +Hr +py kL -df -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df -df +IF +Ph +Ph +lp +pU +Ic +oa +HE +Ic +Ic +Ic +IF +IF +IF Ji Ji Za @@ -29449,13 +30610,13 @@ Za Za Za Za -Za -Za -FT -uS -iX -Ho -yc +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -29472,38 +30633,38 @@ Za Za Ji Ji -Ir -Ir -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -Ir +Zw +Zw +Zw +sn +sn +Jf +sn +sn +sn +sn +sn +sn +Zw +Zw kL Za Za Za kL -If -If -ha -ha -ha -Uk -aH -Es -Es -xK -If -If -If +nH +nH +ej +ej +ej +ex +Ip +wM +wM +uv +nw +nw +nw Za Za Za @@ -29512,8 +30673,8 @@ Za Za Za nd -nd -nd +sQ +sQ aD aD aD @@ -29521,28 +30682,28 @@ aD aD pt oX -KB -If -If +jc +nw +nw kL Za Za -Za +ai kL -df -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df -df +IF +Ph +lp +lp +pU +Ic +oa +HE +Ic +HE +HE +IF +IF +IF Ji Ji Za @@ -29643,13 +30804,13 @@ Za Za Za Za -Za -Za -Gc -hM -ua -xg -XW +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -29667,36 +30828,36 @@ Za Ji Ji Ji -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir +Zw +sn +sn +sn +Jf +sn +sn +sn +sn +sn +sn +sn +Zw Ji Za Za Za Ji -Gp -Pp -ha -ha -qe -aH -aH -aH -Es -xK -Es -Gp +fX +PO +ej +ej +QU +Ip +Ip +Ip +wM +uv +wM +fX Ji Za Za @@ -29714,28 +30875,28 @@ NK GO Xp OX -qr -Qk -yS -Gp +bl +ey +FW +fX Ji Za Za Za -Ji -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -cN -cN -df +Wv +tQ +pU +pU +pU +lp +Ic +oa +HE +Ic +HE +HE +HE +IF Ji Ji Ji @@ -29837,13 +30998,13 @@ Za Za Za Za -Za -Za -zJ -hM -sP -qi -nW +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -29860,38 +31021,38 @@ Za Za Za Ji -Ir -Ir -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -Ir +Zw +Zw +Zw +sn +sn +Jf +sn +sn +sn +sn +sn +sn +Zw +Zw kL Za Za Za kL -If -If -ha -ha -ha -VR -PC -aH -Es -xK -If -If -If +nH +nH +ej +ej +ej +iW +WM +Ip +wM +uv +nw +nw +nw Za Za Za @@ -29900,37 +31061,37 @@ Za Za Za nd -nd -nd +sQ +sQ Xp Xp mL sh Xp GQ -qr -Qk -If -If +bl +ey +nw +nw kL -Za -Za -Za +py +py +py kL -df -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df -df +IF +IF +Ic +Ic +Ic +Ic +oa +HE +Ic +HE +HE +IF +IF +IF Ji Za Za @@ -30031,13 +31192,13 @@ Za Za Za Za -Za -Za -EB -uS -zp -Ho -wr +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -30054,38 +31215,38 @@ Za Za Za Ji -Ir -Ir -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -Ir +Zw +Zw +Zw +Jf +Jf +Jf +Jf +Jf +Jf +Jf +Jf +Jf +Zw +Zw kL Za Za Za kL -If -If -ha -ha -ha -aH -DW -aH -Es -xK -If -If -If +nH +nH +ej +ej +ej +Ip +SQ +Ip +wM +NW +nw +nw +nw Za Za Za @@ -30094,37 +31255,37 @@ Za Za Za nd -nd -nd +sQ +sQ ez Xp Xp QW Xp QH -qr -Qk -If -If +bl +ey +nw +nw +nw +Ji +Ji +Ji kL -Za -Za -Za -kL -df -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df -df +IF +IF +HE +HE +HE +HE +oa +HE +Ic +HE +HE +IF +IF +IF Ji Za Za @@ -30225,13 +31386,13 @@ Za Za Za Za -Za -Za -qa -XJ -iG -kh -ZV +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -30248,38 +31409,38 @@ Za Za Za Ji -Ir -Ir -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir -Ir +Zw +Zw +Zw +sn +sn +Jf +sn +sn +sn +sn +sn +sn +Zw +Zw kL Za Za Za kL -If -If -qw -ha -ha -Gv -QN -aH -Es -xK -If -If -If +nH +nH +zi +ej +ej +Dy +kK +Ip +wM +uv +nw +nw +nw py py py @@ -30288,37 +31449,37 @@ py py py nd -nd -nd +sQ +sQ Xp qZ bs -qr -qr -qr -qr -WB -If -If -kL -Za -Za -Za -kL -df -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -df -df -df +bl +bl +bl +bl +CS +nw +nw +nw +fX +nw +fX +nw +IF +IF +HE +HE +HE +HE +oa +HE +Ic +HE +HE +IF +IF +IF Ji Za Za @@ -30443,36 +31604,36 @@ Za Za Za Ji -Ir -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -qu -Ir +Zw +sn +sn +sn +Jf +sn +sn +sn +sn +sn +sn +sn +Zw Ji Za Za Za Ji -Gp -Pp -qw -ha -ha -aH -aH -aH -Es -xK -Es -Gp +fX +PO +zi +ej +ej +Ip +Ip +Ip +wM +uv +wM +fX Ji Ji Ji @@ -30482,36 +31643,36 @@ Ji Ji Ji Ji -mY -ul +SJ +kN ON -ul +kN RM -ul -Es -zZ -HX -yQ -Es -If -Ji -Za -Za -Za -Ji -df -cN -cN -cN -cN -cN -cN -cN -cN -cN -cN -cN -df +kN +wM +Xi +nf +LH +uv +JZ +uv +uv +uv +uv +uv +HM +oa +oa +oa +Or +oa +oa +HE +Ic +HE +HE +HE +IF Ji Za Za @@ -30636,38 +31797,38 @@ Za Za Za Za -Ir -Ir -Ir -qu -Ir -Ir -Ir -qu -Ir -Ir -Ir -qu -Ir -Ir +Zw +Zw +Zw +sn +Zw +Zw +Zw +sn +Zw +Zw +Zw +sn +Zw +Zw kL py py py kL -If -If -qw -ha -ha -If -If -Es -Es -xK -If -If -If +nH +nH +zi +ej +ej +nH +nH +wM +wM +uv +nw +nw +nw py py py @@ -30676,37 +31837,37 @@ py py py mY -mY -mY +SJ +SJ zE bP YV -mY -If -Es -Es -xK -If -If -kL -py -py -py -kL -df -df -cN -df -df -df -cN -df -df -df -cN -df -df -df +SJ +nw +wM +wM +uv +nw +nw +nw +fX +nw +fX +nw +IF +IF +HE +IF +IF +IF +HE +IF +IF +IF +HE +IF +IF +IF Za Za Za @@ -30830,38 +31991,38 @@ Za Za Za Za -Ir -Ir -Ir -qu -Ir -Ir -Ir -Ir -Ir -Ir -Ir -Ir -Ir -Ir +Zw +Zw +Zw +sn +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw kL Ji Ji Ji kL -If -If -cd -aH -If -If -If -If -aH -xK -If -If -If +nH +nH +Si +Ip +nH +nH +nH +nw +sJ +JZ +nw +nw +nw Za Za Za @@ -30870,37 +32031,37 @@ Za Za Za mY -mY -mY +SJ +SJ cs YJ mY -mY -If -If -Es -xK -If -If -kL +SJ +nw +nw +wM +NW +nw +nw +nw Ji Ji Ji kL -df -df -df -df -df -df -df -df -df -df -cN -df -df -df +IF +IF +IF +IF +IF +IF +IF +IF +IF +IF +rN +IF +IF +IF Za Za Za @@ -31026,10 +32187,10 @@ Za Za kL kL -Ir -qu -Ir -Ir +Zw +sn +Zw +Zw kL Ji kL @@ -31043,19 +32204,19 @@ py py py kL -If -If -Qk -Es -Es -If -If -Es -Es -xK -If -If -If +nw +nw +ey +DZ +FW +nw +nw +wM +wM +uv +nw +nw +nw Za Za Za @@ -31064,18 +32225,18 @@ Za Za Za mY -mY -mY +SJ +SJ PS Mp hA -mY -If -Es -Es -xK -If -If +SJ +nw +wM +wM +uv +nw +nw kL py py @@ -31088,13 +32249,13 @@ kL Za kL Ji -kL -df -df -cN -df -df -df +IF +IF +IF +HE +IF +IF +IF Za Za Za @@ -31220,10 +32381,10 @@ Za Za kL kL -Ir -qu -qu -Ir +Zw +sn +sn +Zw Ji Ji Za @@ -31237,18 +32398,18 @@ Za Za Za Ji -If -xK -Qk -xK -xK -xK -xK -xK -xK -xK -Es -If +nw +uv +ey +uv +uv +uv +uv +uv +uv +uv +wM +nw Ji Za Za @@ -31263,13 +32424,13 @@ Cx Mp Lj jG -ul -Es -Es -Es -xK -Es -If +kN +wM +wM +wM +uv +wM +nw Ji Za Za @@ -31283,12 +32444,12 @@ Za Za Ji Ji -df -cN -cN -df -df -df +IF +HE +HE +IF +IF +IF Za Za Za @@ -31414,10 +32575,10 @@ Za Za Za Za -Ir -qu -qu -Ir +Zw +sn +sn +Zw Ji Za Za @@ -31431,18 +32592,18 @@ Za Za Za kL -If -If -Qk -Es -Es -Es -xK -Es -Es -Es -Es -If +nw +nw +ey +wM +wM +wM +uv +wM +wM +wM +wM +nw Ji Za Za @@ -31454,16 +32615,16 @@ Za Ji RM Cx -wU +EV Td -ul -ul -Es -Es -Es -xK -If -If +kN +kN +wM +wM +wM +uv +nw +nw kL Za Za @@ -31477,10 +32638,10 @@ Za Za Za Ji -df -cN -cN -df +IF +HE +HE +IF Za Za Za @@ -31608,10 +32769,10 @@ Za Za Za Za -Ir -qu -qu -Ir +Zw +sn +sn +Zw Za Za Za @@ -31625,39 +32786,39 @@ Za Za Za kL -If -If -Qk -Es -Es -Es -xK -Es -Es -Es -If -If -If -If +nw +nw +ey +NB +wM +wM +uv +wM +wM +wM +nw +nw +nw +nw Ji -If -If -If +nw +nw +nw Ji -If +nw mY -mY -mY -ul -ul -ul -xK -xK -xK -xK -xK -If -If +SJ +SJ +kN +kN +kN +uv +uv +uv +uv +uv +nw +nw kL Za Za @@ -31671,10 +32832,10 @@ Za Za Za Za -df -cN -cN -df +IF +HE +HE +IF Za Za Za @@ -31802,10 +32963,10 @@ Za Za Za Za -Ir -qu -qu -Ir +Zw +sn +sn +Zw Za Za Za @@ -31819,39 +32980,39 @@ Za Za Za kL -If -If -Zp -If -If -If -xK -Es -Es -Es -If -If -If -If -If -If -If -If -If -If -If -If -If -Es -Es -Es -xK -If -If -If -If -If -If +nw +nw +Lf +nw +nw +nw +JZ +sJ +sJ +sJ +nw +nw +nw +nw +nw +nw +nw +nw +nw +nw +nw +nw +nw +wM +wM +wM +uv +nw +nw +nw +nw +nw +nw kL Za Za @@ -31865,10 +33026,10 @@ Za Za Za Za -df -cN -cN -df +IF +HE +HE +IF Za Za Za @@ -31996,10 +33157,10 @@ Za Za Za Za -Ir -qu -qu -Ir +Zw +sn +sn +Zw Za Za Za @@ -32013,39 +33174,39 @@ Za Za Za Ji -If -Es -Ap -Es -Es -If -xK -Es -Es -Es -If -If -If -If -Es -If -If -If -Es -If -If -If -If -Es -Es -Es -xK -If -Es -Es -Es -Es -If +nw +wM +oD +wM +wM +nw +uv +wM +wM +wM +nw +nw +nw +nw +wM +nw +nw +nw +wM +nw +nw +nw +nw +wM +wM +wM +uv +nw +wM +wM +wM +wM +nw Ji Za Za @@ -32059,10 +33220,10 @@ Za Za Za Za -df -cN -cN -df +IF +HE +HE +IF Za Za Za @@ -32190,10 +33351,10 @@ Za Za Za Za -Ir -Ir -Ir -Ir +Zw +Zw +Zw +Zw Za Za Za @@ -32207,39 +33368,39 @@ py py py kL -If -If -Ap -Es -Es -If -xK -Es -Es -Es -Es -If -Es -Es -Es -Es -Es -Es -Es -Es -Es -If -Es -Es -Es -Es -xK -If -Es -Es -Es -If -If +nw +nw +oD +wM +wM +nw +uv +wM +wM +wM +wM +nw +nw +pC +wM +wM +nw +Ja +wM +wM +nw +nw +wM +wM +wM +wM +uv +nw +wM +wM +wM +nw +nw kL py py @@ -32253,10 +33414,10 @@ Za Za Za Za -df -df -df -df +IF +IF +IF +IF Za Za Za @@ -32401,39 +33562,39 @@ Ji Ji Ji kL -If -If -Ap -Es -Es -If -xK -Es -Es -Es -If -If -If -Es -Es -Es -Es -Es -Es -Es -If -If -If -Es -Es -Es -xK -If -Es -Es -Es -If -If +nw +nw +oD +wM +wM +nw +uv +wM +wM +wM +nw +nw +nw +mo +wM +wM +nw +ZP +wM +wM +nw +nw +nw +wM +wM +wM +NW +nw +wM +wM +wM +nw +nw kL Ji Ji @@ -32595,39 +33756,39 @@ py py py kL -If -If -Ap -Es -Es -If -xK -xK -xK -xK -If -If -If -Es -Es -Es -Es -Es -Es -Es -If -If -If -xK -xK -xK -xK -If -Es -Es -Es -If -If +nw +nw +oD +wM +wM +nw +uv +uv +uv +uv +nw +nw +nw +IR +wM +wM +nw +Ja +wM +wM +nw +nw +nw +uv +uv +uv +uv +nw +wM +wM +wM +nw +nw kL py py @@ -32789,39 +33950,39 @@ Za Za Za Ji -If -Do -XN -Es -Es -If -Es -Es -Es -xK -If -If -If -Es -Es -Es -Es -Es -Es -Es -If -If -If -xK -Es -Es -Es -If -If -If -If -Es -If +nw +VH +hm +wM +wM +nw +wM +wM +wM +uv +nw +nw +nw +WN +wM +wM +RP +wM +wM +wM +nw +nw +nw +uv +wM +wM +wM +nw +nw +nw +nw +wM +nw Ji Za Za @@ -32983,39 +34144,39 @@ Za Za Za Ji -If -If -If -If -If -If -Es -Es -Es -xK -Es -If -Es -Es -Es -Es -Es -Es -Es -Es -Es -If -Es -xK -Es -Es -Es -If +nw +nw +nw +nw +nw +nw +wM +wM +wM +uv +wM +nw +nw +nw +nw +RP +RP +RP +nw +nw +nw +nw +wM +uv +wM +wM +wM +nw Za Ji -If -If -If +nw +nw +nw Ji Za Za @@ -33182,27 +34343,27 @@ kL Ji Ji Za -If -If -Es -Es -xK -If -If -If -Es -Es -Es -Es -Es -Es -Es -If -If -If -xK -Es -Es +nw +nw +wM +wM +uv +nw +nw +nw +nw +nw +RP +RP +RP +nw +nw +nw +nw +nw +uv +wM +wM kL kL Za @@ -33377,26 +34538,26 @@ Ji Ji Za Za -If -Es -Es -xK -If -If -If -Es -Es -Es -Es -Es -Es -Es -If -If -If -xK -Es -Es +nw +wM +wM +uv +nw +cl +wM +Cb +Cb +sK +sK +ga +tp +Ah +nw +nw +nw +uv +wM +wM kL Za Za @@ -33571,26 +34732,26 @@ Ji Ji Za Za -If -If -Es -xK -If -If -If -Es -Es -Es -Es -Es -Es -Es -If -If -If -xK -Es -If +nw +nw +wM +uv +nw +cl +wM +Cb +wM +Cb +Cb +wM +wM +oj +nw +nw +nw +uv +wM +nw kL Za Za @@ -33766,25 +34927,25 @@ Ji Za Za Za -If -Es -xK -Es -If -Es -Es -Es -Es -Es -Es -Es -Es -Es -If -Es -xK -Es -If +nw +wM +uv +nw +nw +nw +wM +wM +wM +Cb +Cb +wM +Ah +nw +nw +nw +uv +wM +nw Za Za Za @@ -33960,25 +35121,25 @@ Ji Za Za Za -If -Es -xK -If -If -If -If -Es -If -If -If -Es -If -If -If -If -xK -Es -If +nw +wM +uv +wM +wM +nw +nw +gH +nw +nw +nw +wM +nw +nw +wM +wM +uv +wM +nw Za Za Za @@ -34154,25 +35315,25 @@ Za Za Za Za -If -Es -xK -If -If -If -If -If -If -If -If -If -If -If -If -If -xK -Es -If +nw +wM +uv +nw +wM +nw +nw +nw +nw +nw +nw +UJ +nw +nw +wM +nw +uv +wM +nw Za Za Za @@ -34348,25 +35509,25 @@ Za Za Za Za -If -Es -xK -If -If -If -Es -Es -If -If -If -Es -Es -If -If -If -xK -Es -If +nw +wM +uv +nw +wM +nw +wM +wM +nw +nw +nw +wM +wM +nw +wM +nw +uv +wM +nw Za Za Za @@ -34542,25 +35703,25 @@ Za Za Za Za -If -Es -xK -xK -xK -eH -xK -Es -Es -If -Es -Es -xK -eH -xK -xK -xK -Es -If +nw +wM +tj +uv +uv +JZ +uv +wM +wM +nw +wM +wM +uv +JZ +uv +uv +uv +wM +nw Za Za Za @@ -34736,25 +35897,25 @@ Za Za Za Za -If -If -If -If -If -If -xK -If -If -If -If -If -xK -If -If -If -If -If -If +nw +nw +nw +nw +nw +nw +uv +nw +nw +nw +nw +nw +uv +nw +nw +nw +nw +nw +nw Za Za Za @@ -34934,17 +36095,17 @@ Za Za Ji eg -If -If -xK -Es -If -If -If -Es -xK -If -If +nw +nw +uv +wM +nw +nw +nw +wM +uv +nw +nw eg Ji Za @@ -35129,15 +36290,15 @@ Za Ji BX Ji -If -xK -Es -Es -Ye -Es -Es -xK -If +nw +uv +wM +wM +wq +FW +wM +uv +nw Ji BX Ji @@ -35323,15 +36484,15 @@ Za Ji BX Ji -If -xK -Es -Es -pd -Es -Es -xK -If +nw +uv +wM +wM +xb +DZ +wM +NW +nw Ji BX Ji @@ -35516,17 +36677,17 @@ Za Za SN EM -If -If -xK -xK -xK -xK -xK -xK -xK -If -If +nw +nw +uv +uv +uv +uv +uv +uv +uv +nw +nw OS bE Za @@ -35710,17 +36871,17 @@ Za Za Za Za -If -If -Es -Es -Es -Es -Es -Es -Es -If -If +nw +nw +wM +wM +wM +wM +wM +wM +wM +nw +nw Za Za Za @@ -35904,17 +37065,17 @@ Za Za Za Za -If -If -If -If -If -If -If -If -If -If -If +nw +nw +nw +nw +wM +wM +wM +nw +nw +nw +nw Za Za Za @@ -36100,13 +37261,13 @@ Za Za Za Za -If -If -If -If -If -If -IG +nw +nw +wM +wM +wM +nw +nw Za Za Za @@ -36295,11 +37456,11 @@ Za Za Za Za -kL -kL -kL -kL -Za +nw +wM +wM +wM +nw Za Za Za @@ -36489,11 +37650,11 @@ Za Za Za Za -kL -kL -kL -kL -Za +nw +nw +nw +nw +nw Za Za Za @@ -36671,23 +37832,23 @@ Za Za Za Za +lP +lP +lP +lP +so +lP +lP Za Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -kL -kL -kL -kL -Za +nw +nw +nw +nw +nw Za Za Za @@ -36865,23 +38026,23 @@ Za Za Za Za +tJ +Vm +Mx +au +xS +TS +Pa Za Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -kL -kL -kL -kL -Za +nw +nw +nw +nw +nw Za Za Za @@ -37059,22 +38220,22 @@ Za Za Za Za +lP +Re +WT +LP +NV +gi +ao Za Za Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -kL -kL -Za +nw +nw +nw Za Za Za @@ -37253,22 +38414,22 @@ Za Za Za Za +lP +Oc +pp +vx +Vy +Sj +Pa Za Za Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -kL -kL -Za +nw +nw +nw Za Za Za @@ -37447,22 +38608,22 @@ Za Za Za Za +lP +Mw +Ew +Ew +zt +hX +Pa Za Za Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -kL -kL -Za +nw +nw +nw Za Za Za @@ -37641,13 +38802,13 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za +lP +lP +lP +lP +lP +lP +Pa Za Za Za @@ -38421,28 +39582,28 @@ Za Za Za Za -kL -YS -tX -YS -kL -Za -Za -Za -hM -cB -cB -hM -ra -TU -TU -ra -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -38615,28 +39776,28 @@ Za Za Za Za -kL -dl -dl -dl -kL -Za -Za -Za -hM -hM -dl -hM -hM -hM -hM -hM -Za -kL -kL -kL -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -38809,28 +39970,28 @@ Za Za Za Za -kL -dl -dl -dl -kL -Za -Za -Za -hM -dl -dl -dl -dl -dl -dl -hM -Za -gz -gz -kL -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -39003,28 +40164,28 @@ Za Za Za Za -kL -dl -dl -dl -kL -Za -Za -Za -hM -dl -dl -dl -dl -dl -dl -wk -Za -gz -gz -kL -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -39197,28 +40358,28 @@ Za Za Za Za -kL -OO -zD -OO -kL -Za -Za -Za -sZ -dl -dl -dl -dl -dl -dl -wk -Za -gz -gz -kL -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -39391,28 +40552,28 @@ Za Za Za Za -sZ -OO -zD -OO -kL -Za -Za -Za -hM -OO -OO -OO -OO -OO -OO -hM -Za -gz -gz -kL -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -39585,28 +40746,28 @@ Za Za Za Za -zD -zD -zD -OO -kL -Za -Za -Za -hM -OO -OO -OO -OO -OO -OO -hM -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -39779,28 +40940,28 @@ Za Za Za Za -sZ -OO -OO -OO -kL -Za -Za -Za -hM -OO -OO -OO -OO -OO -OO -hM -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -39973,28 +41134,28 @@ Za Za Za Za -kL -kL -kL -kL -kL -Za -Za -Za -hM -OO -OO -OO -OO -OO -OO -sZ -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -40167,28 +41328,28 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -hM -OO -OO -OO -OO -OO -OO -sZ -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -40361,28 +41522,28 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -hM -OO -OO -OO -OO -OO -OO -hM -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -40555,28 +41716,28 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -hM -OO -OO -OO -OO -OO -OO -hM -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -40749,28 +41910,28 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -hM -hM -hM -sZ -sZ -hM -hM -hM -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za @@ -40943,28 +42104,28 @@ Za Za Za Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za -Za +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz +Dz Za Za Za diff --git a/maps/generic/map_data.dm b/maps/generic/map_data.dm index 524c459f3f6..27f0ec4a5cc 100644 --- a/maps/generic/map_data.dm +++ b/maps/generic/map_data.dm @@ -17,6 +17,11 @@ /obj/landmark/map_data/west_plains height = 4 +/** Euthenia */ + +/obj/landmark/map_data/euthenia + height = 5 + // See beach.dm for more details on this. Placeholder for now to stop compiling issues -Bloop /obj/away_mission_init/beachcave name = "away mission initializer - beachcave"