diff --git a/code/__DEFINES/shuttles.dm b/code/__DEFINES/shuttles.dm index a6d383e771..4c9e149ae4 100644 --- a/code/__DEFINES/shuttles.dm +++ b/code/__DEFINES/shuttles.dm @@ -136,11 +136,13 @@ #define ESCAPE_SHUTTLE_WEST "escape_shuttle_w" #define ESCAPE_SHUTTLE_NORTH "escape_shuttle_n" #define ESCAPE_SHUTTLE_SOUTH "escape_shuttle_s" +#define ESCAPE_SHUTTLE_BREACH "breacher_shuttle" #define ESCAPE_SHUTTLE_WEST_PREFIX "escape_shuttle_w" #define ESCAPE_SHUTTLE_EAST_PREFIX "escape_shuttle_e" #define ESCAPE_SHUTTLE_NORTH_PREFIX "escape_shuttle_n" #define ESCAPE_SHUTTLE_SOUTH_PREFIX "escape_shuttle_s" +#define ESCAPE_SHUTTLE_BREACH_PREFIX "breacher_shuttle" #define ESCAPE_SHUTTLE_DOCK_PREFIX "almayer-hangar-escape-shuttle-" diff --git a/code/game/area/shuttles.dm b/code/game/area/shuttles.dm index 62c42406e7..614367a01e 100644 --- a/code/game/area/shuttles.dm +++ b/code/game/area/shuttles.dm @@ -74,6 +74,10 @@ icon = 'icons/turf/area_almayer.dmi' icon_state = "lifeboat" +/area/shuttle/breach + icon = 'icons/turf/area_almayer.dmi' + icon_state = "lifeboat" + /area/shuttle/escape_pod/afterShuttleMove(new_parallax_dir) . = ..() playsound_area(src, 'sound/effects/escape_pod_launch.ogg', 50, 1) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index e0f481a7e4..b6778a9956 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1962,3 +1962,124 @@ f90_shotgun_barrel.Attach(src) update_attachable(f90_shotgun.slot) update_attachable(f90_shotgun_barrel.slot) + +//M14 Modular Rifle + +/obj/item/weapon/gun/rifle/m14 + name = "\improper M14 modular rifle" + desc = "The M14 modular rifle is a designated marksman rifle in service with the USCM. Sporting a bullpup configuration, the M4RA battle rifle is perfect for reconnaissance and fire support teams.\nTakes *only* non-high-velocity M14 magazines." + icon_state = "m4ra" + item_state = "m4ra" + fire_sound = 'sound/weapons/gun_m4ra.ogg' + reload_sound = 'sound/weapons/handling/l42_reload.ogg' + unload_sound = 'sound/weapons/handling/l42_unload.ogg' + current_mag = /obj/item/ammo_magazine/rifle/m14 + attachable_allowed = list( + /obj/item/attachable/suppressor, + /obj/item/attachable/bayonet, + /obj/item/attachable/bayonet/upp, + /obj/item/attachable/bayonet/co2, + /obj/item/attachable/reddot, + /obj/item/attachable/reflex, + /obj/item/attachable/flashlight, + /obj/item/attachable/extended_barrel, + /obj/item/attachable/magnetic_harness, + /obj/item/attachable/bipod, + /obj/item/attachable/verticalgrip, + /obj/item/attachable/angledgrip, + /obj/item/attachable/lasersight, + /obj/item/attachable/scope, + /obj/item/attachable/scope/mini, + /obj/item/attachable/scope/mini_iff, + /obj/item/attachable/flashlight/grip, + ) + + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER + wield_delay = WIELD_DELAY_VERY_FAST + aim_slowdown = SLOWDOWN_ADS_QUICK + map_specific_decoration = TRUE + +// Sprite offsets need to be configured - murphy +/obj/item/weapon/gun/rifle/m14/set_gun_attachment_offsets() + attachable_offset = list("muzzle_x" = 43, "muzzle_y" = 17,"rail_x" = 22, "rail_y" = 21, "under_x" = 30, "under_y" = 13, "stock_x" = 24, "stock_y" = 13, "special_x" = 37, "special_y" = 16) + +/obj/item/weapon/gun/rifle/m14/set_gun_config_values() + ..() + set_fire_delay(FIRE_DELAY_TIER_9) + set_burst_amount(0) + accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_5 + accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_4 + damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_8 + recoil_unwielded = RECOIL_AMOUNT_TIER_4 + damage_falloff_mult = 0 + scatter = SCATTER_AMOUNT_TIER_8 + +/obj/item/weapon/gun/rifle/m14/handle_starting_attachment() + ..() + var/obj/item/attachable/m4ra_barrel/integrated = new(src) + integrated.flags_attach_features &= ~ATTACH_REMOVABLE + integrated.Attach(src) + update_attachable(integrated.slot) + +/obj/item/weapon/gun/rifle/m14/training + current_mag = /obj/item/ammo_magazine/rifle/m14/rubber + +// pve - kinda weird icon usage, uses urban M4RA sprite w/ custom attachie sprite +/obj/item/weapon/gun/rifle/m14/pve + name = "\improper M4RA-R2 battle rifle" + desc = "The M4RA-R2 is a souped-up M4RA, the result of an ARMAT upgrade program that didn't pan out in huge numbers. Its main attraction is the ability to chamber and fire devastating A19 depleted uranium rounds, infamous for their overpenetration abilities and toxic effects on anyone unfortunate enough to survive a hit. The thicker barrel, of course, also has no issue with non-HV ammo." + desc_lore = "The USCMC was not terribly enthusiastic about unproven hand-held plasma weaponry. Before the XM99A was eventually adopted into use, the USCMC instead sought out a traditional squad-portable, precision, armor-piercing weapon, and contracted ARMAT to upgrade their M4RA platform to be capable of firing advanced AP rounds. They succeeded- sort of.

The R2 was rejected for several reasons. It's a killer, but also a piece of junk. It kicks hard enough that precision sights simply don't stay zeroed, and its oversized muzzle-device extends an already long barrel-length. Additionally, A19 ammo, already expensive, was driven to absurd highs by the ammunition's specs. Depleted uranium is expensive...and cutting the service life of the M4RA's barrel in half is even more expensive.

Those that were made, however, are still service-ready and were issued where the XM99A was unavailable due to its production only just starting." + icon = 'icons/obj/items/weapons/guns/guns_by_map/urban/guns_obj.dmi' + icon_state = "m4ra" + item_state = "m4ra" + fire_sound = 'sound/weapons/gun_m4ra.ogg' + reload_sound = 'sound/weapons/handling/l42_reload.ogg' + unload_sound = 'sound/weapons/handling/l42_unload.ogg' + + current_mag = /obj/item/ammo_magazine/rifle/m14/pve + attachable_allowed = list( + /obj/item/attachable/reddot, + /obj/item/attachable/reflex, + /obj/item/attachable/flashlight, + /obj/item/attachable/extended_barrel, + /obj/item/attachable/magnetic_harness, + /obj/item/attachable/bipod, + /obj/item/attachable/verticalgrip, + /obj/item/attachable/angledgrip, + /obj/item/attachable/lasersight, + /obj/item/attachable/scope, + /obj/item/attachable/scope/mini, + /obj/item/attachable/scope/mini_iff, + /obj/item/attachable/flashlight/grip, + ) + + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER + wield_delay = WIELD_DELAY_VERY_FAST + aim_slowdown = SLOWDOWN_ADS_QUICK + map_specific_decoration = FALSE + +/obj/item/weapon/gun/rifle/m14/pve/set_gun_config_values() + ..() + set_fire_delay(FIRE_DELAY_TIER_4) + recoil_unwielded = RECOIL_AMOUNT_TIER_1 + recoil = RECOIL_AMOUNT_TIER_3 + + +// obnoxiously enough, need to do this manually... + item_icons = list( + WEAR_L_HAND = 'icons/obj/items/weapons/guns/guns_by_map/urban/guns_lefthand.dmi', + WEAR_R_HAND = 'icons/obj/items/weapons/guns/guns_by_map/urban/guns_righthand.dmi', + WEAR_BACK = 'icons/obj/items/weapons/guns/guns_by_map/urban/back.dmi' + ) + +/obj/item/weapon/gun/rifle/m14/pve/handle_starting_attachment() + ..() + var/obj/item/attachable/m4ra_barrel/pve/integrated = new(src) + integrated.flags_attach_features &= ~ATTACH_REMOVABLE + var/obj/item/attachable/old_barrel = attachments[integrated.slot] + if(old_barrel) + old_barrel.Detach(detaching_gub = src, drop_attachment = FALSE) + qdel(old_barrel) + integrated.Attach(src) + update_attachable(integrated.slot) + diff --git a/code/modules/shuttle/computers/breacher_computer.dm b/code/modules/shuttle/computers/breacher_computer.dm new file mode 100644 index 0000000000..92474490ca --- /dev/null +++ b/code/modules/shuttle/computers/breacher_computer.dm @@ -0,0 +1,233 @@ +#define STATE_IDLE 4 //Pod is idle, not ready to launch. +#define STATE_BROKEN 5 //Pod failed to launch, is now broken. +#define STATE_READY 6 //Pod is armed and ready to go. +#define STATE_DELAYED 7 //Pod is being delayed from launching automatically. +#define STATE_LAUNCHING 8 //Pod is about to launch. +#define STATE_LAUNCHED 9 //Pod has successfully launched. + +/obj/structure/machinery/computer/shuttle/breacher_pod_panel + name = "breacher shuttle controller" + icon = 'icons/obj/structures/machinery/airlock_machines.dmi' + icon_state = "airlock_control_standby" + unslashable = TRUE + unacidable = TRUE + var/pod_state = STATE_IDLE + var/launch_without_evac = FALSE + +/obj/structure/machinery/computer/shuttle/breacher_pod_panel/ex_act(severity) + return FALSE + +// TGUI stufferinos \\ + +/obj/structure/machinery/computer/shuttle/breacher_pod_panel/attack_hand(mob/user) + if(..()) + return + tgui_interact(user) + +/obj/structure/machinery/computer/shuttle/breacher_pod_panel/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "EscapePodConsole", "[src.name]") + ui.open() + +/obj/structure/machinery/computer/shuttle/breacher_pod_panel/ui_state(mob/user) + return GLOB.not_incapacitated_and_adjacent_state + +/obj/structure/machinery/computer/shuttle/breacher_pod_panel/ui_status(mob/user, datum/ui_state/state) + . = ..() + if(inoperable()) + return UI_CLOSE + +/obj/structure/machinery/computer/shuttle/breacher_pod_panel/ui_data(mob/user) + . = list() + var/obj/docking_port/mobile/crashable/breacher/shuttle = SSshuttle.getShuttle(shuttleId) + + if(pod_state == STATE_IDLE && shuttle.evac_set) + pod_state = STATE_READY + + .["docking_status"] = pod_state + switch(shuttle.mode) + if(SHUTTLE_CRASHED) + .["docking_status"] = STATE_BROKEN + if(SHUTTLE_IGNITING) + .["docking_status"] = STATE_LAUNCHING + if(SHUTTLE_CALL) + .["docking_status"] = STATE_LAUNCHED + var/obj/structure/machinery/door/door = shuttle.door_handler.doors[1] + .["door_state"] = door.density + .["door_lock"] = shuttle.door_handler.status == SHUTTLE_DOOR_LOCKED + .["can_delay"] = TRUE//launch_status[2] + .["launch_without_evac"] = launch_without_evac + + +/obj/structure/machinery/computer/shuttle/breacher_pod_panel/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + + var/obj/docking_port/mobile/crashable/breacher/shuttle = SSshuttle.getShuttle(shuttleId) + switch(action) + if("force_launch") + if(!launch_without_evac && pod_state != STATE_READY && pod_state != STATE_DELAYED) + return + + shuttle.evac_launch() + pod_state = STATE_LAUNCHING + . = TRUE + if("delay_launch") + pod_state = pod_state == STATE_DELAYED ? STATE_READY : STATE_DELAYED + . = TRUE + if("lock_door") + var/obj/structure/machinery/door/target_door = shuttle.door_handler.doors[1] + if(target_door.density) //Closed + shuttle.door_handler.control_doors("force-unlock") + else //Open + shuttle.door_handler.control_doors("force-lock-launch") + . = TRUE + +/obj/structure/machinery/computer/shuttle/breacher_pod_panel/liaison + launch_without_evac = TRUE + +//========================================================================================= +//================================Evacuation Sleeper======================================= +//========================================================================================= + +/obj/structure/machinery/cryopod/evacuation/ex_act(severity) + return FALSE + +/obj/structure/machinery/cryopod/evacuation/attackby(obj/item/grab/G, mob/user) + if(istype(G)) + if(being_forced) + to_chat(user, SPAN_WARNING("There's something forcing it open!")) + return FALSE + + if(occupant) + to_chat(user, SPAN_WARNING("There is someone in there already!")) + return FALSE + + if(dock_state < STATE_READY) + to_chat(user, SPAN_WARNING("The cryo pod is not responding to commands!")) + return FALSE + + var/mob/living/carbon/human/M = G.grabbed_thing + if(!istype(M)) + return FALSE + + visible_message(SPAN_WARNING("[user] starts putting [M.name] into the cryo pod."), null, null, 3) + + if(do_after(user, 20, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + if(!M || !G || !G.grabbed_thing || !G.grabbed_thing.loc || G.grabbed_thing != M) + return FALSE + move_mob_inside(M) + +/obj/structure/machinery/cryopod/evacuation/eject() + set name = "Eject Pod" + set category = "Object" + set src in oview(1) + + if(!occupant || !usr.stat || usr.is_mob_restrained()) + return FALSE + + if(occupant) //Once you're in, you cannot exit, and outside forces cannot eject you. + //The occupant is actually automatically ejected once the evac is canceled. + if(occupant != usr) to_chat(usr, SPAN_WARNING("You are unable to eject the occupant unless the evacuation is canceled.")) + + add_fingerprint(usr) + +/obj/structure/machinery/cryopod/evacuation/go_out() //When the system ejects the occupant. + if(occupant) + occupant.forceMove(get_turf(src)) + occupant.in_stasis = FALSE + occupant = null + icon_state = orient_right ? "body_scanner_open-r" : "body_scanner_open" + +/obj/structure/machinery/cryopod/evacuation/move_inside() + set name = "Enter Pod" + set category = "Object" + set src in oview(1) + + var/mob/living/carbon/human/user = usr + + if(!istype(user) || user.stat || user.is_mob_restrained()) + return FALSE + + if(being_forced) + to_chat(user, SPAN_WARNING("You can't enter when it's being forced open!")) + return FALSE + + if(occupant) + to_chat(user, SPAN_WARNING("The cryogenic pod is already in use! You will need to find another.")) + return FALSE + + if(dock_state < STATE_READY) + to_chat(user, SPAN_WARNING("The cryo pod is not responding to commands!")) + return FALSE + + visible_message(SPAN_WARNING("[user] starts climbing into the cryo pod."), null, null, 3) + + if(do_after(user, 20, INTERRUPT_NO_NEEDHAND, BUSY_ICON_GENERIC)) + user.stop_pulling() + move_mob_inside(user) + +/obj/structure/machinery/cryopod/evacuation/attack_alien(mob/living/carbon/xenomorph/user) + if(being_forced) + to_chat(user, SPAN_XENOWARNING("It's being forced open already!")) + return XENO_NO_DELAY_ACTION + + if(!occupant) + to_chat(user, SPAN_XENOWARNING("There is nothing of interest in there.")) + return XENO_NO_DELAY_ACTION + + being_forced = !being_forced + xeno_attack_delay(user) + visible_message(SPAN_WARNING("[user] begins to pry \the [src]'s cover!"), null, null, 3) + playsound(src,'sound/effects/metal_creaking.ogg', 25, 1) + if(do_after(user, 20, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) go_out() //Force the occupant out. + being_forced = !being_forced + return XENO_NO_DELAY_ACTION + +/obj/structure/machinery/door/airlock/evacuation/Initialize() + . = ..() + if(start_locked) + INVOKE_ASYNC(src, PROC_REF(lock)) + +/obj/structure/machinery/door/airlock/evacuation/Destroy() + if(linked_shuttle) + linked_shuttle.mode = SHUTTLE_CRASHED + linked_shuttle.door_handler.doors -= list(src) + . = ..() + + //Can't interact with them, mostly to prevent grief and meta. +/obj/structure/machinery/door/airlock/evacuation/Collided() + return FALSE + +/obj/structure/machinery/door/airlock/evacuation/attackby() + return FALSE + +/obj/structure/machinery/door/airlock/evacuation/attack_hand() + return FALSE + +/obj/structure/machinery/door/airlock/evacuation/attack_alien(mob/living/carbon/xenomorph/xeno) + if(!density || unslashable) //doors become slashable after evac is called + return FALSE + + if(xeno.claw_type < CLAW_TYPE_SHARP) + to_chat(xeno, SPAN_WARNING("[src] is bolted down tight.")) + return XENO_NO_DELAY_ACTION + + xeno.animation_attack_on(src) + playsound(src, 'sound/effects/metalhit.ogg', 25, 1) + take_damage(HEALTH_DOOR / XENO_HITS_TO_DESTROY_BOLTED_DOOR) + return XENO_ATTACK_ACTION + + +/obj/structure/machinery/door/airlock/evacuation/attack_remote() + return FALSE + +/obj/structure/machinery/door/airlock/evacuation/get_applying_acid_time() //you can melt evacuation doors only when they are manually locked + if(!density) + return -1 + return ..() + +/obj/structure/machinery/door/airlock/evacuation/liaison + start_locked = FALSE diff --git a/code/modules/shuttle/shuttles/crashable/breacher.dm b/code/modules/shuttle/shuttles/crashable/breacher.dm new file mode 100644 index 0000000000..6209de4d03 --- /dev/null +++ b/code/modules/shuttle/shuttles/crashable/breacher.dm @@ -0,0 +1,134 @@ +/obj/docking_port/mobile/crashable/breacher + name = "Breacher Shuttle" + id = ESCAPE_SHUTTLE + area_type = /area/shuttle/breach + width = 5 + height = 13 + preferred_direction = SOUTH + rechargeTime = SHUTTLE_RECHARGE + ignitionTime = 8 SECONDS + ignition_sound = 'sound/effects/escape_pod_warmup.ogg' + /// The % chance of the escape pod crashing into the groundmap before lifeboats leaving + var/early_crash_land_chance = 75 + /// The % chance of the escape pod crashing into the groundmap + var/crash_land_chance = 0 + /// How many people can be in the escape pod before it crashes + var/max_capacity = 3 + + var/datum/door_controller/single/door_handler = new() + var/launched = FALSE + var/evac_set = FALSE + +/obj/docking_port/mobile/crashable/breacher/Initialize(mapload) + . = ..(mapload) + for(var/place in shuttle_areas) + for(var/obj/structure/machinery/door/airlock/evacuation/air in place) + door_handler.doors += list(air) + air.breakable = FALSE + air.indestructible = TRUE + air.unacidable = TRUE + air.linked_shuttle = src + +/obj/docking_port/mobile/crashable/breacher/proc/cancel_evac() + door_handler.control_doors("force-unlock") + evac_set = FALSE + + var/obj/structure/machinery/computer/shuttle/escape_pod_panel/panel = getControlConsole() + if(panel.pod_state != STATE_READY && panel.pod_state != STATE_DELAYED) + return + panel.pod_state = STATE_IDLE + for(var/area/interior_area in shuttle_areas) + for(var/obj/structure/machinery/cryopod/evacuation/cryotube in interior_area) + cryotube.dock_state = STATE_IDLE + +/obj/docking_port/mobile/crashable/breacher/proc/prepare_evac() + door_handler.control_doors("force-unlock") + evac_set = TRUE + for(var/area/interior_area in shuttle_areas) + for(var/obj/structure/machinery/cryopod/evacuation/cryotube in interior_area) + cryotube.dock_state = STATE_READY + for(var/obj/structure/machinery/door/air in door_handler.doors) + air.breakable = TRUE + air.indestructible = FALSE + air.unslashable = FALSE + air.unacidable = FALSE + +/obj/docking_port/mobile/crashable/breacher/evac_launch() + . = ..() + + if(mode == SHUTTLE_CRASHED) + return + + if(launched) + return + + var/obj/structure/machinery/computer/shuttle/escape_pod_panel/panel = getControlConsole() + if(panel.pod_state == STATE_DELAYED) + return + + door_handler.control_doors("force-lock-launch") + var/occupant_count = 0 + var/list/cryos = list() + for(var/area/interior_area in shuttle_areas) + for(var/mob/living/occupant in interior_area) + occupant_count++ + for(var/obj/structure/machinery/cryopod/evacuation/cryotube in interior_area) + cryos += list(cryotube) + if (occupant_count > max_capacity) + playsound(src,'sound/effects/escape_pod_warmup.ogg', 50, 1) + sleep(31) + var/turf/sploded = return_center_turf() + cell_explosion(sploded, 100, 20, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, create_cause_data("escape pod malfunction")) //Clears out walls + sleep(25) + mode = SHUTTLE_CRASHED + for(var/obj/structure/machinery/cryopod/evacuation/cryotube in cryos) + cryotube.go_out() + door_handler.control_doors("force-unlock") + return + + set_mode(SHUTTLE_IGNITING) + on_ignition() + setTimer(ignitionTime) + launched = TRUE + + if(!crash_land) // so doors won't break in space + for(var/obj/structure/machinery/door/air in door_handler.doors) + for(var/obj/effect/xenomorph/acid/acid in air.loc) + if(acid.acid_t == air) + qdel(acid) + air.breakable = FALSE + air.indestructible = TRUE + air.unacidable = TRUE + +/obj/docking_port/mobile/crashable/breacher/crash_check() + . = ..() + + if(prob((SShijack.hijack_status >= HIJACK_OBJECTIVES_COMPLETE ? crash_land_chance : early_crash_land_chance))) + return TRUE + +/obj/docking_port/mobile/crashable/breacher/open_doors() + . = ..() + + door_handler.control_doors("force-unlock") + +/obj/docking_port/mobile/crashable/breacher/afterShuttleMove(turf/oldT, list/movement_force, shuttle_dir, shuttle_preferred_direction, move_dir, rotation) + . = ..() + playsound(src,'sound/effects/escape_pod_launch.ogg', 50, 1) + +/obj/docking_port/mobile/crashable/breacher/b + id = ESCAPE_SHUTTLE_BREACH + width = 5 + height = 13 + +/obj/docking_port/stationary/breacher + name = "Breacher Dock" + +/obj/docking_port/stationary/breacher/b + id = ESCAPE_SHUTTLE_BREACH_PREFIX + roundstart_template = /datum/map_template/shuttle/breacher_shuttle + width = 5 + height = 13 + +/datum/map_template/shuttle/breacher_shuttle + name = "Breacher Shuttle" + shuttle_id = ESCAPE_SHUTTLE_BREACH diff --git a/colonialmarines.dme b/colonialmarines.dme index e403f9aff4..896d80c19c 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -2320,6 +2320,7 @@ #include "code\modules\shuttle\shuttle.dm" #include "code\modules\shuttle\shuttle_rotate.dm" #include "code\modules\shuttle\vehicle_elevator.dm" +#include "code\modules\shuttle\computers\breacher_computer.dm" #include "code\modules\shuttle\computers\dropship_computer.dm" #include "code\modules\shuttle\computers\escape_pod_computer.dm" #include "code\modules\shuttle\computers\trijent_elevator_control.dm" @@ -2327,6 +2328,7 @@ #include "code\modules\shuttle\shuttles\ert.dm" #include "code\modules\shuttle\shuttles\shipmap_elevator.dm" #include "code\modules\shuttle\shuttles\trijent_elevator.dm" +#include "code\modules\shuttle\shuttles\crashable\breacher.dm" #include "code\modules\shuttle\shuttles\crashable\crashable.dm" #include "code\modules\shuttle\shuttles\crashable\escape_shuttle.dm" #include "code\modules\shuttle\shuttles\crashable\lifeboats.dm" diff --git a/icons/turf/dropship4.dmi b/icons/turf/dropship4.dmi index 4452412254..7e6b56b099 100644 Binary files a/icons/turf/dropship4.dmi and b/icons/turf/dropship4.dmi differ diff --git a/map_config/shipmaps.txt b/map_config/shipmaps.txt index fd7e4a932e..115fd3e945 100644 --- a/map_config/shipmaps.txt +++ b/map_config/shipmaps.txt @@ -17,6 +17,9 @@ map almayer endmap map golden_arrow +endmap + +map palisade default endmap diff --git a/maps/map_files/Palisade/Palisade.dmm b/maps/map_files/Palisade/Palisade.dmm new file mode 100644 index 0000000000..a77f6f8f1d --- /dev/null +++ b/maps/map_files/Palisade/Palisade.dmm @@ -0,0 +1,1659 @@ +"aa" = (/obj/structure/closet/secure_closet/staff_officer/armory/shotgun,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/shared_office) +"ac" = (/obj/structure/machinery/computer/crew,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "silverfull"},/area/golden_arrow/platoon_commander_rooms) +"ad" = (/obj/structure/bed/bedroll{name = "cat bed"; desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; pixel_y = 0},/mob/living/simple_animal/cat/Jones{dir = 8},/obj/structure/machinery/firealarm{pixel_y = 28; pixel_x = -1},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"ae" = (/obj/structure/machinery/landinglight/ds1/delaythree,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ag" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"ah" = (/obj/structure/machinery/door/airlock/almayer/medical{dir = 1; id_tag = "or03"; name = "Operating Theatre 3"},/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 2},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"ak" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"an" = (/obj/structure/machinery/cryopod/right{pixel_y = 6},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/medical) +"ap" = (/obj/structure/flora/pottedplant{icon_state = "pottedplant_22"; pixel_y = 8},/obj/structure/machinery/camera/autoname/almayer{dir = 1; name = "ship-grade camera"},/obj/structure/machinery/light,/turf/open/floor/almayer{dir = 5; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"aq" = (/obj/structure/machinery/cryopod{layer = 3.1; pixel_y = 13},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"ar" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"at" = (/obj/structure/disposalpipe/segment,/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/platform{dir = 4; layer = 2.7},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"av" = (/obj/structure/machinery/light{dir = 1},/obj/structure/surface/table/almayer,/obj/item/storage/briefcase/inflatable{pixel_y = 10},/obj/item/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 5},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"aw" = (/obj/structure/machinery/cm_vending/sorted/medical,/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"az" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/power/smes/buildable,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"aK" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/oil,/obj/effect/vehicle_spawner/apc_movie/fixed{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"aM" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/reagent_container/food/snacks/pastatomato{pixel_y = 3},/obj/item/device/flashlight/lamp/candelabra{pixel_y = 18; pixel_x = -5; randpixel = 0},/obj/item/reagent_container/food/drinks/bottle/wine{pixel_y = 19; pixel_x = 7; base_pixel_x = 2; randpixel = 0},/turf/open/floor/prison/chapel_carpet,/area/golden_arrow/shared_office) +"aN" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"aO" = (/turf/closed/wall/almayer/reinforced,/area/golden_arrow/engineering) +"aQ" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/computer/crew/alt{dir = 8},/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"aR" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/computer/med_data/laptop,/turf/open/floor/almayer{icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"aT" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"aU" = (/obj/structure/surface/rack,/obj/item/storage/box/guncase/m41aMK1AP,/obj/item/storage/box/guncase/m41aMK1AP,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"aV" = (/obj/structure/machinery/cryopod/right{pixel_y = 6},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"aY" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"ba" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"bb" = (/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"bd" = (/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{req_one_access = list()},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"be" = (/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"bf" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"bi" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"bj" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 1},/obj/structure/machinery/gear{id = "supply_elevator_gear"},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"bl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster{desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; icon_state = "poster16"; layer = 3.3; name = "'Miss July' Pinup"; pixel_y = 29; serial_number = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"bo" = (/turf/open/floor/almayer{icon_state = "black"},/area/golden_arrow/supply) +"bp" = (/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice3"; pixel_x = 16; pixel_y = -15},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"bq" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/machinery/door/poddoor/railing{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"bu" = (/obj/structure/disposalpipe/segment,/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/platform{dir = 4; layer = 2.7},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"bw" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) +"bx" = (/turf/closed/wall/almayer,/area/golden_arrow/dorms) +"bz" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"bA" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"bD" = (/obj/structure/surface/table/reinforced/prison,/obj/item/device/flashlight/lamp,/obj/item/device/binoculars,/obj/structure/machinery/light/small{dir = 1},/obj/structure/machinery/computer/cameras/almayer_network/vehicle{pixel_y = 10},/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/platoon_commander_rooms) +"bJ" = (/obj/item/reagent_container/glass/beaker/bluespace,/obj/structure/machinery/cm_vending/gear/medic_chemical,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"bK" = (/obj/structure/largecrate/supply/weapons/hpr,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"bL" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"bR" = (/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/hangar) +"bT" = (/obj/structure/machinery/landinglight/ds1/delaytwo,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"bU" = (/obj/effect/decal/warning_stripes{icon_state = "S"; pixel_y = 1},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"bV" = (/obj/structure/surface/table/reinforced/black,/obj/item/folder/blue{pixel_x = -6; pixel_y = 6},/turf/open/floor/carpet{desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; name = "\improper carpet"},/area/golden_arrow/shared_office) +"bW" = (/obj/structure/filingcabinet/filingcabinet{density = 0; layer = 2.9; pixel_x = 7; pixel_y = 16},/obj/structure/filingcabinet/filingcabinet{density = 0; layer = 2.9; pixel_x = -8; pixel_y = 16},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/reagent_dispensers/fueltank/custom,/turf/open/floor/almayer{icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"bY" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"ca" = (/obj/structure/window/framed/almayer/white,/obj/structure/machinery/door/firedoor/border_only/almayer,/turf/open/floor/plating,/area/golden_arrow/medical) +"cb" = (/turf/open/floor/prison/chapel_carpet,/area/golden_arrow/shared_office) +"cc" = (/obj/structure/bed/chair,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"ce" = (/obj/structure/machinery/door_control/brbutton{id = "apc1blastdoor"; name = "vehicle bay blast door control"; pixel_y = 28; pixel_x = -8},/obj/structure/machinery/door_control/brbutton{id = "apc2blastdoor"; name = "vehicle bay blast door control"; pixel_y = 28; pixel_x = 8},/turf/open/floor/almayer{dir = 8; icon_state = "blackcorner"},/area/golden_arrow/supply) +"cg" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light,/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"ck" = (/obj/structure/machinery/door/airlock/almayer/command{name = "\improper Commanding Officer's Mess"; dir = 2},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/shared_office) +"cl" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"cm" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"cq" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/closet/secure_closet/surgical{pixel_x = -30},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer/research/containment/corner{dir = 4},/area/golden_arrow/medical) +"ct" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"cv" = (/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{req_access = list(); req_one_access_txt = "8;12;39;40"},/obj/structure/gun_rack/m41,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) +"cw" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"cz" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"cA" = (/obj/structure/machinery/light,/obj/structure/flora/pottedplant{icon_state = "pottedplant_21"; pixel_y = 3},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"cC" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"cD" = (/obj/structure/machinery/light,/obj/structure/machinery/cm_vending/gear/commanding_officer{pixel_y = 0},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/platoon_commander_rooms) +"cE" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"cH" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"cL" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"cT" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"cV" = (/obj/effect/decal/cleanable/dirt,/obj/structure/largecrate/random/case/small,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/medical) +"cX" = (/turf/open/floor/almayer/research/containment/corner_var1{icon_state = "containment_corner_variant_2"},/area/golden_arrow/medical) +"dd" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"dg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"di" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"dj" = (/obj/structure/machinery/door/poddoor/railing{dir = 4; id = "supply_elevator_railing"},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/supply) +"dk" = (/obj/structure/surface/table/reinforced/black,/obj/item/paper{pixel_x = -2; pixel_y = 7},/obj/item/paper{pixel_x = 3; pixel_y = 3},/obj/item/paper/crumpled{pixel_x = 6; pixel_y = 3},/obj/item/paper/crumpled{pixel_x = -6; pixel_y = 2},/obj/item/tool/lighter,/obj/structure/sign/poster/hero/voteno{pixel_y = 32; icon_state = "poster4"; name = "MurphyMajor"; desc = "The Major of the 'Crimson Crows', Commanding Officer Steve Murphy. 'His commitment exhibited the highest traditions of service in the USCMC. Nobody could ever reach his influence, many tried.' Published by Stephanie Muppy who is not in any way correlated to Steve Murphy."},/turf/open/floor/strata{desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; icon = 'icons/turf/floors/floors.dmi'; icon_state = "wood"},/area/golden_arrow/shared_office) +"dl" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/door/window/eastright{access_modified = 1; dir = 8; req_access_txt = "8"},/obj/structure/machinery/door/window/eastleft{req_access_txt = "8"},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"dn" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair/comfy/delta{dir = 1},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/briefing) +"do" = (/turf/closed/wall/almayer,/area/golden_arrow/shared_office) +"dq" = (/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{req_access = list(); req_one_access_txt = "8;12;39;40"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) +"dt" = (/obj/structure/machinery/cm_vending/sorted/medical/marinemed,/turf/open/floor/almayer{icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"du" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/machinery/computer/crew/alt{dir = 4; pixel_x = -10},/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"dv" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"dx" = (/obj/structure/machinery/door/poddoor/shutters/almayer{dir = 4; id = "W_Containment Cell 3"; name = "\improper Containment Cell 5"; unacidable = 1},/obj/structure/machinery/door/poddoor/almayer/biohazard/white{dir = 4},/turf/closed/wall/almayer/research/containment/wall/purple{dir = 4},/area/golden_arrow/medical) +"dy" = (/obj/effect/landmark/start/marine/tl/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"dz" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/hangar) +"dA" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"dC" = (/obj/structure/surface/rack,/obj/item/storage/box/guncase/xm88,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"dD" = (/obj/effect/landmark/start/marine/smartgunner/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"dE" = (/obj/structure/window/framed/almayer/hull,/turf/closed/wall/almayer/outer,/area/golden_arrow/dorms) +"dF" = (/turf/open/floor/almayer{icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"dG" = (/obj/structure/machinery/light,/obj/structure/largecrate/supply/ammo/m41amk1/forecon,/obj/structure/largecrate/supply/ammo/m41amk1/forecon{pixel_x = 3; pixel_y = 11},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"dH" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"dJ" = (/obj/structure/disposalpipe/segment,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"dK" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; layer = 2.5; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"dL" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/structure/machinery/floodlight/landing,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"dO" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/door/poddoor/almayer/open{dir = 4; name = "\improper Storage Bay One Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"dP" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"dS" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"dT" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/reagent_container/food/drinks/bottle/whiskey{pixel_x = -5; pixel_y = 16},/obj/item/reagent_container/food/drinks/bottle/whiskey{desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; pixel_x = 3; pixel_y = 16},/obj/item/reagent_container/food/drinks/bottle/whiskey{pixel_x = 11; pixel_y = 16},/obj/item/storage/box/drinkingglasses{pixel_x = -1; pixel_y = 2},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"dU" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{dir = 8; icon_state = "blackcorner"},/area/golden_arrow/supply) +"dV" = (/obj/structure/machinery/door/firedoor/border_only/almayer{layer = 1.9},/obj/structure/machinery/door/airlock/almayer/medical/glass,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"dW" = (/obj/structure/machinery/door/poddoor/shutters/almayer{dir = 4; id = "W_Containment Cell 2"; name = "\improper Containment Cell 5"; unacidable = 1},/obj/structure/machinery/door/poddoor/almayer/biohazard/white{dir = 4},/turf/closed/wall/almayer/research/containment/wall/purple{dir = 8},/area/golden_arrow/medical) +"dY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1/delaythree{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ec" = (/obj/structure/window/framed/almayer/white,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"ed" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/storage/fancy/cigar{pixel_y = 2; layer = 3.04; pixel_x = -2},/obj/item/reagent_container/food/drinks/bottle/sake{pixel_x = -11; pixel_y = 16},/obj/item/reagent_container/food/drinks/bottle/sake{pixel_y = 16; pixel_x = -2},/obj/item/reagent_container/food/drinks/bottle/sake{pixel_x = 7; pixel_y = 16},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"ef" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/bulkhead_door{pixel_y = -29},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = -29},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"ei" = (/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{req_one_access = list()},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"ej" = (/obj/structure/bed/chair/comfy/black,/turf/open/floor/carpet{desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; name = "\improper carpet"},/area/golden_arrow/shared_office) +"ek" = (/obj/structure/machinery/cryopod{pixel_y = 6},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/medical) +"el" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/closed/wall/almayer/reinforced,/area/golden_arrow/supply) +"em" = (/obj/structure/machinery/door/poddoor/railing{dir = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"en" = (/obj/structure/machinery/computer/cryopod{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"eo" = (/turf/open/floor/almayer,/area/golden_arrow/dorms) +"eq" = (/obj/structure/prop/almayer/computers/sensor_computer1,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"er" = (/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"es" = (/turf/open/floor/almayer/uscm{dir = 5; icon_state = "logo_directional1"},/area/golden_arrow/hangar) +"eu" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ev" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 1},/turf/open/floor/almayer{dir = 1; icon_state = "black"},/area/golden_arrow/supply) +"ex" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"ey" = (/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"ez" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"eA" = (/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer,/area/golden_arrow/briefing) +"eB" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3; pixel_x = -1},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"eC" = (/obj/structure/bed/chair/comfy/blue,/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"eD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/largecrate/random/secure,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"eG" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/almayer{icon_state = "mono"},/area/golden_arrow/cryo_cells) +"eH" = (/obj/structure/machinery/door/poddoor/railing{id = "supply_elevator_railing"},/obj/structure/barricade/handrail{layer = 3.1; pixel_y = -1},/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/supply) +"eI" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = 27},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = 27},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_side"},/area/golden_arrow/hangar) +"eK" = (/obj/structure/disposalpipe/segment,/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 1},/obj/structure/machinery/door/airlock/almayer/generic{access_modified = 1; dir = 1; name = "Storage"; req_one_access_txt = "19;21"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"eL" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"eO" = (/obj/item/trash/plate{pixel_x = 9; pixel_y = 11},/obj/item/reagent_container/food/snacks/carpmeat{layer = 3.3; pixel_y = 11; pixel_x = 8},/obj/item/reagent_container/food/snacks/carpmeat{layer = 3.3; pixel_y = 11; pixel_x = 8},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"eQ" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/storage/bible{desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; name = "Holy Bible"; pixel_x = -3; pixel_y = 9},/obj/item/prop/helmetgarb/rosary{pixel_y = 5; pixel_x = -4},/obj/item/device/flashlight/lamp{pixel_y = 1; pixel_x = 3},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"eR" = (/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{layer = 3.1; name = "Midway Remote Control Console"; shuttleId = "dropship_midway"; dir = 8},/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{dir = 5; icon_state = "silver"},/area/golden_arrow/platoon_commander_rooms) +"eU" = (/obj/structure/machinery/door/firedoor/border_only/almayer{layer = 1.9},/obj/structure/window/framed/almayer/hull,/turf/closed/wall/almayer/outer,/area/golden_arrow/dorms) +"eV" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/door/poddoor/almayer{dir = 4; name = "\improper Storage Bay Two Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"eW" = (/turf/closed/wall/almayer,/area/golden_arrow/platoon_commander_rooms) +"eX" = (/obj/structure/bed/chair/comfy/charlie{dir = 1},/turf/open/floor/almayer{icon_state = "emeraldfull"},/area/golden_arrow/briefing) +"fb" = (/obj/structure/sign/safety/synth_storage{pixel_y = 32},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"fd" = (/obj/item/storage/belt/medical/full,/obj/item/storage/belt/medical/full,/obj/item/storage/belt/medical/full,/obj/item/storage/belt/medical/full,/obj/item/roller/medevac,/obj/item/roller/medevac,/obj/item/roller/medevac,/obj/structure/machinery/power/apc/almayer{dir = 8},/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"fe" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"fh" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer/research/containment/floor2{dir = 1},/area/golden_arrow/medical) +"fk" = (/obj/structure/window/framed/almayer/hull,/turf/closed/wall/almayer,/area/golden_arrow/dorms) +"fm" = (/obj/structure/machinery/door/poddoor/almayer{dir = 4; id = "bay2door"; name = "\improper Weapons Bay Two Blast Door"},/turf/closed/wall/almayer/outer,/area/golden_arrow/prep_hallway) +"fn" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; layer = 2.5; pixel_x = -1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"fo" = (/obj/effect/decal/warning_stripes{icon_state = "N"},/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/hangar) +"fq" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/shared_office) +"fr" = (/obj/structure/machinery/light{dir = 1},/obj/structure/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"fs" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; layer = 2.5; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"fu" = (/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend,/turf/open/floor/almayer{icon_state = "green"},/area/golden_arrow/supply) +"fv" = (/obj/structure/largecrate/supply/ammo{fill_from_loc = 1; name = "sentry crate"},/obj/item/ammo_magazine/sentry{layer = 3.01},/obj/item/defenses/handheld/sentry,/obj/structure/largecrate/supply/explosives/grenades/less{icon_state = "case"; layer = 3.1; pixel_x = 20; pixel_y = 10},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"fx" = (/obj/structure/machinery/door/poddoor/railing,/obj/effect/decal/strata_decals/grime/grime1{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"fz" = (/turf/open/floor/almayer{dir = 5; icon_state = "silver"},/area/golden_arrow/platoon_commander_rooms) +"fA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/structure/bed/chair/comfy/delta{dir = 1},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/briefing) +"fB" = (/obj/structure/bed/chair/comfy/beige,/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"fC" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"fD" = (/obj/effect/decal/warning_stripes{icon_state = "S"; layer = 3.3},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"fG" = (/obj/effect/decal/warning_stripes{icon_state = "S"; pixel_y = 1},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) +"fJ" = (/obj/structure/surface/table/woodentable/fancy,/obj/structure/machinery/computer/emails{dir = 4; pixel_y = 2},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"fM" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"fN" = (/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"fO" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"fQ" = (/turf/open/floor/almayer{dir = 1; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"fR" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 1},/turf/open/floor/almayer/research/containment/entrance,/area/golden_arrow/medical) +"fT" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "black"},/area/golden_arrow/supply) +"fV" = (/obj/structure/bed/chair{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"fW" = (/obj/structure/surface/table/almayer,/obj/item/toy/deck,/obj/structure/machinery/light,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"fY" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/door/poddoor/railing{dir = 2},/obj/item/tool/warning_cone{pixel_x = -15; pixel_y = 16},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"gb" = (/obj/structure/machinery/telecomms/relay/preset/tower,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"gc" = (/obj/effect/decal/warning_stripes{icon_state = "N"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"gd" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = 27},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = 27},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"gf" = (/obj/structure/machinery/door/airlock/almayer/command{name = "\improper Conference Room"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/machinery/door/poddoor/shutters/almayer/open{dir = 4; id = "CIC_Conference"; name = "\improper CIC Conference Shutters"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/shared_office) +"gh" = (/turf/open/floor/almayer{dir = 9; icon_state = "red"},/area/golden_arrow/platoon_commander_rooms) +"gj" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"gk" = (/obj/structure/surface/table/almayer,/obj/item/clothing/suit/storage/jacket/marine/service{pixel_x = 11},/obj/item/prop/magazine/dirty/torn{pixel_x = -6; pixel_y = 6},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"gm" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"go" = (/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/supply) +"gq" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/effect/decal/strata_decals/grime/grime2{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"gr" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"gs" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"gt" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/closed/wall/almayer,/area/golden_arrow/engineering) +"gv" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{access_modified = 1; dir = 2; name = "\improper Requisitions Break Room"; req_one_access_txt = "19;21"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/machinery/door/firedoor/border_only/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"gy" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/device/flashlight/lamp/green{on = 1},/turf/open/floor/carpet,/area/golden_arrow/shared_office) +"gA" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"gE" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"gG" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"gH" = (/obj/structure/closet/secure_closet/cmdcabinet{pixel_y = 24},/obj/item/device/cotablet,/turf/open/floor/almayer{icon_state = "silverfull"},/area/golden_arrow/platoon_commander_rooms) +"gI" = (/obj/structure/machinery/light{dir = 4},/obj/structure/machinery/cm_vending/sorted/medical,/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"gM" = (/turf/open/floor/almayer{dir = 10; icon_state = "emerald"},/area/golden_arrow/platoon_commander_rooms) +"gN" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{dir = 4; icon_state = "silver"},/area/golden_arrow/platoon_commander_rooms) +"gO" = (/obj/structure/machinery/light{dir = 1},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/stairs{dir = 8; icon_state = "ramptop"},/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/briefing) +"gT" = (/obj/structure/surface/table/almayer,/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/door_display/research_cell{dir = 1; id = "Containment Cell 5"; name = "Cell 5 Control"; pixel_x = 4; pixel_y = -3},/obj/structure/machinery/door_control{id = "W_Containment Cell 5"; name = "Containment Lockdown"; pixel_x = -8; pixel_y = -3; req_one_access_txt = "19;28"},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"gV" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"gX" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "mono"},/area/golden_arrow/dorms) +"gY" = (/obj/structure/surface/table/almayer,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/machinery/door_control{id = "W_Containment Cell 1"; name = "Containment Lockdown"; pixel_x = -7; pixel_y = 1; req_one_access_txt = "19;28"},/obj/structure/machinery/door_display/research_cell{id = "Containment Cell 1"; name = "Cell 1 Control"; pixel_x = 5; pixel_y = 2},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"ha" = (/obj/structure/surface/table/almayer,/obj/item/storage/belt/utility/full,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"hb" = (/obj/structure/machinery/landinglight/ds1{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"hc" = (/obj/structure/machinery/landinglight/ds1{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"hh" = (/turf/open/floor/almayer{dir = 4; icon_state = "silver"},/area/golden_arrow/platoon_commander_rooms) +"hi" = (/obj/structure/machinery/power/terminal{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"hj" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"hk" = (/obj/structure/machinery/door/poddoor/railing{dir = 8; id = "supply_elevator_railing"},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/supply) +"hl" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/supply) +"hm" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"hn" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"ho" = (/obj/structure/largecrate/random/case/double{pixel_x = 4; pixel_y = 5},/obj/structure/largecrate/random/case/double{layer = 3.1; pixel_x = 6; pixel_y = -7},/obj/structure/largecrate/random/mini/small_case{layer = 3.1; pixel_x = 14; pixel_y = 24},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/briefing) +"hp" = (/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{req_one_access = list()},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"hq" = (/turf/closed/wall/almayer/reinforced,/area/golden_arrow/supply) +"hr" = (/obj/structure/largecrate/supply/weapons/m56d{pixel_x = 9; pixel_y = 10},/obj/structure/largecrate/supply/weapons/m56d{pixel_x = 9; pixel_y = 25},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/briefing) +"hv" = (/obj/item/paper{icon_state = "paper_words"; info = "OUT OF ORDER - When I find the dumbass that thought it was a good idea to drive over the elevator with the APC they're gonna get their ass beat."; layer = 3.01; name = "OUT OF ORDER"; pixel_x = 5; pixel_y = -3},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"hw" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"hy" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"hz" = (/obj/structure/reagent_dispensers/fueltank/custom,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"hB" = (/obj/structure/surface/rack,/obj/item/storage/firstaid/adv/empty,/obj/item/storage/firstaid/adv/empty,/obj/item/storage/firstaid/adv/empty,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"hI" = (/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/hangar) +"hK" = (/obj/structure/machinery/alarm/almayer{dir = 1},/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice3"; pixel_x = 16; pixel_y = -15},/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice2"; pixel_x = 16; pixel_y = 16},/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"hM" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"hO" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/door/poddoor/almayer{dir = 4; id = "bay1door"; name = "\improper Weapons Bay One Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"hR" = (/turf/open/floor/wood,/area/golden_arrow/shared_office) +"hT" = (/obj/structure/machinery/door/poddoor/shutters/almayer{dir = 4; id = "W_Containment Cell 2"; name = "\improper Containment Cell 5"; unacidable = 1},/obj/structure/machinery/door/poddoor/almayer/biohazard/white{dir = 4},/turf/closed/wall/almayer/research/containment/wall/purple{dir = 4},/area/golden_arrow/medical) +"hU" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"hV" = (/obj/structure/surface/table/almayer,/obj/item/paper_bin/uscm{pixel_x = -8; pixel_y = 5},/obj/item/clipboard{pixel_x = 12},/obj/item/tool/pen{pixel_x = 12},/obj/item/tool/hand_labeler{pixel_x = 4; pixel_y = 11},/obj/structure/sign/poster/propaganda{pixel_y = 34},/turf/open/floor/almayer{dir = 9; icon_state = "orange"},/area/golden_arrow/supply) +"hY" = (/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"ia" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"ib" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"ic" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer/research/containment/corner2,/area/golden_arrow/medical) +"id" = (/obj/structure/surface/table/woodentable/fancy,/obj/structure/machinery/faxmachine/uscm/command/capt{name = "Commanding Officer's Fax Machine"; pixel_y = 3; pixel_x = -4},/obj/structure/machinery/light{dir = 1},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"ig" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"ii" = (/obj/structure/machinery/light,/obj/structure/flora/pottedplant{pixel_y = 3; pixel_x = -1},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"ij" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/light,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/shared_office) +"ik" = (/obj/structure/pipes/vents/pump,/obj/item/tool/mop{pixel_x = -9; pixel_y = 20},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"in" = (/obj/structure/surface/table/almayer,/obj/item/tool/screwdriver{pixel_x = -8; pixel_y = 17},/obj/item/reagent_container/food/drinks/coffee/marine{pixel_y = 12},/obj/item/reagent_container/food/drinks/coffee/marine{pixel_x = -6; pixel_y = 4},/obj/item/reagent_container/food/drinks/coffee/marine{pixel_x = 5},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"io" = (/turf/open/floor/almayer/uscm{dir = 8; icon_state = "logo_directional1"},/area/golden_arrow/hangar) +"ir" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"is" = (/obj/structure/machinery/light,/obj/structure/phone_base{name = "RO Office Telephone"; phone_category = "Offices"; phone_id = "RO Office"; dir = 8; pixel_x = 16},/turf/open/floor/almayer{dir = 6; icon_state = "orange"},/area/golden_arrow/supply) +"iu" = (/obj/structure/machinery/light,/turf/open/floor/almayer{dir = 1; icon_state = "black"},/area/golden_arrow/supply) +"iv" = (/obj/structure/sign/safety/galley{pixel_x = 8; pixel_y = 32},/obj/structure/machinery/autolathe/full,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plating_striped"},/area/golden_arrow/supply) +"iy" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"iz" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"iB" = (/turf/closed/wall/almayer/research/containment/wall/corner{dir = 8},/area/golden_arrow/medical) +"iD" = (/obj/structure/machinery/cm_vending/clothing/staff_officer_armory,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/shared_office) +"iG" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/chem_dispenser/soda{pixel_y = 5},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"iK" = (/turf/open/floor/almayer{dir = 10; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"iL" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"iM" = (/obj/structure/machinery/cryopod{pixel_y = 6},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"iN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/largecrate/supply/weapons/hpr,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"iO" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"iR" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/engineering) +"iT" = (/obj/structure/machinery/door/airlock/almayer/command{name = "\improper Conference Room"},/obj/structure/machinery/door/poddoor/shutters/almayer/open{dir = 4; id = "CIC_Conference"; name = "\improper CIC Conference Shutters"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) +"iU" = (/obj/structure/machinery/floodlight/landing,/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"iX" = (/obj/structure/machinery/door/airlock/almayer/medical/glass{access_modified = 1; dir = 2; name = "\improper Nurse Office"; req_access_txt = "20"; req_one_access = null},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"iY" = (/obj/structure/disposalpipe/sortjunction{dir = 4; negdir = 4; posdir = 1},/turf/closed/wall/almayer,/area/golden_arrow/supply) +"jb" = (/obj/structure/bed/chair/comfy/beige{dir = 1},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"jc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"jd" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; layer = 2.5; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"je" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/cargo_container/wy/mid{opacity = 0; pixel_y = -17},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/briefing) +"jj" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/structure/holohoop{dir = 4; id = "basketball"; side = "left"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"jm" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"jn" = (/obj/structure/closet/secure_closet/engineering_electrical{req_one_access = null},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"jo" = (/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 1},/obj/structure/machinery/door/airlock/almayer/generic{access_modified = 1; dir = 1; name = "Storage"; req_one_access_txt = "19;21"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"jq" = (/obj/structure/flora/pottedplant{pixel_y = 10},/obj/structure/surface/table/woodentable/fancy,/turf/open/floor/wood,/area/golden_arrow/shared_office) +"jr" = (/obj/structure/largecrate/supply/medicine/medkits,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"js" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"ju" = (/obj/structure/machinery/light{dir = 8},/obj/structure/surface/table/reinforced/almayer_B,/obj/item/paper_bin{pixel_x = -7},/obj/item/paper_bin{pixel_x = 5; pixel_y = 10},/obj/item/tool/pen{pixel_y = 3},/obj/item/tool/pen,/obj/structure/sign/safety/terminal{pixel_x = 8; pixel_y = 32},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"jv" = (/obj/structure/surface/rack,/obj/item/storage/box/guncase/m2c,/obj/item/storage/box/guncase/m2c,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"jy" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"jA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice3"; pixel_x = 16; pixel_y = -15},/obj/structure/bed/chair{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"jB" = (/obj/structure/machinery/door/poddoor/almayer{dir = 4; id = "apc1blastdoor"; name = "\improper Vehicle Bay One Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"jG" = (/obj/structure/bed/chair/comfy{dir = 4},/turf/open/floor/carpet/edge{dir = 1},/area/golden_arrow/shared_office) +"jH" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = 27},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = 27},/obj/structure/largecrate/random/case/double,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"jL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"jO" = (/obj/structure/surface/table/almayer,/obj/item/reagent_container/hypospray,/obj/item/reagent_container/hypospray,/obj/item/reagent_container/hypospray,/obj/item/reagent_container/hypospray,/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"jP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/firealarm{dir = 4; pixel_x = 21},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"jR" = (/obj/structure/machinery/cm_vending/sorted/medical/blood,/obj/structure/machinery/camera/autoname/almayer{name = "ship-grade camera"},/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"jU" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"jX" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/shared_office) +"jZ" = (/obj/structure/sign/prop1,/turf/closed/wall/almayer/outer,/area/golden_arrow/platoon_commander_rooms) +"ka" = (/obj/structure/machinery/vending/dinnerware,/turf/open/floor/prison{icon_state = "kitchen"},/area/golden_arrow/shared_office) +"kb" = (/turf/closed/wall/almayer,/area/golden_arrow/hangar) +"kd" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"ke" = (/obj/structure/machinery/power/smes/buildable,/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"kg" = (/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/supply) +"kk" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"km" = (/turf/open/floor/almayer{dir = 9; icon_state = "silver"},/area/golden_arrow/briefing) +"ko" = (/obj/structure/bed/chair/comfy{buckling_y = 2; dir = 8; pixel_y = 2},/turf/open/floor/carpet/edge{dir = 5},/area/golden_arrow/shared_office) +"kp" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/shared_office) +"kr" = (/obj/item/tool/crowbar/red{pixel_x = -13; pixel_y = -13},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"ks" = (/obj/structure/machinery/door_control{id = "containmentlockdown_S"; name = "Containment Lockdown"; pixel_y = 28; req_one_access_txt = "28"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"kt" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"kv" = (/obj/structure/largecrate/random/secure,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"kw" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/machinery/computer/crew/alt{dir = 4; pixel_x = -10},/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"kx" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"ky" = (/obj/docking_port/stationary/breacher/b,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"kA" = (/obj/structure/machinery/computer/groundside_operations{dir = 8; pixel_y = 8},/obj/structure/machinery/computer/overwatch/almayer{layer = 3.2; pixel_y = -8; dir = 4},/obj/structure/surface/table/reinforced/prison,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) +"kB" = (/obj/structure/gun_rack/m41,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"kC" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer/research/containment/floor2{dir = 8},/area/golden_arrow/medical) +"kD" = (/obj/effect/decal/strata_decals/grime/grime2{dir = 8},/obj/structure/largecrate/random/secure,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/medical) +"kE" = (/turf/open/floor/almayer{dir = 8; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"kF" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "N"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"kG" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"kH" = (/obj/structure/machinery/computer/overwatch/almayer{layer = 3.2; pixel_y = 20},/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{icon_state = "orangefull"},/area/golden_arrow/platoon_commander_rooms) +"kJ" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"kK" = (/obj/structure/platform,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "orange"},/area/golden_arrow/supply) +"kL" = (/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"kM" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/item/device/flashlight{pixel_x = -4; pixel_y = 7},/obj/item/tool/warning_cone,/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"kN" = (/turf/open/floor/carpet/edge{dir = 6},/area/golden_arrow/shared_office) +"kO" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 6; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"kP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/strata_decals/grime/grime2{dir = 8},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"kR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "0-4"; layer = 2.36},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/briefing) +"kX" = (/obj/structure/machinery/door/poddoor/almayer{dir = 4; id = "bay1door"; name = "\improper Weapons Bay One Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"kY" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/item/clothing/under/shorts/blue,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/under/shorts/red,/obj/item/clothing/under/shorts/red,/obj/item/clothing/under/shorts/green,/obj/item/clothing/under/shorts/green,/obj/item/clothing/under/shorts/grey,/obj/item/clothing/under/shorts/grey,/obj/item/clothing/under/shorts/grey,/obj/item/clothing/under/shorts/grey,/obj/structure/closet/coffin/woodencrate{name = "gym equipment"},/obj/item/clothing/under/shorts/grey,/obj/item/clothing/under/shorts/grey,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"kZ" = (/obj/structure/surface/table/woodentable/fancy,/obj/structure/machinery/computer/cameras/wooden_tv/almayer{dir = 8},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"la" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"lb" = (/turf/open/floor/almayer{dir = 5; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"lg" = (/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"lh" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 1},/obj/structure/machinery/floodlight/landing/floor,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"li" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"ll" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"},/obj/structure/machinery/gear{id = "supply_elevator_gear"},/obj/structure/barricade/handrail{layer = 3.1; pixel_y = -1},/turf/open/floor/almayer{icon_state = "mono"},/area/golden_arrow/supply) +"lm" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/shared_office) +"lr" = (/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"ls" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer/research/containment/corner_var1{dir = 4},/area/golden_arrow/medical) +"lu" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"lz" = (/obj/structure/surface/rack,/obj/item/storage/box/nade_box,/obj/item/storage/box/packet/hefa,/obj/item/storage/box/packet/hefa,/obj/item/storage/box/packet/hefa,/obj/item/storage/box/packet/incendiary,/obj/item/storage/box/packet/incendiary,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"lB" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/dorms) +"lE" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/cable/heavyduty{icon_state = "1-4-8"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"lG" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"lI" = (/turf/open/floor/almayer{dir = 6; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"lK" = (/turf/open/floor/carpet/edge{dir = 4},/area/golden_arrow/shared_office) +"lL" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = 27},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = 27},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"lM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1/delayone,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"lN" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/atmos_alert{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"lP" = (/obj/structure/machinery/sleep_console,/turf/open/floor/almayer{dir = 10; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"lQ" = (/obj/structure/barricade/handrail{dir = 4},/obj/structure/barricade/handrail{dir = 8},/obj/structure/closet/secure_closet,/obj/structure/machinery/light,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"lR" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 1},/obj/structure/machinery/gear{id = "supply_elevator_gear"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"lS" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/carpet{desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; name = "\improper carpet"},/area/golden_arrow/shared_office) +"lT" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"lU" = (/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{req_one_access = null},/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/sign/safety/rewire{pixel_x = 12; pixel_y = 32},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"lV" = (/obj/structure/machinery/power/smes/buildable,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"lW" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/shared_office) +"lX" = (/obj/structure/window/framed/almayer/hull,/turf/open/floor/almayer{icon_state = "plate"},/area/space) +"ma" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"mb" = (/obj/structure/machinery/door/airlock/almayer/secure/reinforced{dir = 2; name = "\improper Evacuation Airlock PL-2"; req_access = null},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/almayer/powered) +"mc" = (/obj/structure/machinery/power/terminal{dir = 1},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8},/turf/open/floor/plating,/area/golden_arrow/engineering) +"md" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"mh" = (/turf/open/floor/strata{desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; icon = 'icons/turf/floors/floors.dmi'; icon_state = "wood"},/area/golden_arrow/shared_office) +"mi" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/structure/machinery/status_display{pixel_y = -30},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"mj" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"mk" = (/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"mm" = (/obj/structure/pipes/vents/pump{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"mp" = (/obj/structure/surface/table/reinforced/black,/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"mq" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"ms" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"mu" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"my" = (/obj/structure/disposalpipe/segment,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"mB" = (/obj/structure/machinery/light,/turf/open/floor/almayer,/area/golden_arrow/supply) +"mC" = (/turf/open/floor/almayer{dir = 1; icon_state = "silver"},/area/golden_arrow/platoon_commander_rooms) +"mD" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/item/tool/wet_sign{pixel_x = -14; pixel_y = 14},/obj/item/tool/wet_sign{pixel_x = -17; pixel_y = 10},/obj/item/tool/wet_sign{pixel_x = -13; pixel_y = 6},/obj/item/tool/wet_sign{pixel_x = -15; pixel_y = 2},/obj/item/tool/wet_sign{pixel_x = -13; pixel_y = -2},/obj/item/tool/wet_sign{pixel_x = 1; pixel_y = 16},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"mG" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"mJ" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/plating,/area/golden_arrow/hangar) +"mK" = (/obj/structure/window/framed/almayer,/obj/structure/machinery/door/firedoor/border_only/almayer,/turf/open/floor/plating,/area/golden_arrow/supply) +"mP" = (/turf/closed/wall/almayer/white/reinforced,/area/golden_arrow/medical) +"mQ" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"mR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair/comfy/charlie{dir = 1},/turf/open/floor/almayer{icon_state = "emeraldfull"},/area/golden_arrow/briefing) +"mS" = (/obj/structure/stairs{dir = 8; icon_state = "ramptop"},/turf/open/floor/almayer,/area/golden_arrow/supply) +"mT" = (/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice3"; pixel_x = 16; pixel_y = -15},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"mW" = (/obj/structure/machinery/cm_vending/sorted/medical/blood,/obj/structure/machinery/light{unacidable = 1; unslashable = 1},/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"na" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"nc" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/structure/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"nd" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = -29},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = -29},/obj/structure/machinery/light,/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_side"},/area/golden_arrow/hangar) +"ne" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"nf" = (/obj/structure/surface/table/reinforced/prison,/obj/item/tool/hand_labeler{pixel_x = 7},/obj/item/paper_bin/uscm{pixel_y = 5},/obj/item/tool/pen,/obj/structure/machinery/computer/working_joe{dir = 8; pixel_x = 17},/turf/open/floor/almayer{dir = 6; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"nh" = (/obj/structure/surface/table/almayer,/obj/item/prop/almayer/comp_closed{pixel_x = -14; pixel_y = 13},/obj/item/reagent_container/food/drinks/coffee/marine,/obj/item/reagent_container/food/drinks/coffee/marine{pixel_x = -13; pixel_y = 16},/obj/item/reagent_container/food/drinks/coffee/marine{pixel_x = 9; pixel_y = 9},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"nk" = (/obj/effect/landmark/start/marine/medic/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"nl" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"nm" = (/obj/structure/flora/pottedplant{icon_state = "pottedplant_22"; pixel_y = 8},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{dir = 6; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"no" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"np" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"nq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/largecrate/random/case/double,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"nr" = (/turf/open/space/basic,/area/golden_arrow/hangar) +"nt" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/obj/structure/window/framed/almayer/white,/obj/structure/machinery/door/poddoor/almayer/biohazard/white{dir = 4},/turf/open/floor/plating,/area/golden_arrow/medical) +"nu" = (/turf/open/floor/almayer{icon_state = "orangefull"},/area/golden_arrow/supply) +"nw" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"nx" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ny" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"nz" = (/obj/structure/machinery/cm_vending/clothing/commanding_officer{pixel_y = 0},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/platoon_commander_rooms) +"nA" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"nB" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/medical) +"nC" = (/obj/structure/bed/chair/comfy{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) +"nF" = (/obj/structure/foamed_metal,/turf/open/floor/plating,/area/golden_arrow/prep_hallway) +"nG" = (/obj/structure/machinery/camera/autoname/almayer/containment{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer/research/containment/floor2{dir = 8},/area/golden_arrow/medical) +"nH" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"nI" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/engineering) +"nJ" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/paper_bin/uscm{pixel_y = 7; pixel_x = -17},/obj/item/tool/pen/clicky{pixel_x = -13; pixel_y = -1},/obj/item/tool/pen/clicky{pixel_y = 5; pixel_x = -13},/obj/structure/machinery/door_control{id = "CO-Office"; name = "Door Control"; normaldoorcontrol = 1; req_access_txt = "31"; pixel_y = 7},/obj/item/ashtray/bronze{pixel_y = 1; pixel_x = 12},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"nK" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer/uscm{dir = 1; icon_state = "logo_directional1"},/area/golden_arrow/hangar) +"nL" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/item/device/flashlight/lamp,/obj/item/tool/crowbar,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"nQ" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/prop/tableflag/uscm{pixel_x = -5},/obj/item/prop/tableflag/uscm2{pixel_x = 5},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"nU" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"nV" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 1},/obj/structure/surface/rack,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"nX" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"oa" = (/obj/structure/pipes/vents/pump{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"ob" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{autoname = 0; dir = 1; req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"oc" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/cryopod/right{dir = 2},/turf/open/floor/almayer{dir = 10; icon_state = "orange"},/area/golden_arrow/supply) +"od" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"of" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"og" = (/turf/closed/wall/almayer,/area/golden_arrow/cryo_cells) +"oi" = (/obj/structure/machinery/light{dir = 4},/obj/structure/machinery/computer/cryopod{pixel_x = 6; pixel_y = -2},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"ok" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "black"},/area/golden_arrow/supply) +"on" = (/obj/structure/surface/rack,/obj/item/storage/box/guncase/m1911,/obj/item/storage/box/guncase/m1911,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"oo" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/atm{pixel_y = 26},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"op" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/dorms) +"or" = (/obj/structure/machinery/door/poddoor/almayer{dir = 2; name = "\improper Storage Bay Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"os" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"ot" = (/obj/structure/machinery/cm_vending/sorted/medical/marinemed,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"ou" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"ov" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"ow" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"ox" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"oz" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"oA" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/reagent_container/food/drinks/bottle/whiskey{pixel_x = -5; pixel_y = 16},/obj/item/reagent_container/food/drinks/bottle/whiskey{desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; pixel_x = 3; pixel_y = 16},/obj/item/reagent_container/food/drinks/bottle/whiskey{pixel_x = 11; pixel_y = 16},/obj/item/tool/lighter/zippo/gold{pixel_y = 3; layer = 3.05},/turf/open/floor/carpet/edge{dir = 1},/area/golden_arrow/shared_office) +"oC" = (/obj/item/storage/firstaid/toxin{pixel_x = 6; pixel_y = 6},/obj/item/storage/firstaid/fire{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/adv{pixel_x = 6; pixel_y = 6},/obj/item/storage/firstaid/adv{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/adv,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"oE" = (/obj/structure/machinery/medical_pod/bodyscanner,/turf/open/floor/almayer{dir = 6; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"oG" = (/obj/structure/closet/secure_closet/engineering_welding{req_one_access = list()},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"oL" = (/obj/structure/largecrate/random/case/double,/obj/structure/largecrate/random/mini/small_case{pixel_y = 17},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/briefing) +"oM" = (/obj/structure/filingcabinet{density = 0; pixel_x = -8; pixel_y = 18},/obj/structure/filingcabinet{density = 0; pixel_x = 8; pixel_y = 16},/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"oN" = (/obj/structure/largecrate/supply/supplies/flares,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"oO" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/machinery/door/firedoor/border_only/almayer,/obj/structure/machinery/door/firedoor/border_only/almayer,/obj/structure/machinery/door/airlock/almayer/generic{access_modified = 1; name = "Storage"; req_one_access_txt = "19;21"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"oP" = (/obj/effect/decal/strata_decals/grime/grime4,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"oT" = (/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend,/turf/open/floor/almayer{dir = 10; icon_state = "green"},/area/golden_arrow/supply) +"oU" = (/obj/structure/closet/secure_closet/marine_personal{pixel_x = -7},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"oW" = (/obj/structure/surface/table/almayer,/obj/structure/largecrate/random/case{pixel_y = 11},/obj/item/reagent_container/food/drinks/coffee/marine{layer = 3.11; pixel_x = 4; pixel_y = 15},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"oY" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/door_control{id = "synthbay"; name = "storage bay door-control"; pixel_y = -19},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"oZ" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"pc" = (/turf/open/floor/almayer/empty,/area/supply/station) +"pe" = (/obj/structure/surface/table/almayer,/obj/item/storage/fancy/cigarettes/lucky_strikes,/obj/item/packageWrap,/turf/open/floor/almayer{dir = 9; icon_state = "orange"},/area/golden_arrow/supply) +"ph" = (/obj/structure/machinery/door/poddoor/railing{dir = 2; id = "supply_elevator_railing"},/obj/structure/barricade/handrail{dir = 1; pixel_y = 12},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/supply) +"pi" = (/obj/structure/surface/table/reinforced/prison,/obj/item/storage/belt/medical/lifesaver/full,/obj/item/clothing/glasses/hud/health,/obj/item/device/radio/marine,/obj/item/clothing/accessory/storage/surg_vest,/obj/item/tool/portadialysis,/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"pm" = (/obj/structure/surface/table/almayer,/turf/open/floor/almayer{dir = 4; icon_state = "plating_striped"},/area/golden_arrow/supply) +"pn" = (/obj/structure/pipes/vents/scrubber{dir = 1},/turf/open/floor/almayer{icon_state = "orange"},/area/golden_arrow/supply) +"po" = (/obj/structure/machinery/recharge_station,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"pq" = (/obj/structure/machinery/door/airlock/maintenance/colony{dir = 1; name = "\improper Supply Launch Bay"; req_one_access = null},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"pr" = (/turf/open/floor/almayer,/area/golden_arrow/engineering) +"ps" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/disposalpipe/junction,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"pu" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/light,/obj/structure/prop{density = 1; desc = "An electronic device linked to the dropship's camera system that lets you observe your landing zone. This thing probably never even worked."; icon = 'icons/obj/structures/props/almayer_props.dmi'; icon_state = "lz_detector"; layer = 3.1; name = "\improper Damaged AN/AVD-60 LZ detector"},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"pv" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/strata_decals/grime/grime3,/obj/structure/largecrate/supply/ammo{fill_from_loc = 1; name = "materials crate"},/obj/item/stack/sheet/metal/large_stack,/obj/item/stack/sheet/plasteel{amount = 40; pixel_x = 7; pixel_y = 6},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/briefing) +"pw" = (/obj/structure/closet/secure_closet/securecom{name = "colonel's secure box"},/turf/open/floor/strata{desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; icon = 'icons/turf/floors/floors.dmi'; icon_state = "wood"},/area/golden_arrow/shared_office) +"px" = (/turf/closed/wall/almayer/reinforced,/area/golden_arrow/platoon_commander_rooms) +"pC" = (/obj/structure/surface/table/reinforced/prison,/obj/item/device/binoculars,/obj/structure/machinery/light/small,/turf/open/floor/almayer{icon_state = "emeraldfull"},/area/golden_arrow/platoon_commander_rooms) +"pD" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/power/apc/almayer{dir = 8},/obj/item/storage/briefcase{pixel_y = 15},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"pE" = (/obj/structure/closet/secure_closet/marine_personal{job = "Smartgunner"; pixel_x = 8},/obj/structure/closet/secure_closet/marine_personal{job = "Squad Sergeant"; pixel_x = -7},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"pG" = (/obj/structure/surface/table/almayer,/obj/item/device/radio,/obj/item/device/lightreplacer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"pH" = (/obj/structure/surface/table/woodentable/fancy,/obj/structure/flora/pottedplant{icon_state = "pottedplant_18"; pixel_y = 12},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"pJ" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{dir = 10; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"pK" = (/obj/item/prop/colony/canister{pixel_x = 3; pixel_y = 19},/obj/effect/decal/strata_decals/grime/grime2,/obj/item/tool/mop{pixel_x = -10; pixel_y = 20},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"pM" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/structure/sign/safety/bathunisex{pixel_x = 11; pixel_y = -26},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"pO" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/reagent_container/food/snacks/pastatomato{pixel_y = 3},/turf/open/floor/carpet,/area/golden_arrow/shared_office) +"pP" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/landmark/supplyspawner/ammo,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"pQ" = (/turf/open/floor/almayer/research/containment/floor2{dir = 8},/area/golden_arrow/medical) +"pV" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"pW" = (/obj/structure/pipes/vents/pump,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"pZ" = (/turf/open/floor/almayer{dir = 4; icon_state = "orange"},/area/golden_arrow/supply) +"qa" = (/obj/structure/machinery/computer/overwatch/almayer,/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"qb" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{dir = 1; name = "\improper Dorms"},/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"qd" = (/obj/structure/flora/pottedplant{icon_state = "pottedplant_22"},/turf/open/floor/strata{desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; icon = 'icons/turf/floors/floors.dmi'; icon_state = "wood"},/area/golden_arrow/shared_office) +"qe" = (/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"qf" = (/obj/structure/closet/secure_closet/smartgunner{name = "squad two smartgunner locker"; req_access_txt = "14;40"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"qg" = (/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"qi" = (/obj/structure/machinery/cm_vending/gear/synth,/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"qj" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = 38},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = 38},/obj/structure/sign/safety/ammunition{pixel_y = 26},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"ql" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"qm" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"qn" = (/obj/structure/pipes/vents/scrubber{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"qo" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/medical) +"qp" = (/obj/structure/machinery/photocopier,/turf/open/floor/strata{desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; icon = 'icons/turf/floors/floors.dmi'; icon_state = "wood"},/area/golden_arrow/shared_office) +"qq" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"qr" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/photocopier{pixel_y = 16},/obj/item/reagent_container/food/drinks/coffeecup/uscm{pixel_x = 7; pixel_y = -7},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"qs" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Second Platoon Ready Bay Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"qu" = (/obj/structure/machinery/light{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"qv" = (/obj/structure/surface/table/almayer,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"qw" = (/obj/effect/decal/warning_stripes{icon_state = "E"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"qy" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"qA" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"qC" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"qF" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"qG" = (/obj/structure/bed,/obj/item/bedsheet/medical,/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"qI" = (/turf/open/floor/almayer{dir = 8; icon_state = "black"},/area/golden_arrow/supply) +"qM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1/delaythree{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"qN" = (/obj/item/device/flashlight/lamp/green,/obj/structure/surface/table/reinforced/black,/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"qO" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/platform_decoration,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"qP" = (/obj/structure/machinery/door/airlock/almayer/generic{name = "\improper Bathroom"; dir = 2},/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) +"qQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"qR" = (/obj/structure/machinery/door/airlock/almayer/medical{id_tag = "or03"; name = "Lobby"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"qS" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) +"qT" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/largecrate/supply/supplies/sandbags{layer = 4.2; pixel_y = 7},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"qU" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"qV" = (/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{req_access = list(); req_one_access_txt = "8;12;39;40"},/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{req_one_access = list(); req_one_access_txt = "8;12;39;40"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) +"qX" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer/research/containment/floor2{dir = 8},/area/golden_arrow/medical) +"qY" = (/obj/structure/machinery/power/terminal{dir = 4},/obj/item/tool/wirecutters{pixel_y = -6},/obj/item/device/multitool{pixel_x = -10},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"qZ" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"rb" = (/obj/structure/surface/table/almayer,/obj/item/trash/USCMtray{pixel_y = 9},/obj/item/reagent_container/food/snacks/cracker{pixel_x = -2; pixel_y = 7},/obj/item/reagent_container/food/snacks/cracker{pixel_y = 9},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"rf" = (/obj/item/storage/box/gloves{layer = 3.2; pixel_x = 7; pixel_y = -2},/obj/item/storage/box/gloves{pixel_x = 7; pixel_y = 2},/obj/item/storage/box/masks{layer = 3.2; pixel_x = -7; pixel_y = -2},/obj/item/storage/box/gloves{layer = 3.1; pixel_x = 7; pixel_y = 2},/obj/item/storage/box/gloves{pixel_x = 7; pixel_y = 6},/obj/item/storage/box/masks{layer = 3.1; pixel_x = -7; pixel_y = 2},/obj/item/storage/box/masks{pixel_x = -7; pixel_y = 6},/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"rh" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/vending/walkman{density = 0; pixel_x = 10; pixel_y = 21},/obj/item/trash/kepler{pixel_x = 8; pixel_y = 44},/obj/item/trash/barcardine,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "mono"},/area/golden_arrow/dorms) +"ri" = (/obj/structure/window/framed/almayer,/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"rj" = (/obj/structure/disposalpipe/segment,/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"rn" = (/turf/open/floor/almayer/research/containment/floor2{dir = 1},/area/golden_arrow/medical) +"ro" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"rp" = (/obj/structure/machinery/cm_vending/sorted/medical/blood,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"rq" = (/obj/structure/machinery/cm_vending/sorted/medical/marinemed,/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"rr" = (/obj/structure/machinery/cm_vending/sorted/marine_food,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"rs" = (/obj/structure/pipes/vents/scrubber,/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"rt" = (/obj/structure/machinery/prop/almayer/CICmap,/obj/structure/machinery/light,/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"ru" = (/obj/structure/machinery/flasher{id = "Containment Cell 1"; layer = 2.1; name = "Mounted Flash"; pixel_y = 30},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer/research/containment/floor2{dir = 1},/area/golden_arrow/medical) +"rw" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3; pixel_x = -1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"rx" = (/obj/structure/surface/table/almayer,/obj/item/device/reagent_scanner{pixel_x = -8; pixel_y = 4},/obj/item/clipboard{pixel_x = 8},/obj/item/paper{pixel_x = 8},/obj/effect/spawner/random/toolbox{pixel_x = 5; pixel_y = -3},/obj/item/storage/box/monkeycubes{pixel_x = 7; pixel_y = 7},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"rz" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/obj/item/storage/toolbox/mechanical/green{pixel_y = 10},/obj/structure/machinery/floodlight/landing,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"rB" = (/turf/closed/wall/almayer/reinforced,/turf/closed/wall/almayer/reinforced,/area/golden_arrow/supply) +"rC" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/reagentgrinder/industrial{pixel_y = 9},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"rE" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/door/window/eastright{dir = 8; req_access_txt = "8"},/obj/structure/machinery/door/window/eastleft{req_access_txt = "8"},/obj/item/book/manual/medical_diagnostics_manual,/obj/item/device/megaphone,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"rF" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"rG" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/obj/item/tool/warning_cone{pixel_x = -7; pixel_y = 6},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"rH" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/oil,/obj/structure/largecrate/random/case/small,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"rL" = (/obj/structure/machinery/door/firedoor/border_only/almayer,/obj/structure/machinery/door/airlock/almayer/command/reinforced{name = "\improper Platoon Commander's Quarters"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) +"rM" = (/obj/structure/bed/chair/office/light{dir = 8},/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"rO" = (/obj/structure/largecrate/supply/motiondetectors,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"rP" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/shared_office) +"rR" = (/obj/structure/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"rS" = (/obj/structure/machinery/door/poddoor/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"rU" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"rW" = (/obj/structure/flora/pottedplant{icon_state = "pottedplant_22"; pixel_y = 8},/obj/structure/sign/safety/distribution_pipes{pixel_x = 32},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"rX" = (/obj/structure/machinery/door/airlock/almayer/command{name = "\improper Conference Room"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/machinery/door/poddoor/shutters/almayer/open{dir = 4; id = "CIC_Conference"; name = "\improper CIC Conference Shutters"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) +"sd" = (/obj/structure/bed/chair/comfy{buckling_y = 2; dir = 8; pixel_y = 2},/turf/open/floor/prison/chapel_carpet,/area/golden_arrow/shared_office) +"se" = (/obj/structure/sign/safety/storage{pixel_x = -17},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "orangefull"},/area/golden_arrow/supply) +"sf" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/item/clothing/glasses/meson,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/tool/shovel/snow,/obj/item/tool/shovel/snow,/obj/item/tool/shovel/snow,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"sg" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/item/tool/warning_cone{pixel_x = -6; pixel_y = 16},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"sh" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1/delaythree{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"si" = (/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"sj" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"sk" = (/obj/structure/disposalpipe/segment,/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/platform{dir = 4; layer = 2.7},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"sm" = (/obj/effect/decal/strata_decals/grime/grime1{dir = 8},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"sn" = (/obj/structure/machinery/floodlight/landing/floor{pixel_x = -2},/obj/structure/machinery/landinglight/ds1{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"sp" = (/obj/effect/decal/cleanable/blood/oil,/obj/structure/largecrate/random/case/double,/obj/item/toy/beach_ball/holoball{pixel_x = -2; pixel_y = 15},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"sq" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/item/tool/wirecutters{pixel_x = -8; pixel_y = 18},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"ss" = (/obj/structure/largecrate/random/case/small,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"st" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/open/floor/almayer{dir = 1; icon_state = "plating_striped"},/area/golden_arrow/supply) +"sv" = (/obj/structure/surface/table/woodentable/fancy,/obj/structure/machinery/light{dir = 8},/obj/item/clothing/mask/cigarette/pipe{pixel_y = -7; layer = 2.8},/obj/item/reagent_container/spray/cleaner{pixel_x = -4; pixel_y = 7; layer = 3.04},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"sw" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"},/obj/structure/machinery/gear{id = "supply_elevator_gear"},/obj/structure/barricade/handrail{layer = 3.1; pixel_y = -1},/turf/open/floor/almayer{icon_state = "mono"},/area/golden_arrow/supply) +"sx" = (/obj/structure/machinery/cm_vending/sorted/medical,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"sy" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"sB" = (/turf/open/floor/almayer/research/containment/corner{dir = 1},/area/golden_arrow/medical) +"sC" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"sK" = (/obj/structure/largecrate/supply/generator,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"sL" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer,/area/golden_arrow/briefing) +"sN" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"sP" = (/obj/structure/machinery/light{dir = 8},/obj/structure/surface/table/reinforced/almayer_B,/obj/item/device/flashlight/lamp/green,/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"sR" = (/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/engineering) +"sS" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"sU" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3; pixel_x = -1},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"sY" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"ta" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"tc" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"td" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"te" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "blackcorner"},/area/golden_arrow/supply) +"tg" = (/obj/structure/surface/table/almayer,/obj/item/prop/almayer/comp_open{pixel_x = -6; pixel_y = 9},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"ti" = (/obj/structure/machinery/vending/coffee,/turf/open/floor/wood,/area/golden_arrow/shared_office) +"tj" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"tk" = (/obj/structure/machinery/door/poddoor/railing{id = "supply_elevator_railing"},/obj/structure/barricade/handrail{layer = 3.1; pixel_y = -1},/turf/open/floor/almayer,/area/golden_arrow/supply) +"to" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/storage/fancy/cigar{pixel_y = 2; layer = 3.04; pixel_x = -2},/obj/item/reagent_container/food/drinks/bottle/sake{pixel_x = -11; pixel_y = 16},/obj/item/reagent_container/food/drinks/bottle/sake{pixel_y = 16; pixel_x = -2},/obj/item/reagent_container/food/drinks/bottle/sake{pixel_x = 7; pixel_y = 16},/turf/open/floor/carpet/edge{dir = 1},/area/golden_arrow/shared_office) +"tq" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "silver"},/area/golden_arrow/briefing) +"tv" = (/obj/effect/decal/cleanable/blood/oil,/obj/structure/closet/coffin/woodencrate{name = "gym equipment"},/obj/item/clothing/gloves/boxing,/obj/item/clothing/gloves/boxing/blue,/obj/item/clothing/gloves/boxing/green,/obj/item/clothing/gloves/boxing/yellow,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"ty" = (/obj/structure/cargo_container/wy/right{opacity = 0; pixel_y = -17},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/item/device/flashlight/lamp/on{layer = 4.2; pixel_x = 3; pixel_y = 19},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/briefing) +"tD" = (/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{dir = 1; id = "Containment Cell 1"; locked = 1; name = "\improper Containment Cell 1"},/obj/structure/machinery/door/poddoor/shutters/almayer{id = "Containment Cell 1"; name = "\improper Containment Cell 1"; unacidable = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/door/poddoor/almayer/biohazard/white,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"tE" = (/obj/structure/machinery/door/poddoor/railing{dir = 2; id = "supply_elevator_railing"},/obj/structure/barricade/handrail{dir = 1; pixel_y = 12},/turf/open/floor/almayer,/area/golden_arrow/supply) +"tF" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/closed/wall/almayer,/area/golden_arrow/cryo_cells) +"tG" = (/obj/structure/machinery/light/containment{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer/research/containment/corner_var1{dir = 4},/area/golden_arrow/medical) +"tH" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/flora/pottedplant{icon_state = "pottedplant_18"; pixel_y = 6; pixel_x = -6},/obj/item/reagent_container/food/drinks/bottle/vodka{pixel_x = 6; pixel_y = 7; randpixel = 0},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/shared_office) +"tI" = (/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_side"},/area/golden_arrow/hangar) +"tM" = (/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap,/turf/open/floor/almayer{icon_state = "silverfull"},/area/golden_arrow/platoon_commander_rooms) +"tO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{density = 0; pixel_y = 19},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"tQ" = (/obj/structure/gun_rack/m41,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"tR" = (/obj/structure/ladder{height = 2; id = "cicladder4"},/turf/open/floor/plating/almayer,/area/golden_arrow/medical) +"tW" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"tX" = (/obj/structure/machinery/power/smes/buildable,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"tY" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/random/powercell,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"tZ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/medical/wall_med{pixel_y = 25},/obj/item/trash/uscm_mre{pixel_x = 9; pixel_y = 14},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"ua" = (/obj/structure/sign/safety/ladder{pixel_y = 29},/obj/effect/decal/cleanable/cobweb,/obj/structure/ladder{height = -1; id = "enginorth"},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"uc" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 10; icon_state = "silver"},/area/golden_arrow/briefing) +"ud" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"ue" = (/obj/structure/machinery/floodlight/landing/floor,/obj/effect/decal/warning_stripes{icon_state = "N"},/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/hangar) +"uh" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/prep_hallway) +"ui" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/structure/machinery/gear{id = "supply_elevator_gear"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"uj" = (/obj/structure/surface/table/almayer,/obj/item/prop/colony/game{pixel_x = 15; pixel_y = 10},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"uk" = (/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"um" = (/obj/effect/decal/medical_decals{icon_state = "docdecal2"},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"un" = (/obj/structure/machinery/cryopod,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"uq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/pump,/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"ut" = (/obj/structure/barricade/handrail{dir = 4},/obj/structure/barricade/handrail{dir = 8},/obj/structure/closet/secure_closet,/obj/effect/decal/cleanable/dirt,/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice3"; pixel_x = 16; pixel_y = -15},/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice2"; pixel_x = 16; pixel_y = 16},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"uu" = (/obj/structure/largecrate/supply/medicine/medkits{pixel_x = -4; pixel_y = 9},/obj/structure/largecrate/supply/medicine/medkits{layer = 3.1; pixel_x = 15; pixel_y = 24},/obj/structure/largecrate/random/mini/med{pixel_x = -6; pixel_y = 21},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/briefing) +"uy" = (/obj/structure/surface/table/almayer,/obj/item/reagent_container/food/drinks/coffee/marine{pixel_x = 5; pixel_y = 2},/obj/structure/machinery/reagentgrinder/industrial{pixel_y = 8},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"uB" = (/obj/structure/largecrate/supply/floodlights,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"uG" = (/obj/structure/filingcabinet/filingcabinet,/obj/item/clipboard,/obj/item/clipboard,/obj/item/folder/black,/obj/item/folder/black,/obj/item/folder/white,/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"uH" = (/obj/structure/machinery/door_control{dir = 1; id = "or3privacyshutter"; name = "Privacy Shutters"; pixel_y = -25},/obj/structure/machinery/iv_drip,/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"uI" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"uJ" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"uL" = (/turf/open/floor/prison{icon_state = "kitchen"},/area/golden_arrow/shared_office) +"uN" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 2},/obj/structure/disposalpipe/segment,/obj/structure/machinery/door/poddoor/shutters/almayer/open{id = "CIC_Conference"; name = "\improper CIC Conference Shutters"},/obj/structure/machinery/door/airlock/almayer/command/reinforced{dir = 1; name = "\improper Platoon Commander's Office"; req_access = list(); req_one_access_txt = "19;12"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) +"uO" = (/obj/structure/largecrate/supply/medicine/medkits{layer = 3.1; pixel_x = 8; pixel_y = 24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"uT" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/disposalpipe/junction,/obj/structure/platform{dir = 4; layer = 2.7},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"uU" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/shared_office) +"uV" = (/obj/structure/machinery/light{dir = 1},/obj/structure/closet/emcloset,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"uX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/storage/belt/utility/full{pixel_y = 12},/obj/item/storage/belt/utility/full{pixel_x = 2; pixel_y = 2},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"vb" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/dorms) +"vd" = (/turf/closed/wall/almayer/research/containment/wall/corner{dir = 1},/area/golden_arrow/medical) +"ve" = (/obj/structure/surface/rack,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"vf" = (/obj/structure/barricade/handrail{dir = 4},/obj/structure/barricade/handrail{dir = 8},/obj/structure/closet/secure_closet,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"vh" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"vj" = (/obj/effect/decal/cleanable/ash,/turf/open/floor/carpet{desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; name = "\improper carpet"},/area/golden_arrow/shared_office) +"vl" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"vn" = (/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"vq" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"vr" = (/turf/closed/wall/almayer,/area/golden_arrow/prep_hallway) +"vw" = (/obj/structure/machinery/cm_vending/clothing/synth/snowflake,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/synthcloset) +"vA" = (/obj/structure/machinery/camera/autoname/almayer/containment{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer/research/containment/floor2{dir = 8},/area/golden_arrow/medical) +"vB" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/machinery/door/poddoor/almayer{dir = 2; name = "\improper Storage Bay Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"vC" = (/obj/structure/machinery/door/poddoor/almayer{dir = 4; id = "bay2door"; name = "\improper Weapons Bay Two Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"vH" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"vJ" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"vK" = (/obj/structure/machinery/door/poddoor/almayer/open{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"vL" = (/obj/structure/machinery/cm_vending/sorted/medical,/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"vM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"vO" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/briefing) +"vS" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"vT" = (/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "silverfull"},/area/golden_arrow/platoon_commander_rooms) +"vU" = (/obj/structure/machinery/flasher{alpha = 1; id = "Containment Cell 2"; layer = 2.1; name = "Mounted Flash"; pixel_y = 30},/obj/structure/machinery/light/containment{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer/research/containment/floor2{dir = 1},/area/golden_arrow/medical) +"vV" = (/obj/structure/bed/chair/office/dark,/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"vW" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/computer/med_data/laptop{dir = 1; pixel_y = -4},/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"vX" = (/obj/structure/machinery/light/containment,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer/research/containment/floor2{dir = 1},/area/golden_arrow/medical) +"vY" = (/obj/structure/surface/table/reinforced/prison,/obj/effect/landmark/map_item,/obj/item/device/whistle,/turf/open/floor/prison,/area/golden_arrow/platoon_commander_rooms) +"wb" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"wc" = (/obj/structure/foamed_metal,/turf/open/floor/plating,/area/golden_arrow/engineering) +"wd" = (/obj/structure/machinery/power/terminal,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"wg" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3},/obj/effect/decal/warning_stripes{icon_state = "E"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"wh" = (/obj/effect/decal/cleanable/dirt,/obj/item/trash/crushed_cup{pixel_x = 6; pixel_y = -10},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"wj" = (/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"wk" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 1},/obj/structure/barricade/handrail{dir = 1; pixel_y = 12},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"wl" = (/obj/structure/bed/chair/office/dark,/turf/open/floor/almayer{dir = 6; icon_state = "emerald"},/area/golden_arrow/platoon_commander_rooms) +"wp" = (/obj/structure/bed/chair{dir = 8; pixel_y = 3},/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"wq" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/open/floor/almayer{dir = 5; icon_state = "orange"},/area/golden_arrow/platoon_commander_rooms) +"wr" = (/obj/structure/machinery/floodlight/landing/floor{pixel_x = 3},/obj/structure/machinery/landinglight/ds1{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ws" = (/obj/structure/pipes/vents/pump{dir = 4},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"wt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{dir = 1; name = "\improper Dorms"},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/dorms) +"wu" = (/obj/structure/machinery/autolathe,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"wv" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"wz" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/recharger,/obj/item/device/defibrillator,/obj/item/device/defibrillator,/obj/item/device/defibrillator,/obj/item/device/defibrillator,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"wA" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/machinery/door/poddoor/almayer/open{closed_layer = 3.3; dir = 4; id = "squadblastdoor"; layer = 3.3; name = "First Platoon Ready Bay Blast Door"; open_layer = 3.3},/obj/structure/machinery/door/firedoor/border_only/almayer{layer = 1.9},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"wC" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/floodlight/landing/floor,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"wF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/platform/stair_cut,/obj/structure/stairs/perspective{dir = 8; icon_state = "p_stair_full"},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"wI" = (/obj/structure/bed/chair/comfy/blue,/obj/structure/pipes/standard/simple/hidden/supply{dir = 1},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"wL" = (/turf/closed/wall/almayer/research/containment/wall/connect_w,/area/golden_arrow/medical) +"wN" = (/turf/closed/wall/almayer/research/containment/wall/corner,/area/golden_arrow/medical) +"wO" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/turf/open/floor/almayer{dir = 10; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"wT" = (/obj/structure/machinery/disposal,/obj/structure/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"wV" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"wW" = (/obj/structure/bed/chair/comfy{dir = 1},/turf/open/floor/strata{desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; icon = 'icons/turf/floors/floors.dmi'; icon_state = "wood"},/area/golden_arrow/shared_office) +"wX" = (/obj/structure/machinery/door/poddoor/almayer/open{dir = 4; name = "\improper Storage Bay One Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"wZ" = (/obj/structure/machinery/power/terminal{dir = 8},/obj/item/stack/catwalk{pixel_x = 12; pixel_y = -9},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"xc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"xd" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/briefing) +"xf" = (/obj/structure/largecrate/supply/ammo/m41amk1,/obj/structure/largecrate/supply/ammo/m41amk1{pixel_x = 1; pixel_y = 8},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"xh" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/item/device/flashlight/lamp/green{pixel_x = 2; pixel_y = 2; on = 1},/obj/item/reagent_container/food/drinks/bottle/rum{pixel_y = -2; pixel_x = -6; randpixel = 0},/turf/open/floor/prison{icon_state = "kitchen"},/area/golden_arrow/shared_office) +"xj" = (/obj/structure/closet/toolcloset,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/shared_office) +"xk" = (/obj/structure/machinery/door/airlock/almayer/marine/requisitions{name = "\improper Requisitions Storage"},/obj/structure/machinery/door/firedoor/border_only/almayer,/obj/structure/disposalpipe/segment{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"xn" = (/obj/structure/machinery/light/containment{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer/research/containment/corner{dir = 1},/area/golden_arrow/medical) +"xo" = (/obj/structure/machinery/light{dir = 8},/obj/structure/ladder{height = 2; id = "cicladder1"},/obj/structure/sign/safety/ladder{pixel_x = 23; pixel_y = -32},/turf/open/floor/plating/almayer,/area/golden_arrow/medical) +"xp" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"xr" = (/obj/structure/machinery/door/poddoor/railing{dir = 4; id = "supply_elevator_railing"},/turf/open/floor/almayer,/area/golden_arrow/supply) +"xs" = (/turf/open/floor/almayer/uscm{icon_state = "logo_directional1"},/area/golden_arrow/hangar) +"xt" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{dir = 1; name = "\improper Dorms"},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/dorms) +"xu" = (/obj/structure/machinery/door/airlock/almayer/command{dir = 1; name = "\improper Colonel, Fifth Division"},/turf/open/floor/almayer,/area/golden_arrow/shared_office) +"xw" = (/obj/item/device/flashlight/lamp/green,/obj/structure/surface/table/reinforced/black,/turf/open/floor/carpet{desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; name = "\improper carpet"},/area/golden_arrow/shared_office) +"xx" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4},/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"xE" = (/obj/structure/disposalpipe/segment,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"xF" = (/obj/structure/surface/rack,/obj/effect/decal/cleanable/dirt,/obj/item/storage/box/guncase/vp78,/obj/item/storage/box/guncase/vp78,/obj/item/storage/box/guncase/vp78,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"xG" = (/obj/structure/machinery/door/poddoor/railing{dir = 4; id = "supply_elevator_railing"},/obj/structure/stairs{dir = 8; icon_state = "ramptop"},/turf/open/floor/almayer,/area/golden_arrow/supply) +"xH" = (/obj/structure/disposalpipe/segment,/obj/structure/flora/pottedplant{icon_state = "pottedplant_22"; pixel_y = 8},/obj/structure/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"xL" = (/obj/structure/machinery/door_control{id = "or03"; name = "Surgery Door Release"; normaldoorcontrol = 1; pixel_x = 23},/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"xN" = (/obj/effect/landmark/observer_start,/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"xP" = (/obj/structure/machinery/door/poddoor/railing,/obj/item/tool/warning_cone,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"xQ" = (/obj/structure/machinery/light{dir = 1},/obj/structure/sign/safety/commline_connection{pixel_y = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/supply) +"xS" = (/obj/structure/machinery/door/poddoor/almayer{dir = 4; id = "apc2blastdoor"; name = "\improper Vehicle Bay Two Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"xT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/power/apc/almayer{dir = 4},/obj/structure/cable{icon_state = "0-8"; layer = 2.36},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"xU" = (/turf/closed/wall/almayer/white/hull,/area/golden_arrow/hangar) +"xW" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/largecrate/supply/supplies/flares{layer = 3.1},/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"xX" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"xZ" = (/obj/structure/machinery/cm_vending/clothing/synth,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"ya" = (/obj/structure/machinery/body_scanconsole,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"yd" = (/obj/structure/surface/table/gamblingtable,/obj/item/spacecash/c1000{name = "1000 BookerBucks"; desc = "Ten 7th battalion minted hundred-booker bucks. Every single damn one of them has Booker Fucking Peralta on them. The council of Bookers sit impatiently, as if each one thought they alone belonged to you. This regiment of angry Bookers have all since learned about your relations with the other Battle-Group-Buddies, and they want answers."},/turf/open/floor/prison/chapel_carpet,/area/golden_arrow/shared_office) +"yi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/largecrate/random/case/small,/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/briefing) +"yj" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3; pixel_x = -1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"yk" = (/obj/structure/surface/table/gamblingtable,/obj/item/spacecash/c1{name = "1 BookerBuck"; desc = "A single US Government minted one dollar bill. It has a picture of George Washington printed on it. Makes most people of English origin cry, but isn't worth very much. Could probably get you half a company in some fleets. "},/obj/item/device/flashlight/lamp/green{on = 1},/turf/open/floor/prison/chapel_carpet,/area/golden_arrow/shared_office) +"yl" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/holohoop{dir = 8; id = "basketball"; side = "right"},/obj/effect/landmark/supplyspawner/food,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/medical) +"yn" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"yo" = (/obj/structure/disposalpipe/segment,/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/platform_decoration{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"yp" = (/obj/structure/machinery/chem_master,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"yq" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"ys" = (/obj/item/storage/toolbox/mechanical/green{pixel_x = 2; pixel_y = -14},/obj/structure/prop{density = 1; desc = "A fuel enhancement system for dropships. It improves the thrust produced by the fuel combustion for faster travels. Full of bullet holes and probably needs to be replaced. The label says it was manufactured in 2171"; icon = 'icons/obj/structures/props/almayer_props64.dmi'; icon_state = "fuel_enhancer"; name = "Damaged FS/FES-3 fuel enhancer"; pixel_y = 1},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"yu" = (/obj/structure/machinery/camera/autoname/almayer{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{dir = 6; icon_state = "silver"},/area/golden_arrow/platoon_commander_rooms) +"yv" = (/turf/open/floor/almayer{dir = 8; icon_state = "silver"},/area/golden_arrow/briefing) +"yw" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/device/flashlight/lamp/green{pixel_y = 20; pixel_x = -7},/obj/item/ashtray/bronze{pixel_y = 19; pixel_x = 4},/obj/structure/machinery/light{dir = 8},/obj/effect/landmark/map_item{pixel_y = 3; pixel_x = -1},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"yy" = (/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice3"; pixel_x = 16; pixel_y = -15},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"yz" = (/obj/structure/surface/table/gamblingtable,/obj/item/toy/dice,/turf/open/floor/prison/chapel_carpet,/area/golden_arrow/shared_office) +"yA" = (/obj/structure/machinery/landinglight/ds1/delayone,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"yC" = (/obj/structure/surface/table/reinforced/black,/obj/structure/machinery/computer/emails{dir = 1; pixel_y = 4},/turf/open/floor/carpet{desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; name = "\improper carpet"},/area/golden_arrow/shared_office) +"yD" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"yE" = (/obj/structure/machinery/door_display/research_cell{dir = 8; has_wall_divider = 1; id = "Containment Cell 3"; layer = 3.2; name = "Cell 3 Control"; pixel_x = 16; pixel_y = -16},/obj/structure/machinery/door_display/research_cell{dir = 8; has_wall_divider = 1; id = "Containment Cell 2"; layer = 3.2; name = "Cell 2 Control"; pixel_x = 16; pixel_y = 16},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/door_control{id = "W_Containment Cell 2"; name = "Containment Lockdown"; pixel_x = 13; pixel_y = 7; req_one_access_txt = "19;28"},/obj/structure/machinery/door_control{id = "W_Containment Cell 3"; name = "Containment Lockdown"; pixel_x = 13; pixel_y = -6; req_one_access_txt = "19;28"},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"yG" = (/obj/structure/bed/chair,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"yH" = (/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/dorms) +"yI" = (/obj/structure/closet/secure_closet/staff_officer/armory/m4a1,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/shared_office) +"yJ" = (/obj/structure/largecrate/supply/motiondetectors,/obj/structure/largecrate/supply/explosives/grenades/less{icon_state = "case"; pixel_y = 10},/obj/item/ammo_box/magazine/mk1{layer = 3.1; pixel_x = -2; pixel_y = 14},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"yM" = (/obj/structure/machinery/power/terminal{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/item/storage/pouch/electronics{pixel_x = 6; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -7; pixel_y = -8},/obj/item/stack/cable_coil,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"yN" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_y = -1},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 1},/turf/open/floor/almayer/research/containment/entrance{dir = 8},/area/golden_arrow/medical) +"yP" = (/obj/structure/disposalpipe/up/almayer{dir = 8; id = "almayerlink_med_req"},/turf/closed/wall/almayer,/area/golden_arrow/supply) +"yQ" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/obj/structure/machinery/door/airlock/almayer/research/reinforced{dir = 8; name = "\improper Containment Airlock"},/obj/structure/machinery/door/poddoor/almayer/biohazard/white{dir = 4},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"yS" = (/turf/open/floor/plating,/area/golden_arrow/engineering) +"yT" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"yV" = (/obj/structure/bed/chair/comfy{buckling_y = 2; dir = 8; pixel_y = 2},/turf/open/floor/carpet/edge{dir = 4},/area/golden_arrow/shared_office) +"yW" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"yX" = (/turf/open/floor/plating,/area/golden_arrow/hangar) +"yY" = (/obj/structure/surface/table/reinforced/prison,/obj/item/roller/surgical,/obj/item/roller/surgical,/obj/item/roller/surgical,/obj/item/reagent_container/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"},/obj/item/folded_tent/med{pixel_x = -8; pixel_y = 14},/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"yZ" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"zc" = (/obj/structure/machinery/cryopod/right,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"zd" = (/obj/structure/machinery/power/monitor{name = "Core Power Monitoring"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"ze" = (/obj/item/ammo_box/magazine/mk1/heap,/obj/item/ammo_box/magazine/mk1/heap,/obj/item/ammo_box/magazine/m4ra/heap,/obj/item/ammo_box/magazine/m4ra/heap,/obj/item/ammo_magazine/rifle/lmg/heap,/obj/item/ammo_magazine/rifle/lmg/heap,/obj/item/ammo_magazine/rifle/lmg/heap,/obj/structure/closet/crate/ammo,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"zg" = (/turf/open/floor/almayer/uscm{dir = 4; icon_state = "logo_directional1"},/area/golden_arrow/hangar) +"zh" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1; pixel_y = -1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"zl" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/item/storage/box/uscm_mre,/obj/item/storage/box/uscm_mre,/obj/item/book/manual/chef_recipes,/obj/structure/machinery/power/apc/almayer{dir = 4},/turf/open/floor/prison{icon_state = "kitchen"},/area/golden_arrow/shared_office) +"zn" = (/obj/structure/machinery/cm_vending/sorted/attachments/blend,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"zo" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/general_air_control/large_tank_control{dir = 4; name = "Lower Deck Waste Tank Control"},/obj/structure/sign/safety/terminal{pixel_x = -17},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"zp" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/landmark/supplyspawner/medical,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"zs" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/briefing) +"zv" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/medical) +"zy" = (/obj/structure/cable/heavyduty{icon_state = "2-8"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"zA" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer/research/containment/corner3,/area/golden_arrow/medical) +"zC" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"zD" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"zE" = (/obj/structure/disposalpipe/segment,/obj/structure/machinery/light{dir = 4},/obj/structure/flora/pottedplant{icon_state = "pottedplant_22"; pixel_y = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"zF" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"zI" = (/obj/structure/machinery/door/firedoor/border_only/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"zJ" = (/obj/structure/machinery/iv_drip,/turf/open/floor/almayer{dir = 9; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"zK" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"zL" = (/obj/structure/largecrate/random/case/double,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"zM" = (/obj/structure/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"zN" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 1},/obj/structure/surface/table/almayer,/obj/item/paper_bin/uscm{pixel_x = -8; pixel_y = 5},/obj/item/clipboard{pixel_x = 12},/obj/item/tool/pen{pixel_x = 12},/obj/item/tool/hand_labeler{pixel_x = 4; pixel_y = 11},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"zO" = (/obj/structure/ladder{height = 2; id = "cicladder2"},/turf/open/floor/plating/almayer,/area/golden_arrow/medical) +"zQ" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -29},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/platoon_commander_rooms) +"zT" = (/turf/open/floor/almayer{dir = 4; icon_state = "black"},/area/golden_arrow/supply) +"zV" = (/obj/structure/machinery/door/airlock/almayer/medical/glass{access_modified = 1; dir = 2; name = "\improper Field Surgery Equipment"; req_access_txt = "20"; req_one_access = null},/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"zW" = (/obj/structure/phone_base/no_dnd{name = "Requisition Telephone"; phone_category = "Almayer"; phone_id = "Requisition"; pixel_y = 30},/turf/open/floor/almayer,/area/golden_arrow/supply) +"zZ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"Ac" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"Ad" = (/obj/structure/largecrate/supply/generator,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"Ae" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/faxmachine/uscm/command,/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"Ag" = (/obj/structure/machinery/photocopier{anchored = 0},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"Aj" = (/obj/structure/machinery/iv_drip,/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Ak" = (/obj/structure/machinery/light,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Am" = (/obj/effect/landmark/late_join/alpha,/obj/effect/landmark/start/marine/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"An" = (/obj/effect/vehicle_spawner/apc_med/fixed{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"Ap" = (/obj/structure/sign/safety/cryo{pixel_x = 8; pixel_y = -26},/turf/closed/wall/almayer/white,/area/golden_arrow/medical) +"Ar" = (/obj/structure/machinery/medical_pod/autodoc/unskilled,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"At" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/briefing) +"Av" = (/obj/structure/bed/chair/comfy/beige{dir = 1},/obj/structure/pipes/standard/simple/hidden/supply{dir = 1},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"Az" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"AA" = (/obj/structure/machinery/light{dir = 4},/obj/item/bedsheet/hop{pixel_y = 0},/obj/structure/bed{pixel_y = 0},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"AB" = (/obj/structure/disposalpipe/segment,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"AD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/largecrate/random/case/double,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"AE" = (/obj/structure/machinery/body_scanconsole,/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"AF" = (/turf/open/floor/almayer{dir = 9; icon_state = "orange"},/area/golden_arrow/platoon_commander_rooms) +"AG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/platform_decoration{dir = 4},/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/briefing) +"AJ" = (/obj/structure/machinery/landinglight/ds1{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"AK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/bulkhead_door{pixel_y = -29},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = -29},/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"AL" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/gear{id = "supply_elevator_gear"},/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"AM" = (/obj/structure/machinery/door/airlock/maintenance/colony{dir = 1; name = "\improper Power Substation"; req_one_access = null},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 2},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"AO" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"AP" = (/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 1},/obj/structure/machinery/door/airlock/almayer/medical/glass{access_modified = 1; dir = 2; name = "\improper Nurse Office"; req_access_txt = "20"; req_one_access = null},/turf/open/floor/plating,/area/golden_arrow/medical) +"AR" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"AS" = (/obj/structure/machinery/light{unacidable = 1; unslashable = 1},/obj/structure/machinery/optable,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer/research/containment/floor2{dir = 1},/area/golden_arrow/medical) +"AT" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"AU" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Second Platoon Ready Bay Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"AW" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/surface/rack{density = 0; pixel_y = 16},/obj/item/storage/xeno_tag_case/full{pixel_y = 15},/obj/item/device/camera{pixel_x = -3; pixel_y = 22},/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"AX" = (/obj/structure/machinery/light,/turf/open/floor/almayer{dir = 9; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"Bb" = (/obj/structure/bed/chair/comfy/delta{dir = 1},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/briefing) +"Bc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/squad_sergeant{name = "squad one sergeant locker"; req_access_txt = "32;39"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"Bd" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Be" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/structure/machinery/light,/obj/item/device/cassette_tape/aesthetic,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"Bi" = (/obj/structure/reagent_dispensers/fueltank{layer = 2.97},/turf/open/floor/almayer{dir = 4; icon_state = "blackcorner"},/area/golden_arrow/supply) +"Bk" = (/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"Bl" = (/obj/structure/machinery/power/apc/almayer{dir = 8},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Bm" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"Bn" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Bo" = (/obj/structure/machinery/door/window/westright,/obj/structure/machinery/shower{dir = 8; layer = 3.10; plane = -4},/obj/item/tool/soap{pixel_x = 2; pixel_y = 7},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) +"Bp" = (/obj/structure/machinery/power/terminal{dir = 8},/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Br" = (/obj/structure/machinery/computer/station_alert{dir = 8; pixel_x = 15; pixel_y = 2},/obj/item/stool,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"Bs" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/surgical{pixel_x = 30},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/synthcloset) +"Bt" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"Bu" = (/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"Bv" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1; pixel_y = -1},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_y = -1},/turf/open/floor/almayer/research/containment/entrance,/area/golden_arrow/medical) +"Bw" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Bx" = (/obj/structure/closet/secure_closet/medical2,/turf/open/floor/almayer{icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Bz" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; layer = 2.5; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"BB" = (/obj/item/device/radio/marine{pixel_x = 6},/obj/item/device/radio/marine{pixel_x = 3},/obj/item/device/radio/marine,/obj/item/storage/belt/medical/lifesaver/full,/obj/item/storage/belt/medical/lifesaver/full,/obj/item/storage/belt/medical/lifesaver/full,/obj/item/storage/belt/medical/lifesaver/full,/obj/item/storage/belt/medical/lifesaver/full,/obj/item/storage/belt/medical/lifesaver/full,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"BE" = (/obj/structure/bookcase{icon_state = "book-5"; name = "medical manuals bookcase"; opacity = 0},/obj/item/book/manual/surgery,/obj/item/book/manual/research_and_development,/obj/item/book/manual/medical_diagnostics_manual,/obj/item/book/manual/medical_cloning,/obj/structure/machinery/light{dir = 4},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"BG" = (/obj/structure/surface/table/reinforced/prison,/obj/item/device/flashlight/lamp,/obj/item/device/binoculars,/obj/structure/machinery/light/small{dir = 1},/obj/structure/machinery/computer/cameras/almayer_network/vehicle{pixel_y = 10},/turf/open/floor/almayer{icon_state = "orangefull"},/area/golden_arrow/platoon_commander_rooms) +"BH" = (/obj/structure/bed/chair/office/light{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"BI" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/surface/table/almayer,/obj/item/tool/stamp/denied{pixel_x = 2; pixel_y = 10},/obj/item/device/eftpos{eftpos_name = "Cargo Bay EFTPOS scanner"; pixel_x = -10},/obj/item/tool/stamp/ro{pixel_x = -8; pixel_y = 10},/obj/item/storage/fancy/cigar{pixel_x = 6},/obj/item/ashtray/glass{pixel_x = 11; pixel_y = 9},/turf/open/floor/almayer{dir = 8; icon_state = "orange"},/area/golden_arrow/supply) +"BL" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/landmark/supplyspawner/engineering,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"BM" = (/obj/structure/surface/table/reinforced/prison,/obj/effect/landmark/map_item,/obj/item/clipboard,/obj/item/folder/black_random,/obj/item/device/binoculars,/turf/open/floor/prison,/area/golden_arrow/platoon_commander_rooms) +"BN" = (/turf/open/floor/almayer{dir = 4; icon_state = "plating_striped"},/area/golden_arrow/supply) +"BO" = (/obj/structure/machinery/door/airlock/almayer/generic{dir = 2; name = "\improper Officer's Bunk"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/shared_office) +"BR" = (/obj/structure/machinery/light,/turf/open/floor/wood,/area/golden_arrow/shared_office) +"BS" = (/obj/structure/machinery/computer/supplycomp,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"BU" = (/turf/open/floor/almayer,/area/golden_arrow/supply) +"BV" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/sink/kitchen{dir = 8; pixel_y = 6; pixel_x = 14},/obj/item/reagent_container/food/snacks/cheeseburger{pixel_x = -5; pixel_y = 2; randpixel = 0},/turf/open/floor/prison{icon_state = "kitchen"},/area/golden_arrow/shared_office) +"BW" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"BX" = (/obj/structure/bed/chair/office/dark,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) +"Cf" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{dir = 1; icon_state = "blackcorner"},/area/golden_arrow/supply) +"Ci" = (/obj/structure/window/framed/almayer/white,/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 1},/turf/open/floor/plating,/area/golden_arrow/medical) +"Cj" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/chem_dispenser/soda/beer,/turf/open/floor/prison{icon_state = "kitchen"},/area/golden_arrow/shared_office) +"Cl" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"Cm" = (/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Cn" = (/obj/structure/pipes/vents/scrubber{dir = 8},/obj/structure/machinery/door/poddoor/railing,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Co" = (/obj/structure/machinery/power/terminal{dir = 1},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Cp" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"Cr" = (/obj/item/stack/catwalk{pixel_x = 4},/obj/item/stack/catwalk{pixel_x = -3; pixel_y = 6},/obj/structure/machinery/landinglight/ds1{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Ct" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"Cx" = (/obj/structure/surface/table/reinforced/prison,/obj/item/storage/box/gloves{pixel_x = 5; pixel_y = 12},/obj/item/storage/box/masks{pixel_x = 5},/obj/structure/closet/secure_closet/surgical{pixel_y = 30},/obj/item/reagent_container/glass/minitank{pixel_x = -7; pixel_y = 4},/turf/open/floor/almayer{icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Cy" = (/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/synthcloset) +"Cz" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"CA" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"CB" = (/obj/effect/landmark/start/marine/leader/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"CC" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/briefing) +"CG" = (/obj/effect/decal/cleanable/blood/oil/streak,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"CH" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"CI" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer/uscm{dir = 1},/area/golden_arrow/hangar) +"CR" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"CS" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"CT" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"},/obj/structure/machinery/light{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"CU" = (/obj/structure/surface/table/almayer,/obj/item/paper_bin/uscm,/obj/item/clipboard,/turf/open/floor/almayer{dir = 10; icon_state = "orange"},/area/golden_arrow/supply) +"CV" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer/research/containment/corner_var1{dir = 4},/area/golden_arrow/medical) +"CW" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/pipes/standard/manifold/hidden/supply{dir = 1},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"CY" = (/obj/structure/bed/chair{dir = 8; pixel_y = 3},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"CZ" = (/obj/structure/surface/table/almayer,/obj/item/storage/firstaid/o2{pixel_x = 6; pixel_y = 6},/obj/item/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/adv{pixel_x = 6; pixel_y = 6},/obj/item/storage/firstaid/adv{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/adv,/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Dd" = (/obj/structure/platform{dir = 1},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"Dg" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Dh" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/briefing) +"Di" = (/obj/structure/machinery/door/poddoor/shutters/almayer{dir = 4; id = "W_Containment Cell 1"; name = "\improper Containment Cell 5"; unacidable = 1},/obj/structure/machinery/door/poddoor/almayer/biohazard/white{dir = 4},/turf/closed/wall/almayer/research/containment/wall/purple,/area/golden_arrow/medical) +"Dm" = (/obj/structure/machinery/door/airlock/almayer/medical/glass{dir = 1; id = "medcryobeds"; id_tag = "medcryobeds"; name = "Medical Hypersleep Access"; req_one_access = null},/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"Do" = (/obj/structure/surface/table/almayer,/obj/item/device/camera{pixel_x = -7; pixel_y = 9},/obj/item/device/camera_film{pixel_y = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"Ds" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Dt" = (/obj/structure/window/framed/almayer/white,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"Du" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer/research/containment/corner4,/area/golden_arrow/medical) +"Dw" = (/turf/closed/wall/almayer/research/containment/wall/west,/area/golden_arrow/medical) +"Dx" = (/obj/structure/sign/prop1{layer = 3.1},/obj/structure/pipes/standard/simple/hidden/supply{dir = 1},/obj/structure/surface/table/reinforced/black,/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"Dy" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Dz" = (/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"DA" = (/turf/closed/wall/almayer,/area/golden_arrow/engineering) +"DG" = (/obj/structure/closet,/obj/structure/sign/safety/med_cryo{pixel_x = -17},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/medical) +"DH" = (/obj/structure/cargo_container/kelland/right{opacity = 0},/obj/structure/cargo_container/kelland/right{opacity = 0; pixel_y = 22},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/briefing) +"DJ" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"DM" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"DP" = (/obj/structure/machinery/power/terminal,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"DR" = (/obj/effect/decal/strata_decals/grime/grime1{dir = 4},/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"DS" = (/obj/structure/pipes/vents/pump,/turf/open/floor/almayer,/area/golden_arrow/briefing) +"DU" = (/obj/structure/bed/chair/comfy{dir = 4},/turf/open/floor/carpet,/area/golden_arrow/shared_office) +"DV" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/machinery/door/poddoor/almayer{id = "synthbay"; name = "\improper Synthetic Storage Bay"},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"DX" = (/obj/structure/largecrate/supply/medicine/medkits{pixel_x = -11; pixel_y = 9},/obj/structure/largecrate/supply/medicine/medkits{pixel_x = 14; pixel_y = 9},/obj/structure/largecrate/supply/medicine/medkits{layer = 3.1; pixel_x = 8; pixel_y = 24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/briefing) +"DZ" = (/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/shared_office) +"Eb" = (/obj/structure/surface/table/reinforced/prison,/obj/item/paper_bin/uscm{pixel_y = 7},/obj/item/tool/pen,/obj/structure/sign/safety/med_cryo{pixel_x = 32},/obj/item/weapon/pole/wooden_cane,/obj/item/weapon/pole/wooden_cane,/obj/item/weapon/pole/wooden_cane,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/medical) +"Ec" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 1; icon_state = "black"},/area/golden_arrow/supply) +"Ed" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/effect/decal/strata_decals/grime/grime2,/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{dir = 10; icon_state = "cargo"},/area/golden_arrow/briefing) +"Ee" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"Ef" = (/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"Ei" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Ek" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"El" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/surface/table/reinforced/black,/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"Eq" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{dir = 10; icon_state = "cargo"},/area/golden_arrow/briefing) +"Er" = (/obj/structure/pipes/vents/scrubber{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Es" = (/obj/item/hardpoint/locomotion/apc_wheels,/obj/structure/surface/table/almayer,/obj/structure/machinery/power/apc/almayer{cell_type = /obj/item/cell/hyper; dir = 1},/turf/open/floor/almayer{icon_state = "blackcorner"},/area/golden_arrow/supply) +"Ev" = (/turf/closed/wall/almayer/white,/area/golden_arrow/hangar) +"Ew" = (/obj/structure/machinery/bioprinter{stored_metal = 125},/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Ex" = (/obj/structure/platform{dir = 4; layer = 2.7},/turf/open/floor/almayer{dir = 6; icon_state = "orange"},/area/golden_arrow/supply) +"Ey" = (/turf/open/floor/almayer{icon_state = "blue"},/area/golden_arrow/shared_office) +"EB" = (/obj/structure/machinery/light{dir = 1},/obj/structure/machinery/disposal,/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"EC" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/door/window/eastright{dir = 8; req_access_txt = "8"},/obj/structure/machinery/door/window/eastleft{req_access_txt = "8"},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"ED" = (/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar,/turf/open/floor/plating,/area/golden_arrow/hangar) +"EF" = (/obj/structure/pipes/vents/pump{dir = 4},/turf/open/floor/almayer{dir = 1; icon_state = "orangecorner"},/area/golden_arrow/supply) +"EG" = (/turf/open/space/basic,/area/space) +"EH" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"EI" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{dir = 8; icon_state = "orange"},/area/golden_arrow/supply) +"EL" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"EM" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/supplyspawner/weapons,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"EN" = (/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{id = "Containment Cell 3"; locked = 1; name = "\improper Containment Cell 3"; unacidable = 1},/obj/structure/machinery/door/poddoor/shutters/almayer/containment{dir = 4; id = "Containment Cell 3"; name = "\improper Containment Cell 3"},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/machinery/door/poddoor/almayer/biohazard/white{dir = 4},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"EO" = (/obj/structure/sign/safety/rewire{pixel_x = 32},/obj/structure/barricade/handrail{layer = 3.1; pixel_y = -1},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"ES" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"ET" = (/obj/structure/machinery/washing_machine,/obj/structure/machinery/washing_machine{layer = 3.5; pixel_y = 15},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"EU" = (/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/engineering) +"EV" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/item/stack/cable_coil{pixel_x = 7},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"EW" = (/obj/structure/machinery/status_display{pixel_y = 30},/obj/structure/closet/firecloset/full,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"EX" = (/obj/structure/machinery/cm_vending/sorted/medical,/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"EZ" = (/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"Fa" = (/obj/effect/decal/cleanable/dirt,/turf/closed/wall/almayer/outer,/area/golden_arrow/cryo_cells) +"Fb" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"Fc" = (/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"Fd" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/machinery/door/firedoor/border_only/almayer,/obj/structure/machinery/door/firedoor/border_only/almayer,/obj/structure/machinery/door/airlock/almayer/generic{access_modified = 1; name = "Storage"; req_one_access_txt = "19;21"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"Fh" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/machinery/door/firedoor/border_only/almayer{layer = 1.9},/obj/structure/window/framed/almayer/hull,/turf/closed/wall/almayer/outer,/area/golden_arrow/dorms) +"Fi" = (/obj/structure/pipes/vents/pump,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Fj" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"Fm" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/machinery/alarm/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Fo" = (/obj/structure/closet/secure_closet/marine_personal{job = "Platoon Commander"},/obj/item/clothing/under/marine/officer/boiler,/obj/item/clothing/suit/storage/jacket/marine/service,/obj/item/clothing/suit/storage/jacket/marine/dress/officer/bomber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"Ft" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{dir = 1; icon_state = "blue"},/area/golden_arrow/shared_office) +"Fu" = (/obj/structure/machinery/cryopod/right{pixel_y = 6},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/medical) +"Fw" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"Fx" = (/obj/structure/bed/sofa/south/white/right,/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"Fy" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "black"},/area/golden_arrow/supply) +"Fz" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"FC" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3},/obj/effect/decal/warning_stripes{icon_state = "E"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"FF" = (/turf/open/space/basic,/area/golden_arrow/medical) +"FG" = (/obj/structure/cargo_container/wy/left{opacity = 0; pixel_y = -17},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/item/toy/plush/therapy/red{desc = "An unapproved bootleg copy of the patented Sergeant Huggs. Looks like he's seen better days."; force = 15; layer = 4.1; name = "Discharged Huggs"; pixel_x = 5; pixel_y = 32; throwforce = 15},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/briefing) +"FH" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3; pixel_x = -1},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"FK" = (/obj/structure/foamed_metal,/turf/open/space/basic,/area/golden_arrow/briefing) +"FL" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"FO" = (/obj/effect/decal/warning_stripes{icon_state = "S"; pixel_y = 1},/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) +"FR" = (/obj/structure/platform{dir = 1},/obj/structure/barricade/handrail{dir = 1; pixel_y = 12},/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/briefing) +"FT" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "plating_striped"},/area/golden_arrow/supply) +"FU" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = -29},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = -29},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"FV" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/cable/heavyduty{icon_state = "1-8"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"FW" = (/obj/structure/sign/prop1{pixel_y = 32},/obj/structure/filingcabinet/security{pixel_x = -8},/obj/structure/filingcabinet/medical{pixel_x = 8},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"FX" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = 27},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = 27},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"Ga" = (/turf/open/floor/almayer{dir = 6; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"Gc" = (/obj/structure/closet/secure_closet/commander,/obj/item/clothing/suit/storage/marine/light/vest,/obj/item/device/whistle,/obj/item/device/megaphone,/obj/item/device/radio,/obj/item/clothing/shoes/laceup,/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"Gf" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/structure/machinery/gear{id = "supply_elevator_gear"},/obj/structure/barricade/handrail{dir = 1; pixel_y = 12},/turf/open/floor/almayer{icon_state = "mono"},/area/golden_arrow/supply) +"Gi" = (/obj/structure/machinery/door/poddoor/shutters/almayer{dir = 4; id = "containmentlockdown_S"; name = "\improper Containment Lockdown"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"Gm" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"Gn" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1/delayone{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Go" = (/obj/structure/surface/table/almayer,/obj/item/storage/firstaid/o2{pixel_x = 6; pixel_y = 6},/obj/item/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/adv{pixel_x = 6; pixel_y = 6},/obj/item/storage/firstaid/adv{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/adv,/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"Gr" = (/obj/structure/surface/rack,/obj/effect/decal/cleanable/dirt,/obj/item/storage/box/guncase/flamer,/obj/item/storage/box/guncase/flamer,/obj/item/storage/box/guncase/flamer,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"Gs" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/gear{id = "supply_elevator_gear"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Gt" = (/obj/structure/largecrate/random/case/double,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"Gu" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/machinery/door/poddoor/almayer{dir = 2; name = "\improper Storage Bay Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"Gv" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"Gw" = (/obj/structure/closet/secure_closet/marine_personal{job = "Platoon Sergeant"; pixel_x = -7},/obj/structure/closet/secure_closet/marine_personal{job = "Platoon Corpsman"; pixel_x = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"Gz" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/structure/machinery/floodlight/landing/floor,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"GB" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/structure/machinery/gear{id = "supply_elevator_gear"},/obj/structure/barricade/handrail{dir = 1; pixel_y = 12},/turf/open/floor/almayer{icon_state = "mono"},/area/golden_arrow/supply) +"GC" = (/obj/structure/machinery/cm_vending/sorted/uniform_supply,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"GF" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"GG" = (/obj/structure/machinery/recharge_station,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/synthcloset) +"GI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/pump{dir = 8},/obj/structure/surface/rack,/obj/item/book/manual/robotics_cyborgs{pixel_y = 4},/obj/item/tool/weldingtool/hugetank,/obj/item/tool/wirecutters,/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"GJ" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"GK" = (/obj/effect/decal/warning_stripes{icon_state = "E"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"GL" = (/obj/structure/surface/table/almayer,/obj/item/storage/firstaid/fire{pixel_x = 6; pixel_y = 8},/obj/effect/decal/cleanable/cobweb2/dynamic,/obj/item/storage/firstaid/regular,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"GM" = (/obj/structure/machinery/door_control{id = "containmentlockdown_S"; name = "Containment Lockdown"; pixel_y = 28; req_one_access_txt = "28"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"GO" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/alarm/almayer{dir = 1},/obj/item/storage/toolbox/electrical,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"GQ" = (/obj/structure/machinery/power/terminal{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/item/stack/catwalk{pixel_x = 12; pixel_y = -9},/obj/item/tool/warning_cone{pixel_y = 16},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"GR" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer/research/containment/corner_var1{icon_state = "containment_corner_variant_2"},/area/golden_arrow/medical) +"GS" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) +"GT" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"GV" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"GX" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"GY" = (/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice1"; pixel_x = 16; pixel_y = -15},/obj/structure/bed/chair{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"GZ" = (/obj/structure/machinery/camera/autoname/almayer/containment{dir = 1; name = "ship-grade camera"},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Hb" = (/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/shared_office) +"Hc" = (/obj/structure/surface/rack,/obj/item/storage/box/nade_box/frag,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"Hd" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = 27},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = 27},/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/water_cooler/stacks{density = 0; layer = 3.6; pixel_y = 18},/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"Hf" = (/turf/closed/wall/almayer/white/hull,/area/golden_arrow/medical) +"Hj" = (/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"Hl" = (/turf/open/floor/almayer{icon_state = "silver"},/area/golden_arrow/platoon_commander_rooms) +"Hn" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/largecrate/supply/supplies/mre{layer = 3.1},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"Ho" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/catwalk{pixel_x = 2; pixel_y = -9},/obj/structure/machinery/landinglight/ds1/delayone{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Hq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/largecrate/supply/explosives/grenades,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"Hr" = (/turf/open/floor/almayer{dir = 8; icon_state = "orange"},/area/golden_arrow/supply) +"Ht" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/supply) +"Hu" = (/obj/structure/closet/secure_closet/personal/cabinet{req_access = null},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"Hx" = (/obj/structure/machinery/door/airlock/almayer/command{name = "\improper Conference Room"},/obj/structure/machinery/door/poddoor/shutters/almayer/open{dir = 4; id = "CIC_Conference"; name = "\improper CIC Conference Shutters"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/shared_office) +"Hz" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"HB" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{dir = 9; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"HC" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"HG" = (/obj/structure/window/framed/almayer/white,/obj/structure/machinery/door/poddoor/shutters/almayer{id = "or3privacyshutter"; name = "\improper Privacy Shutters"},/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 2},/turf/open/floor/plating,/area/golden_arrow/medical) +"HI" = (/obj/structure/surface/table/woodentable/fancy,/obj/structure/machinery/computer/card{dir = 4; pixel_x = 2},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"HL" = (/turf/closed/wall/almayer/white,/area/golden_arrow/medical) +"HQ" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/recharger,/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"HU" = (/turf/open/floor/almayer{dir = 4; icon_state = "silver"},/area/golden_arrow/briefing) +"HX" = (/turf/open/floor/almayer/research/containment/corner{dir = 4},/area/golden_arrow/medical) +"Ic" = (/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"If" = (/obj/structure/platform{dir = 4; layer = 2.7},/turf/open/floor/almayer{dir = 5; icon_state = "orange"},/area/golden_arrow/supply) +"Ig" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"Ih" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/obj/structure/machinery/computer/supplycomp,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"Ii" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Ik" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/tool/stamp/hop{name = "Commanding Officer's rubber stamp"; pixel_x = -5; pixel_y = 9},/obj/item/paper_bin/uscm{pixel_y = 6; pixel_x = 7},/obj/item/tool/pen/red/clicky{pixel_x = -6; pixel_y = 3},/obj/item/tool/pen/blue/clicky{pixel_x = -6; pixel_y = -3},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"Il" = (/obj/effect/decal/warning_stripes{icon_state = "E"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Im" = (/obj/structure/bed/chair{dir = 8; pixel_y = 3},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"In" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "black"},/area/golden_arrow/supply) +"Io" = (/obj/structure/flora/pottedplant{icon_state = "pottedplant_22"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/shared_office) +"Ip" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Iq" = (/turf/open/floor/almayer/uscm{dir = 9; icon_state = "logo_directional1"},/area/golden_arrow/hangar) +"Is" = (/obj/structure/machinery/door/poddoor/shutters/almayer{dir = 4; id = "W_Containment Cell 5"; name = "\improper Containment Cell 5"; unacidable = 1},/obj/structure/machinery/door/poddoor/almayer/biohazard/white{dir = 4},/turf/closed/wall/almayer/research/containment/wall/purple,/area/golden_arrow/medical) +"It" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"Iv" = (/obj/structure/ladder{id = "engisouth"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Ix" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer/research/containment/corner{dir = 1},/area/golden_arrow/medical) +"Iy" = (/obj/structure/machinery/computer/squad_changer{dir = 4; layer = 2.99},/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{dir = 9; icon_state = "silver"},/area/golden_arrow/platoon_commander_rooms) +"IA" = (/turf/open/floor/almayer/uscm{dir = 6; icon_state = "logo_directional1"},/area/golden_arrow/hangar) +"IC" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/engineering) +"ID" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/door/poddoor/almayer{dir = 2; name = "\improper Storage Bay Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"IE" = (/obj/structure/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/structure/sign/safety/storage{pixel_x = -17},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/turf/open/floor/almayer{dir = 10; icon_state = "orange"},/area/golden_arrow/supply) +"IF" = (/obj/structure/machinery/door/poddoor/railing,/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"IG" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/door/poddoor/almayer{dir = 2; name = "\improper Storage Bay Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"II" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/pump{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"IK" = (/obj/effect/decal/warning_stripes{icon_state = "E"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"IN" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/pump,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/briefing) +"IO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/bulkhead_door{pixel_y = -29},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = -29},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"IP" = (/obj/structure/surface/table/almayer,/obj/effect/spawner/random/toolbox,/obj/item/clipboard,/turf/open/floor/almayer{dir = 8; icon_state = "orange"},/area/golden_arrow/supply) +"IQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/scrubber{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"IR" = (/obj/structure/largecrate/supply/supplies/water,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"IS" = (/obj/item/reagent_container/spray/cleaner{pixel_x = 5; pixel_y = 10},/obj/structure/janitorialcart,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"IU" = (/obj/structure/surface/table/almayer,/obj/item/storage/toolbox/mechanical/green{pixel_y = 10},/obj/item/storage/toolbox/mechanical/green{pixel_x = -7; pixel_y = -1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"IY" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Ja" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Jc" = (/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{id = "Containment Cell 2"; locked = 1; name = "\improper Containment Cell 2"},/obj/structure/machinery/door/poddoor/shutters/almayer/containment{dir = 4; id = "Containment Cell 2"; name = "\improper Containment Cell 2"},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/machinery/door/poddoor/almayer/biohazard/white{dir = 4},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"Jd" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Je" = (/obj/structure/closet/secure_closet/engineering_chief,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"Jf" = (/obj/structure/machinery/light{dir = 1},/obj/structure/machinery/cm_vending/clothing/dress,/turf/open/floor/strata{desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; icon = 'icons/turf/floors/floors.dmi'; icon_state = "wood"},/area/golden_arrow/shared_office) +"Jg" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/largecrate/random/case/small,/obj/structure/largecrate/random/mini/small_case{pixel_y = 11},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"Jh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"Ji" = (/obj/structure/machinery/light/small{dir = 8},/obj/item/prop/magazine/boots/n160{pixel_y = -8; pixel_x = 4; layer = 2.8},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/platoon_commander_rooms) +"Jl" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/target{layer = 3.1; name = "punching bag"; pixel_y = 16},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Jm" = (/obj/structure/machinery/power/smes/buildable,/obj/effect/decal/cleanable/dirt,/obj/item/storage/toolbox/electrical{pixel_y = 10},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"Jn" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/briefing) +"Jq" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 6; icon_state = "silver"},/area/golden_arrow/briefing) +"Jr" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/door/poddoor/almayer{dir = 4; id = "bay2door"; name = "\improper Weapons Bay Two Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"Js" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1; pixel_y = -1},/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Ju" = (/obj/structure/prop/almayer/computers/sensor_computer3,/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"Jv" = (/obj/structure/machinery/cm_vending/sorted/medical/marinemed,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/shared_office) +"Jw" = (/obj/structure/machinery/cm_vending/sorted/uniform_supply,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"Jy" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/item/stool{pixel_x = -1; pixel_y = 12},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Jz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/bed/chair/comfy/delta{dir = 1},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/briefing) +"JA" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"JC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"JF" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/prop/almayer/computer/PC{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"JN" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/item/tool/wet_sign,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"JP" = (/obj/structure/bed/chair/comfy{dir = 4},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"JS" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/almayer,/area/golden_arrow/briefing) +"JU" = (/turf/closed/wall/almayer/reinforced,/area/golden_arrow/shared_office) +"JV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/pipes/standard/manifold/hidden/supply{dir = 1},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"JX" = (/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 2},/obj/structure/machinery/door/airlock/almayer/medical/glass{access_modified = 1; dir = 2; name = "\improper Nurse Office"; req_access_txt = "20"; req_one_access = null},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"JY" = (/obj/structure/machinery/portable_atmospherics/powered/scrubber,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"JZ" = (/obj/structure/surface/table/gamblingtable,/obj/item/storage/fancy/candle_box,/turf/open/floor/prison/chapel_carpet,/area/golden_arrow/shared_office) +"Ka" = (/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/briefing) +"Kb" = (/turf/closed/wall/almayer/outer,/area/space) +"Kd" = (/obj/structure/prop/almayer/ship_memorial,/turf/open/space/basic,/area/space) +"Kf" = (/obj/structure/machinery/light,/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"Kg" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = 32},/obj/structure/sign/safety/hazard{pixel_x = 15; pixel_y = 32},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/engineering) +"Ki" = (/obj/structure/largecrate/supply/ammo/m41amk1,/obj/structure/largecrate/supply/ammo/m41amk1{pixel_y = 10},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"Kj" = (/obj/structure/window/framed/almayer,/turf/closed/wall/almayer/reinforced,/area/golden_arrow/supply) +"Kl" = (/obj/structure/surface/rack,/obj/effect/spawner/random/technology_scanner,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Kn" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Kp" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Kq" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Kr" = (/obj/structure/surface/table/reinforced/prison,/obj/item/book/manual/surgery,/obj/structure/sign/safety/biohazard{pixel_x = -17},/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"Ks" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"Kv" = (/obj/structure/machinery/light{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Kw" = (/obj/structure/machinery/light{dir = 8},/obj/structure/ladder{height = 2; id = "cicladder3"},/obj/structure/sign/safety/ladder{pixel_x = 23; pixel_y = 32},/turf/open/floor/plating/almayer,/area/golden_arrow/medical) +"Kx" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"KD" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/folder/black{pixel_y = 8},/obj/item/folder/yellow,/obj/item/device/flashlight/lamp/green{pixel_y = 8; pixel_x = -16},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"KE" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"KF" = (/obj/structure/machinery/power/apc/almayer{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"KG" = (/obj/structure/surface/rack,/obj/effect/decal/cleanable/dirt,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/obj/item/clothing/accessory/health/ceramic_plate,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"KH" = (/obj/structure/surface/table/almayer,/obj/item/storage/toolbox/mechanical/green{pixel_y = 6},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"KI" = (/obj/structure/bed/chair/office/dark{dir = 4; layer = 3.25},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) +"KK" = (/obj/structure/cable{layer = 2.36; pixel_x = -3; pixel_y = 12},/obj/structure/cable{layer = 2.36; pixel_x = -1; pixel_y = 12},/obj/structure/cable{layer = 2.36; pixel_x = 1; pixel_y = 12},/obj/structure/cable{layer = 2.36; pixel_x = 3; pixel_y = 12},/obj/structure/cable{icon_state = "0-2"; layer = 2.36; pixel_x = -3; pixel_y = -3},/obj/structure/cable{icon_state = "0-2"; layer = 2.36; pixel_x = -1; pixel_y = -3},/obj/structure/cable{icon_state = "0-2"; layer = 2.36; pixel_x = 1; pixel_y = -3},/obj/structure/cable{icon_state = "0-2"; layer = 2.36; pixel_x = 3; pixel_y = -3},/turf/open/floor/plating,/area/golden_arrow/hangar) +"KL" = (/obj/item/tool/pen,/obj/item/paper_bin/uscm,/obj/structure/surface/table/reinforced/black,/turf/open/floor/carpet{desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; name = "\improper carpet"},/area/golden_arrow/shared_office) +"KM" = (/obj/structure/machinery/light,/obj/structure/machinery/computer/crew,/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"KN" = (/obj/structure/window/framed/almayer/white,/turf/open/space/basic,/area/golden_arrow/medical) +"KO" = (/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{layer = 2.1; name = "non-functional maintenance airlock"},/obj/structure/sign/safety/airlock{pixel_x = 8; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"KR" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"KT" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"KV" = (/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"KW" = (/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"KX" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/medical) +"KY" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"KZ" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/chem_dispenser/soda,/obj/structure/machinery/light{dir = 1},/turf/open/floor/prison{icon_state = "kitchen"},/area/golden_arrow/shared_office) +"Lb" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Lc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/firecloset/full,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Ld" = (/obj/structure/machinery/prop/almayer/CICmap,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"Le" = (/obj/structure/machinery/computer/cameras/almayer/containment{dir = 8; pixel_x = -4; pixel_y = 6},/obj/structure/surface/table/almayer,/obj/item/tool/extinguisher{pixel_x = 7; pixel_y = 7},/obj/structure/machinery/door_control{id = "containmentlockdown_S"; name = "Containment Lockdown"; pixel_x = -5; pixel_y = -4; req_one_access_txt = "19;28"},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Lh" = (/obj/structure/machinery/power/terminal,/obj/effect/decal/cleanable/dirt,/obj/item/stack/cable_coil,/obj/structure/machinery/light{dir = 4},/obj/item/tool/warning_cone{pixel_x = -15; pixel_y = 16},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Li" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/briefing) +"Lj" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Lk" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Ln" = (/obj/structure/barricade/handrail{dir = 8},/obj/structure/closet/secure_closet,/obj/structure/barricade/handrail{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Lp" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/item/tool/stamp/ro{name = "spare requisitions officer's rubber stamp"; pixel_x = -7; pixel_y = 11},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"Ls" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{dir = 4; icon_state = "blackcorner"},/area/golden_arrow/supply) +"Lw" = (/turf/open/floor/almayer{icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"Ly" = (/obj/structure/machinery/computer/overwatch/almayer{layer = 3.2; pixel_y = 20},/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/platoon_commander_rooms) +"LB" = (/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) +"LC" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"LD" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/sign/safety/ladder{pixel_x = -17; pixel_y = -15},/obj/structure/sign/safety/maint{pixel_x = -17},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"LE" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/coatrack{pixel_y = 1; pixel_x = -5},/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"LG" = (/obj/structure/largecrate/supply/ammo/m41amk1/forecon,/obj/structure/largecrate/supply/ammo/m41amk1/forecon{pixel_x = 3; pixel_y = 11},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"LK" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/almayer{dir = 4; icon_state = "orange"},/area/golden_arrow/supply) +"LL" = (/obj/effect/decal/warning_stripes{icon_state = "E"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"LM" = (/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"LN" = (/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/supply) +"LO" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/prop/almayer/CICmap{layer = 4; pixel_x = -1; pixel_y = 5},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"LQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"LR" = (/obj/effect/decal/warning_stripes{icon_state = "S"; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) +"LT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"LW" = (/turf/open/floor/almayer{dir = 1; icon_state = "silver"},/area/golden_arrow/briefing) +"LY" = (/obj/item/device/binoculars,/turf/open/floor/almayer{dir = 10; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"LZ" = (/obj/structure/surface/table/reinforced/prison,/obj/item/reagent_container/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"},/obj/structure/machinery/camera/autoname/almayer{dir = 4; name = "ship-grade camera"},/obj/structure/machinery/light,/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Mb" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/squad_sergeant{name = "squad two sergeant locker"; req_access_txt = "32;40"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"Mc" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Me" = (/obj/structure/machinery/door/airlock/almayer/marine/requisitions{dir = 1; name = "\improper Requisitions Storage"},/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 1},/obj/structure/disposalpipe/up/almayer{dir = 4; id = "almayerlink_OT1_req"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"Mf" = (/obj/structure/machinery/computer/supply_drop_console/limited/alternate{density = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Mi" = (/obj/structure/machinery/landinglight/ds1,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Ml" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/briefing) +"Mo" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Mp" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/prison/chapel_carpet,/area/golden_arrow/shared_office) +"Mq" = (/obj/structure/surface/table/almayer,/obj/item/roller,/obj/item/roller,/obj/item/roller,/obj/item/roller,/obj/item/roller,/obj/item/tool/extinguisher,/obj/item/tool/extinguisher,/obj/item/tool/extinguisher,/obj/item/tool/extinguisher,/obj/item/tool/extinguisher,/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"Mt" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Mw" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3},/obj/effect/decal/strata_decals/grime/grime4,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Mx" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"My" = (/obj/structure/machinery/medical_pod/sleeper,/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"Mz" = (/obj/structure/pipes/standard/manifold/fourway/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"MA" = (/obj/vehicle/powerloader{dir = 4},/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"MD" = (/obj/item/prop/magazine/book/starshiptroopers{layer = 4.1; pixel_y = 47},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"ME" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "N"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"MF" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"MH" = (/obj/structure/surface/table/almayer,/obj/structure/largecrate/random/mini/small_case/c{pixel_x = -15; pixel_y = 9},/obj/item/clothing/mask/cigarette/cigar/tarbacks{pixel_x = -13; pixel_y = 10},/obj/item/storage/fancy/cigar/matchbook/brown{pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"MI" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"MO" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; layer = 2.5; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"MP" = (/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{name = "\improper Engineering Airlock"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"MU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Nc" = (/obj/structure/machinery/light{unacidable = 1; unslashable = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer/research/containment/corner{dir = 4},/area/golden_arrow/medical) +"Nf" = (/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{name = "\improper Engineering Airlock"; req_one_access = list()},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"Nh" = (/obj/structure/machinery/door/poddoor/almayer{dir = 4; name = "\improper Storage Bay Two Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"Ni" = (/turf/open/floor/almayer/uscm{dir = 10; icon_state = "logo_directional1"},/area/golden_arrow/hangar) +"Nk" = (/obj/item/storage/box/pillbottles,/obj/item/storage/box/pillbottles,/obj/item/storage/box/pillbottles,/obj/item/storage/box/pillbottles,/obj/item/storage/box/pillbottles,/obj/item/storage/box/pillbottles,/obj/structure/closet/secure_closet/chemical,/obj/structure/machinery/light{unacidable = 1; unslashable = 1},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Nl" = (/obj/structure/machinery/light,/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Nm" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Nn" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/computer/overwatch/almayer,/turf/open/floor/almayer{icon_state = "emeraldfull"},/area/golden_arrow/platoon_commander_rooms) +"Nr" = (/obj/effect/landmark/start/marine/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"Nw" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/light{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"Nx" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"NA" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"NC" = (/obj/structure/bed/sofa/south/white/left,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"ND" = (/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/almayer{icon_state = "silver"},/area/golden_arrow/briefing) +"NE" = (/turf/open/floor/almayer/research/containment/corner_var1{dir = 4},/area/golden_arrow/medical) +"NF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"NL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/cryo{name = "hypersleep semiotic"; pixel_x = 15; pixel_y = -26},/turf/closed/wall/almayer/outer,/area/golden_arrow/cryo_cells) +"NN" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"NO" = (/turf/open/floor/almayer{dir = 1; icon_state = "blackcorner"},/area/golden_arrow/supply) +"NP" = (/obj/structure/largecrate/supply/motiondetectors,/obj/item/ammo_box/magazine/mk1{layer = 3.1; pixel_x = -12; pixel_y = 14},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"NS" = (/obj/structure/closet/secure_closet/engineering_personal,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"NT" = (/obj/structure/machinery/cryopod/right{layer = 3.1; pixel_y = 13},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"NV" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 1},/obj/structure/machinery/door/airlock/almayer/secure{dir = 1; name = "\improper Assembly Room"; req_access = list(); req_one_access_txt = "19;12"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"Oa" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "1-8"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Oc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Od" = (/obj/structure/machinery/status_display{pixel_x = 32; pixel_y = 16},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"Oe" = (/turf/closed/wall/almayer,/area/golden_arrow/supply) +"Of" = (/obj/structure/surface/rack,/obj/effect/decal/cleanable/dirt,/obj/item/clothing/under/marine/officer/boiler,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Og" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/bulkhead_door{pixel_y = -29},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = -29},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"Oi" = (/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"Ok" = (/obj/structure/machinery/cryopod/right,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"On" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Oo" = (/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice1"; pixel_x = 16; pixel_y = -15},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Op" = (/obj/structure/machinery/prop/almayer/CICmap,/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"Oq" = (/obj/structure/machinery/power/terminal{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Or" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"Os" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Ow" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Ox" = (/obj/structure/machinery/disposal,/turf/open/floor/strata{desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; icon = 'icons/turf/floors/floors.dmi'; icon_state = "wood"},/area/golden_arrow/shared_office) +"OC" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 1},/obj/structure/surface/table/reinforced/black,/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"OE" = (/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{dir = 1; id = "Containment Cell 5"; locked = 1; name = "\improper Containment Cell 5"},/obj/structure/machinery/door/poddoor/shutters/almayer{id = "Containment Cell 5"; name = "\improper Containment Cell 5"; unacidable = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/door/poddoor/almayer/biohazard/white,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"OG" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/item/reagent_container/food/snacks/carpmeat,/obj/item/reagent_container/food/snacks/carpmeat,/obj/item/reagent_container/food/snacks/carpmeat,/obj/item/reagent_container/food/snacks/carpmeat,/obj/item/reagent_container/food/snacks/carpmeat,/turf/open/floor/prison{icon_state = "kitchen"},/area/golden_arrow/shared_office) +"OH" = (/obj/structure/machinery/floodlight/landing,/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"OL" = (/obj/structure/prop/invuln/lifeboat_hatch_placeholder{layer = 2.1; name = "non-functional maintenance airlock"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"OM" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"ON" = (/obj/structure/machinery/cm_vending/clothing/medical_crew,/turf/open/space/basic,/area/golden_arrow/medical) +"OO" = (/turf/open/floor/almayer{dir = 4; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"OP" = (/obj/structure/machinery/door/poddoor/railing{dir = 2},/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"OQ" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"OR" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"OS" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"OT" = (/obj/structure/machinery/door/poddoor/shutters/almayer{dir = 4; id = "W_Containment Cell 1"; name = "\improper Containment Cell 5"; unacidable = 1},/obj/structure/machinery/door/poddoor/almayer/biohazard/white{dir = 4},/turf/closed/wall/almayer/research/containment/wall/purple{dir = 1},/area/golden_arrow/medical) +"OV" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/phone_base{dir = 4; name = "Medical Telephone"; phone_category = "Almayer"; phone_id = "Medical Lower"; pixel_x = -16},/obj/item/reagent_container/glass/beaker/large,/obj/item/reagent_container/glass/beaker/large,/obj/item/reagent_container/glass/beaker,/obj/item/reagent_container/glass/beaker,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"OY" = (/turf/closed/wall/almayer/research/containment/wall/connect_e2{icon_state = "containment_wall_connect_e"},/area/golden_arrow/medical) +"Pa" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"Pb" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Pc" = (/obj/structure/barricade/handrail{dir = 8},/obj/structure/surface/table/almayer,/obj/item/prop/magazine/dirty/torn{pixel_x = 2; pixel_y = 6},/obj/item/trash/cigbutt{pixel_x = -7; pixel_y = 10},/obj/item/trash/eat{pixel_x = 10},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Pf" = (/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/briefing) +"Pg" = (/obj/effect/decal/medical_decals{icon_state = "docdecal2"},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Pl" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Pm" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "0-4"},/obj/structure/machinery/power/apc/almayer{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Pn" = (/obj/structure/surface/table/almayer,/obj/item/reagent_container/glass/beaker{pixel_x = 8},/obj/item/paper_bin/wy{pixel_x = -5; pixel_y = 6},/obj/item/tool/pen{pixel_y = -2},/obj/item/reagent_container/dropper{pixel_x = -1; pixel_y = 9},/obj/structure/machinery/biohazard_lockdown{pixel_x = 8; pixel_y = 10},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Po" = (/obj/structure/machinery/light,/turf/open/floor/almayer{dir = 6; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"Pp" = (/obj/structure/bed/chair/comfy{dir = 4},/turf/open/floor/wood,/area/golden_arrow/shared_office) +"Pt" = (/obj/structure/window/framed/almayer,/obj/structure/window/framed/almayer/hull,/obj/structure/window/framed/almayer/hull,/turf/open/floor/plating,/area/golden_arrow/dorms) +"Pv" = (/obj/structure/machinery/power/monitor{name = "Core Power Monitoring"},/obj/structure/sign/safety/terminal{pixel_x = -17},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"Pw" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "E"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Py" = (/obj/structure/surface/table/almayer,/obj/item/toy/deck/uno,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"Pz" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/closet/secure_closet/surgical{pixel_x = -30},/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"PA" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"PC" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 2; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"PD" = (/obj/structure/platform_decoration,/turf/open/floor/almayer{icon_state = "orange"},/area/golden_arrow/supply) +"PE" = (/turf/open/floor/almayer{dir = 8; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"PF" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; layer = 2.5; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"PG" = (/obj/structure/machinery/vending/cola,/turf/open/floor/wood,/area/golden_arrow/shared_office) +"PH" = (/obj/structure/surface/table/almayer,/obj/item/trash/wy_chips_pepper{pixel_x = -5; pixel_y = 5},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"PI" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = -29},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = -29},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"PL" = (/obj/structure/machinery/cm_vending/sorted/medical/wall_med{pixel_y = 25},/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"PM" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"PN" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/machinery/door/poddoor/railing{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"PO" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"PQ" = (/obj/structure/machinery/power/apc/almayer,/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/reagent_dispensers/fueltank/custom,/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"PR" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"PT" = (/obj/structure/platform_decoration{dir = 4},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/engineering) +"PU" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Qa" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{name = "\improper Cryo Bay"},/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"Qb" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/camera/autoname/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/medical) +"Qc" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Qd" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/largecrate/random/case/double{layer = 3.1; pixel_y = 9},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Qe" = (/obj/structure/pipes/vents/pump,/turf/open/floor/almayer{icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"Qf" = (/obj/structure/surface/table/woodentable/fancy,/obj/item/device/flashlight/lamp/green{on = 1},/turf/open/floor/wood,/area/golden_arrow/shared_office) +"Qg" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"Qh" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1; pixel_y = -1},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_y = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"Qk" = (/obj/structure/largecrate/random/secure,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"Qp" = (/obj/structure/machinery/floodlight/landing/floor,/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/hangar) +"Qq" = (/obj/structure/barricade/handrail/kutjevo,/obj/structure/machinery/light{dir = 8},/turf/open/floor/prison/chapel_carpet,/area/golden_arrow/shared_office) +"Qs" = (/obj/structure/surface/table/almayer,/obj/item/prop/almayer/comp_open{pixel_x = 2; pixel_y = 6},/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Qu" = (/obj/structure/barricade/handrail{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Qz" = (/obj/effect/decal/cleanable/dirt,/obj/structure/supply_drop/echo,/obj/effect/decal/cleanable/dirt,/obj/structure/platform{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"QB" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"QF" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"QH" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"QI" = (/obj/structure/machinery/cm_vending/sorted/medical/chemistry,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"QM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"QN" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/obj/structure/machinery/door/poddoor/railing{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"QO" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/structure/machinery/gear{id = "supply_elevator_gear"},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"QW" = (/turf/open/floor/almayer,/area/golden_arrow/briefing) +"QZ" = (/obj/effect/decal/warning_stripes{icon_state = "N"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"Rd" = (/obj/structure/barricade/handrail{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Re" = (/obj/structure/window/framed/almayer/white,/obj/structure/window/framed/almayer/white/hull,/turf/open/floor/plating,/area/golden_arrow/medical) +"Rf" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Rg" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/recharger,/obj/item/device/defibrillator,/obj/item/device/defibrillator,/obj/item/device/defibrillator,/turf/open/floor/almayer{dir = 4; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Ri" = (/obj/structure/closet,/obj/item/maintenance_jack,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/synthcloset) +"Rk" = (/turf/open/floor/almayer{dir = 5; icon_state = "silver"},/area/golden_arrow/briefing) +"Rl" = (/obj/structure/disposalpipe/segment,/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"Rm" = (/obj/structure/surface/table/reinforced/prison,/obj/item/reagent_container/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"},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer/research/containment/corner{dir = 1},/area/golden_arrow/medical) +"Rn" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Rp" = (/obj/structure/sink{dir = 1; pixel_y = -10},/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"Rr" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/supplyspawner/ammo,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"Rs" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"Rv" = (/obj/structure/bookcase{icon_state = "book-5"; name = "law and engineering manuals bookcase"; opacity = 0},/obj/item/book/manual/marine_law,/obj/item/book/manual/detective,/obj/item/book/manual/security_space_law,/obj/item/book/manual/engineering_guide,/obj/item/book/manual/engineering_construction,/obj/item/book/manual/orbital_cannon_manual,/obj/item/book/manual/ripley_build_and_repair,/obj/item/book/manual/engineering_hacking,/obj/structure/machinery/light{dir = 8},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"Ry" = (/turf/open/floor/almayer,/area/golden_arrow/shared_office) +"RE" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/briefing) +"RJ" = (/obj/structure/machinery/light,/turf/open/floor/almayer{dir = 10; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"RK" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"RL" = (/obj/structure/closet/crate/trashcart,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"RN" = (/obj/structure/largecrate/supply/ammo/m41amk1,/obj/structure/largecrate/supply/ammo/m41amk1{pixel_x = 3; pixel_y = 10},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"RP" = (/obj/structure/machinery/door/poddoor/shutters/almayer{dir = 4; id = "W_Containment Cell 5"; name = "\improper Containment Cell 5"; unacidable = 1},/obj/structure/machinery/door/poddoor/almayer/biohazard/white{dir = 4},/turf/closed/wall/almayer/research/containment/wall/purple{dir = 1},/area/golden_arrow/medical) +"RQ" = (/obj/structure/window/framed/almayer,/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 1},/turf/open/floor/plating,/area/golden_arrow/supply) +"RW" = (/obj/structure/closet/secure_closet/smartgunner{name = "squad one smartgunner locker"; req_access_txt = "14;39"; req_one_access = list()},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"RX" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"RY" = (/obj/effect/landmark/start/marine/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"Sa" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/landmark/start/requisition,/turf/open/floor/almayer{icon_state = "orange"},/area/golden_arrow/supply) +"Sb" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/almayer,/area/golden_arrow/cryo_cells) +"Sd" = (/obj/structure/window/framed/almayer/white/hull,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Se" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/cable/heavyduty{icon_state = "1-2-8"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Sh" = (/obj/structure/machinery/cm_vending/clothing/staff_officer{density = 0; pixel_x = -30},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/shared_office) +"Sj" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"So" = (/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Sp" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Sr" = (/obj/structure/machinery/power/apc/almayer{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"Ss" = (/obj/structure/bed/chair{buckling_y = 10; dir = 4; pixel_y = 10},/obj/structure/machinery/light,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"St" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/open/floor/almayer{dir = 5; icon_state = "red"},/area/golden_arrow/platoon_commander_rooms) +"Su" = (/turf/closed/wall/almayer/research/containment/wall/east,/area/golden_arrow/medical) +"Sv" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/status_display{pixel_x = -32},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Sw" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"SC" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/sink{pixel_y = 24},/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"SF" = (/obj/structure/disposalpipe/segment,/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"SH" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/structure/machinery/floodlight/landing/floor,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"SJ" = (/obj/structure/machinery/door/poddoor/shutters/almayer{dir = 4; id = "W_Containment Cell 3"; name = "\improper Containment Cell 5"; unacidable = 1},/obj/structure/machinery/door/poddoor/almayer/biohazard/white{dir = 4},/turf/closed/wall/almayer/research/containment/wall/purple{dir = 8},/area/golden_arrow/medical) +"SK" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/machinery/light{dir = 8},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"SL" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"SM" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"SP" = (/obj/structure/largecrate/supply/ammo{fill_from_loc = 1; name = "sentry crate"},/obj/item/ammo_magazine/sentry{layer = 3.01},/obj/item/defenses/handheld/sentry,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"ST" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"SZ" = (/obj/structure/barricade/handrail,/obj/structure/reagent_dispensers/fueltank{anchored = 1; icon = 'icons/obj/structures/props/generic_props.dmi'; icon_state = "weldtank_old"; layer = 2.9},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Tf" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8},/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"Th" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"Ti" = (/obj/structure/cargo_container/kelland/left{layer = 3; opacity = 0},/obj/structure/cargo_container/kelland/left{opacity = 0; pixel_y = 22},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/briefing) +"Tj" = (/obj/structure/sign/prop1{pixel_y = 32},/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/strata{desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; icon = 'icons/turf/floors/floors.dmi'; icon_state = "wood"},/area/golden_arrow/shared_office) +"Tk" = (/obj/structure/machinery/prop{density = 1; desc = "A pump used for refueling the dropship."; icon_state = "pipe_d"; layer = 2.7; name = "refueling pump"; pixel_y = -5},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Tr" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/prop/almayer/computer/PC{dir = 4},/turf/open/floor/almayer{dir = 8; icon_state = "orange"},/area/golden_arrow/supply) +"Ts" = (/obj/structure/machinery/door/poddoor/railing{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Tu" = (/obj/structure/pipes/vents/pump{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Tv" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/light,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/shared_office) +"Tw" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Ty" = (/obj/structure/surface/table/almayer,/obj/effect/spawner/random/technology_scanner{pixel_x = 15},/obj/effect/decal/cleanable/dirt,/obj/item/reagent_container/food/drinks/coffee/marine{pixel_x = 5; pixel_y = 12},/obj/item/reagent_container/food/drinks/dry_ramen{pixel_x = 2; pixel_y = 5},/obj/item/reagent_container/food/drinks/coffee/marine{pixel_x = -10; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Tz" = (/obj/structure/surface/table/almayer,/obj/item/storage/firstaid/rad{pixel_x = -7; pixel_y = 2},/obj/item/storage/firstaid/toxin{pixel_x = 8; pixel_y = 2},/obj/structure/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"TA" = (/obj/structure/machinery/pipedispenser,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"TC" = (/obj/structure/machinery/cm_vending/clothing/senior_officer{req_access = list(); req_access_txt = "26"},/obj/structure/sign/safety/hvac_old{pixel_x = 8; pixel_y = 32},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"TD" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/platoon_commander_rooms) +"TE" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/largecrate/random/case/small{layer = 3.1; pixel_x = 3; pixel_y = 35},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"TF" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/structure/machinery/gear{id = "supply_elevator_gear"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"TG" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/supply) +"TH" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; layer = 2.5; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"TJ" = (/obj/structure/ladder{id = "enginorth"},/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"TK" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/door/poddoor/railing{dir = 2},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"TL" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3},/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"TM" = (/obj/structure/machinery/computer/card{dir = 4},/obj/structure/surface/table/reinforced/black,/turf/open/floor/carpet{desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; name = "\improper carpet"},/area/golden_arrow/shared_office) +"TN" = (/obj/structure/machinery/light{dir = 1},/obj/structure/closet/crate/construction,/obj/item/stack/sandbags_empty/half,/obj/item/stack/sandbags_empty/half,/obj/item/stack/sandbags_empty/half,/obj/item/stack/sandbags_empty/half,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"TO" = (/obj/structure/surface/table/woodentable/fancy,/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"TR" = (/obj/structure/bed/chair/comfy{dir = 4},/turf/open/floor/prison/chapel_carpet,/area/golden_arrow/shared_office) +"TS" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"TT" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/supply) +"TV" = (/obj/structure/platform,/turf/open/floor/almayer{icon_state = "orange"},/area/golden_arrow/supply) +"TX" = (/obj/structure/surface/table/almayer,/turf/open/floor/almayer{dir = 1; icon_state = "plating_striped"},/area/golden_arrow/supply) +"Ub" = (/obj/structure/machinery/smartfridge/chemistry{density = 0; pixel_y = 16},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Ud" = (/obj/structure/machinery/faxmachine/uscm,/obj/structure/surface/table/reinforced/prison,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) +"Ue" = (/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/shared_office) +"Uh" = (/obj/structure/machinery/cm_vending/sorted/medical/blood,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Ui" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Uj" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1/delaythree,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Ul" = (/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/landmark/supplyspawner/ammo,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"Un" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/almayer,/area/golden_arrow/briefing) +"Uo" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"Uq" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Uv" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/carpet{desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; name = "\improper carpet"},/area/golden_arrow/shared_office) +"Uw" = (/obj/structure/machinery/autolathe,/obj/item/stack/sheet/mineral/phoron/small_stack{pixel_y = 15},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Uz" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1/delayone{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"UC" = (/obj/structure/machinery/flasher{alpha = 1; id = "Containment Cell 3"; layer = 2.1; name = "Mounted Flash"; pixel_y = 30},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer/research/containment/floor2{dir = 1},/area/golden_arrow/medical) +"UD" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/item/reagent_container/food/snacks/tofukabob,/obj/item/reagent_container/food/snacks/tofubreadslice,/obj/item/reagent_container/food/snacks/tofubreadslice,/turf/open/floor/prison{icon_state = "kitchen"},/area/golden_arrow/shared_office) +"UE" = (/turf/closed/wall/almayer/research/containment/wall/south,/area/golden_arrow/medical) +"UG" = (/obj/structure/machinery/door_control{id = "CIC_Conference"; name = "Conference Lockdown"; pixel_x = -7; pixel_y = 9; req_access_txt = "1"},/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/obj/structure/surface/table/reinforced/black,/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"UH" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/door/poddoor/almayer/open{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"UI" = (/obj/structure/machinery/power/fusion_engine{name = "\improper S-52 fusion reactor 17"},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"UJ" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "S"; layer = 3.3},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"UL" = (/obj/structure/window/framed/almayer/hull,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"UM" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/cameras/engineering{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"UO" = (/obj/effect/landmark/late_join,/obj/effect/landmark/start/marine/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"UQ" = (/obj/structure/surface/table/almayer,/obj/structure/bedsheetbin{pixel_y = 6},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"UR" = (/obj/structure/machinery/cm_vending/sorted/marine_food,/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"UU" = (/obj/structure/closet/secure_closet/marine_personal{job = "Smartgunner"; pixel_x = -7},/obj/structure/closet/secure_closet/marine_personal{job = "Squad Sergeant"; pixel_x = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"UV" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{autoname = 0; dir = 1; req_one_access = list()},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"UX" = (/obj/structure/machinery/power/apc/almayer,/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"UY" = (/turf/closed/wall/almayer/research/containment/wall/north,/area/golden_arrow/medical) +"Vb" = (/obj/structure/window/framed/almayer,/turf/closed/wall/almayer/reinforced,/turf/closed/wall/almayer/reinforced,/area/golden_arrow/supply) +"Vc" = (/turf/closed/wall/almayer/research/containment/wall/divide,/area/golden_arrow/medical) +"Vf" = (/obj/structure/barricade/handrail/kutjevo,/turf/open/floor/prison/chapel_carpet,/area/golden_arrow/shared_office) +"Vg" = (/obj/structure/machinery/door/airlock/almayer/medical/glass{dir = 8; name = "Morgue Waiting Room"; req_one_access = null},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"Vk" = (/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"Vl" = (/obj/structure/fence,/obj/structure/machinery/door/poddoor/almayer/open{closed_layer = 3.3; dir = 4; id = "squadblastdoor"; layer = 3.3; name = "First Platoon Ready Bay Blast Door"; open_layer = 3.3},/obj/structure/machinery/door/firedoor/border_only/almayer{layer = 1.9},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"Vm" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/microwave{pixel_x = -2; pixel_y = 7},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"Vn" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{layer = 3.1; name = "Midway Remote Control Console"; pixel_y = 6; shuttleId = "dropship_midway"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Vp" = (/obj/effect/decal/warning_stripes{icon_state = "S"; layer = 3.3},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Vq" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer/research/containment/floor2{dir = 1},/area/golden_arrow/medical) +"Vr" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Vt" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Vv" = (/obj/effect/decal/cleanable/dirt,/obj/item/reagent_container/glass/bucket/janibucket{pixel_x = -7; pixel_y = 15},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Vx" = (/obj/structure/closet/secure_closet/engineering_electrical{req_one_access = list()},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Vy" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"Vz" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/landinglight/ds1{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"VC" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/item/clothing/ears/earmuffs{pixel_x = -8; pixel_y = 8},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/item/device/walkman{pixel_x = 4; pixel_y = -6},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"VD" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"VE" = (/obj/structure/machinery/floodlight/landing/floor,/obj/structure/machinery/landinglight/ds1,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"VI" = (/obj/structure/machinery/autodoc_console,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"VJ" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"VL" = (/turf/open/floor/almayer{dir = 1; icon_state = "plating_striped"},/area/golden_arrow/supply) +"VM" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"VO" = (/obj/structure/bed,/obj/item/bedsheet/brown,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/shared_office) +"VP" = (/turf/open/floor/carpet/edge,/area/golden_arrow/shared_office) +"VQ" = (/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"VR" = (/obj/structure/machinery/door/poddoor/almayer{dir = 2; name = "\improper Storage Bay Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"VT" = (/obj/structure/machinery/computer/supplycomp,/obj/structure/sign/safety/terminal{pixel_x = 8; pixel_y = 32},/turf/open/floor/almayer{dir = 1; icon_state = "orange"},/area/golden_arrow/supply) +"VU" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"VV" = (/obj/structure/sign/safety/storage{pixel_x = 9; pixel_y = 29},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"VW" = (/obj/structure/sign/safety/storage{pixel_x = 7; pixel_y = -28},/obj/structure/reagent_dispensers/ammoniatank,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"VX" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"VY" = (/obj/structure/bed,/obj/item/bedsheet/medical,/turf/open/floor/almayer{dir = 1; icon_state = "sterile_green_corner"},/area/golden_arrow/medical) +"Wa" = (/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Wb" = (/obj/structure/surface/table/almayer,/obj/effect/spawner/random/powercell,/obj/effect/spawner/random/tool,/obj/item/packageWrap,/turf/open/floor/almayer{dir = 8; icon_state = "orange"},/area/golden_arrow/supply) +"We" = (/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Wg" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"Wh" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/cryo_cells) +"Wj" = (/obj/structure/machinery/recharge_station,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Wl" = (/obj/structure/machinery/cm_vending/clothing/staff_officer_armory,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/shared_office) +"Wm" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Wo" = (/turf/open/floor/carpet,/area/golden_arrow/shared_office) +"Wp" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Wr" = (/obj/structure/barricade/handrail{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Ws" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Wt" = (/obj/structure/barricade/handrail,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Wu" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = 38},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = 38},/obj/structure/sign/safety/ammunition{pixel_y = 26},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"Wv" = (/obj/structure/surface/table/almayer,/obj/item/reagent_container/food/drinks/coffeecup{pixel_x = -8},/obj/item/reagent_container/food/drinks/h_chocolate{pixel_y = 7},/obj/item/clothing/glasses/disco_fever{pixel_x = 7; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Ww" = (/turf/open/floor/almayer{dir = 1; icon_state = "black"},/area/golden_arrow/supply) +"Wx" = (/obj/structure/machinery/door/airlock/almayer/command/reinforced{dir = 1; name = "\improper Combat Information Center"},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"WA" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"WD" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/heavyduty{icon_state = "1-4"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"WE" = (/obj/structure/pipes/vents/pump{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"WH" = (/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{req_access = list(); req_one_access_txt = "8;12;39;40"},/obj/structure/gun_rack/m41,/turf/open/floor/almayer{icon_state = "plating_striped"},/area/golden_arrow/supply) +"WJ" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"WK" = (/turf/open/floor/carpet{desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; name = "\improper carpet"},/area/golden_arrow/shared_office) +"WM" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"WN" = (/obj/structure/foamed_metal,/turf/open/space/basic,/area/golden_arrow/platoon_commander_rooms) +"WP" = (/obj/structure/largecrate/supply/supplies/tables_racks,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"WQ" = (/turf/open/floor/almayer{dir = 10; icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"WS" = (/obj/structure/machinery/cm_vending/clothing/dress{req_access = list(1); pixel_y = 0},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/platoon_commander_rooms) +"WV" = (/obj/effect/landmark/supply_elevator,/turf/open/floor/almayer/empty,/area/supply/station) +"WW" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"WX" = (/obj/structure/machinery/optable,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"WY" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/structure/machinery/gear{id = "supply_elevator_gear"},/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Xa" = (/obj/structure/toilet{dir = 8; pixel_y = 8; layer = 2.9},/obj/structure/window{pixel_y = -2; layer = 2.95},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) +"Xc" = (/obj/structure/bed/chair{dir = 8; pixel_y = 3},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"Xd" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Xe" = (/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"Xi" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Xl" = (/obj/structure/platform_decoration{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/briefing) +"Xm" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "mono"},/area/golden_arrow/cryo_cells) +"Xn" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = 27},/obj/structure/sign/safety/hazard{pixel_x = 14; pixel_y = 27},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"Xo" = (/obj/structure/machinery/firealarm{dir = 4; pixel_x = 21},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"Xr" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"Xs" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/item/storage/box/cups{pixel_x = -6; pixel_y = 8},/obj/item/reagent_container/spray/cleaner{pixel_x = 7; pixel_y = 14},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"Xt" = (/obj/structure/pipes/vents/scrubber{dir = 4},/turf/open/floor/almayer{dir = 8; icon_state = "orange"},/area/golden_arrow/supply) +"Xv" = (/obj/effect/decal/warning_stripes{icon_state = "W"; layer = 3.3; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Xy" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"XA" = (/obj/structure/sink{pixel_y = 24},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer/research/containment/corner_var1{dir = 4},/area/golden_arrow/medical) +"XD" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; layer = 2.5; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"XG" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"XH" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"XI" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/closet/fireaxecabinet{pixel_y = 30},/obj/structure/surface/table/almayer,/obj/item/prop/almayer/comp_closed{pixel_y = 10},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"XJ" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; layer = 2.5; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"XL" = (/obj/structure/bed/chair/office/dark,/turf/open/floor/almayer{dir = 6; icon_state = "blue"},/area/golden_arrow/platoon_commander_rooms) +"XP" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/largecrate/random/case{pixel_y = 5},/obj/structure/largecrate/random/case/double{pixel_y = 15},/obj/structure/largecrate/random/case{pixel_y = -5},/obj/structure/largecrate/random/mini/small_case{layer = 3.1; pixel_x = 8; pixel_y = 14},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/briefing) +"XT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/largecrate/random/case/double,/obj/item/storage/box/cups{pixel_x = -1; pixel_y = 16},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"XV" = (/turf/open/floor/almayer{dir = 1; icon_state = "blue"},/area/golden_arrow/shared_office) +"XW" = (/obj/structure/machinery/cryopod,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"XY" = (/obj/structure/machinery/light{dir = 1},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/stairs{dir = 4},/turf/open/floor/almayer{allow_construction = 0; icon_state = "plate"},/area/golden_arrow/briefing) +"Yd" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"Yf" = (/obj/structure/pipes/vents/pump{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Yh" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/power/apc/almayer,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Yl" = (/obj/structure/machinery/door/poddoor/railing{dir = 8; id = "supply_elevator_railing"},/turf/open/floor/almayer,/area/golden_arrow/supply) +"Ym" = (/obj/structure/machinery/light{dir = 8},/obj/structure/machinery/computer/supplycomp,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/supply) +"Yo" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/engineering) +"Yp" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/structure/machinery/cm_vending/sorted/medical/wall_med{pixel_y = 25},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/dorms) +"Yq" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; layer = 2.5; pixel_y = 1},/obj/effect/decal/strata_decals/grime/grime1{dir = 4},/obj/structure/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Ys" = (/obj/structure/machinery/door/poddoor/railing{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Yu" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Yv" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/synthcloset) +"Yw" = (/obj/structure/machinery/door/firedoor/border_only/almayer{dir = 1},/obj/structure/window/framed/almayer/white/hull,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"Yx" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Yz" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{req_one_access = list()},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"YA" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"YB" = (/obj/structure/machinery/door/firedoor/border_only/almayer,/obj/structure/machinery/door/airlock/almayer/generic{access_modified = 1; name = "Storage"; req_one_access_txt = "19;21"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"YC" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"YG" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"YI" = (/obj/structure/closet/secure_closet/platoon_sergeant,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/supply) +"YN" = (/obj/item/device/radio/intercom{freerange = 1; name = "General Listening Channel"},/obj/structure/surface/table/reinforced/black,/turf/open/floor/carpet,/area/golden_arrow/platoon_commander_rooms) +"YO" = (/obj/structure/machinery/door/airlock/almayer/command{dir = 1; name = "Guest Office"},/turf/open/floor/almayer,/area/golden_arrow/shared_office) +"YQ" = (/obj/structure/machinery/flasher{id = "Containment Cell 5"; layer = 2.1; name = "Mounted Flash"; pixel_y = 30},/obj/structure/machinery/iv_drip,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer/research/containment/corner_var1{icon_state = "containment_corner_variant_2"},/area/golden_arrow/medical) +"YR" = (/obj/structure/safe/co_office,/obj/item/weapon/pole/fancy_cane,/obj/item/tool/lighter/zippo/gold{pixel_y = 3; layer = 3.05},/turf/open/floor/wood/ship,/area/golden_arrow/platoon_commander_rooms) +"YX" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/structure/sign/safety/electronics{pixel_x = 31; pixel_y = 6},/obj/structure/sign/safety/high_voltage{pixel_x = 31; pixel_y = -6},/obj/structure/machinery/portable_atmospherics/canister/air,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"YY" = (/turf/closed/wall/almayer,/area/golden_arrow/briefing) +"Zb" = (/obj/structure/machinery/iv_drip,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Zd" = (/obj/structure/surface/table/almayer,/obj/item/prop/almayer/chaff_launcher{pixel_x = 3; pixel_y = 9},/obj/item/prop/almayer/flare_launcher{pixel_x = 5; pixel_y = 19},/obj/item/prop/almayer/handheld1{pixel_x = 6; pixel_y = -8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Zf" = (/obj/structure/surface/table/reinforced/prison,/obj/item/device/binoculars,/obj/structure/machinery/light/small,/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"Zi" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/prop/almayer/computer/PC{dir = 8; pixel_y = 10},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Zl" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "blue"},/area/golden_arrow/shared_office) +"Zm" = (/obj/structure/pipes/vents/pump{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Zo" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Zq" = (/obj/structure/ladder{height = -1; id = "engisouth"},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Zr" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"Zw" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/cell_charger,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Zy" = (/obj/structure/surface/table/gamblingtable,/obj/item/toy/deck,/turf/open/floor/prison/chapel_carpet,/area/golden_arrow/shared_office) +"ZB" = (/turf/closed/wall/almayer/research/containment/wall/corner{dir = 4},/area/golden_arrow/medical) +"ZH" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer,/area/golden_arrow/supply) +"ZI" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/item/tool/warning_cone,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"ZK" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/landmark/supplyspawner/weapons,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"ZL" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ZM" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "sterile_green_side"},/area/golden_arrow/medical) +"ZP" = (/obj/structure/platform{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"ZQ" = (/obj/structure/window/framed/almayer/hull,/turf/open/floor/wood,/area/golden_arrow/shared_office) +"ZR" = (/obj/structure/closet/crate,/obj/item/storage/backpack/marine,/obj/item/storage/backpack/marine,/obj/item/storage/backpack/industrial,/obj/item/storage/backpack/industrial,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"ZV" = (/obj/structure/machinery/computer/card{dir = 4; pixel_x = 2},/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{dir = 10; icon_state = "silver"},/area/golden_arrow/platoon_commander_rooms) +"ZW" = (/obj/structure/computer3frame,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"ZX" = (/obj/structure/machinery/computer/cameras/almayer_network/vehicle{dir = 8; layer = 2.99; pixel_y = 4},/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{dir = 6; icon_state = "silver"},/area/golden_arrow/platoon_commander_rooms) +"ZY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"ZZ" = (/obj/structure/machinery/power/smes/buildable,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) + +(1,1,1) = {" +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGICICICICICICICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGICjnmDlVJmkeICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGICBlSLCoGQmcICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGICuXdiwdDPLhICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGICICICICICICDAdilVtXtXICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGICbdeiavpKGLDAAMDAICICICYvYvYvYvEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGICVvIiPRyWQslUZopoICYvYvYvxZqiYvICICICICICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGICICUwLQGsemOPuiLQjPICvwDJXICyBsYvICeqMfICICEGEGEGEGUIUIUIEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGwVuauqmjYsySySTsoPLcICGGroFwgrBrYvrFMFJyQzICEGEGEGEGUIgbUIEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGwVYoOcZoYsySySrSLQZdICYvRiaYoYGIYvprYowFPTICEGEGEGEGUIUIUIEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGwVZqbbexYsySySTsCGuyICICICDVICICICpqICICICICEGEGEGEGUIUIUIEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGICICSZWtTFfxIFlRSptOEUvKKgmjfbFiVVprYowVsRpWEGEGEGEGUIUIUIEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGICqroMPRrbgtPRwjyWnIUHiRJdakwjPRKnnIqmsRXiEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGICJFfVSsZiDAprccWvICICICICICICICICICICICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGICICICICICICTypuinICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGICICICICICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDTDTDTDTDTDTDTDTDTDTDTDTDTDTDTDEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDTDYRaddTedGceWeWfrAgFWIkideWTDEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDsvmkeOwsFcqCeWSKhjFcFcFcFcqCTDEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDfJjymkThaTaTrLrjHImkeCmkkZFcTDEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGKdEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDywmkmkrsFcAAeWmypHnJTOnQKDFcTDEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDpDjsjspMFceQeWmymkjbmkjbmkOdTDEGrPrPrPrPrPrPrPrPrPrPrPrPrPZQZQZQZQrPrPrPZQZQrPEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDnzcDWSeWqPeWeWLEJVJhCWhwozFcTDEGrPJUWliDWlJUdoqpdkTjJfpwdoMpcbcbcbtiPGKZCjkaZQEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDTDTDTDTDJiXaeWRvwsmkdJmkrsBETDEGrPUeuUDZkpJvdovjWKWKWKWKdoTRykJZsdhRPpBVuLUDZQEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDWNWNWNTDzQBoeWeWiimkdJmkcAeWTDEGrPUelWDZkpyIdoWKTMejKLWKdoTRyzZysdhRPptHuLOGZQEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDTDTDTDTDTDTDTDTDTDTDTDTDTDTDTDTDuNTDTDTDTDEGrPxjuUDZkpaadolSbVyCxwUvdoTRydyzsdhRPpxhfqzlrPEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDTDTDBGkHTDbDLyTDTDTDTDTDTDiGXsLpukVmowURTDTDrPHbuUDZkpyIdomhwWwWwWmhdoTRyzZysdhRhRhRhRhRrPEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDTDJuAFwqLdghStJuacgHTDTDnmLwLwVkQeVkLwLwpJTDrPHbTvjXijaadoOxmhmhmhqddoQqVfVfVfQfhRhRhRjqrPEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDxXkLukukkLukukkLmCfzTDjuOOmkfBfBwIfBfBmkkErWrPdodoxudododododoYOdododojGoAtokohRcbhRcbhRrPEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDIykLeRukBXvVBXkLukhhrXVkVkOMmpmpUGElElGTsjWggfXVXVXVXVXVFtXVXVXVXVXVdoDUgypOyVcbTRaMsdcbZQEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGjZUdnCkAKIBMOpvYqSukgNpxAeOOOMYNqNDxqNYNsCkEzErPfqfqRyfqfqRyfqfqRyfqfqckWoWoWolKhRcbcbcbhRZQEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDZVkLZXukbwjmbwkLukhhiTVkVkOMmpmpOCmpmpsCVkRlHxEyEyZlEyEyEyEyEyZlEyEydoVPVPVPkNBRhRcbhRhRZQEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDxXkLukukkLukukkLHlyuTDsPOOmkjbjbAvjbjbmkkExHdoBOdododoBOdorPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDTDJugMwlrtLYXLJuvTtMTDTDapiKfQVkhYVkfQlIAXTDeWShIododoShIoKbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDTDTDpCNnTDZfqaTDTDTDTDTDTDVkRJLwWJLwPoVkTDTDeWlmVOdodolmVOlXEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGTDTDTDTDTDTDTDTDTDWNWNWNWNTDTDpxWxpxWxpxTDTDWNeWnLHuYYYYnLHuKbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGzsFKFKFKzszszszszszszskmQWLWQWRkzszszszszszszszszszsKbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGzsFKzszszsorIDIDIGorzsyvJnQWJnHUzsorvBorIDIDzszszsFKKbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGzszszsEqQWLRLRLRFOfGgOuctqNDtqJqXYfGFOfGLRLRQWEdzszsKbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGzszsGtCCFGjetyTiDHDhXlFRFRFRFRFRAGCCuuDXhrhoXPsLiyzsKbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGzszszMJSxWQgHnKiqTUnJnmRmRkRJzfAvOJSYduObiQgTEUnxTzsKbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGzszsctMldLxdINpvrzsLREeXeXJnBbBbJnMlOHLiyioLiUsLctzsKbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGzszsgGCCdvQgQgQgQgsLJneXeXJnBbBbRECCdvkvQgQgQgsLibzsKbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGzszsquMlAtAtPfPfAtsLDSeXmRKadnBbeAMlAtAtPfPfAtsLZrzsKbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGzszsCAxpeLeLeLeLbYdAZYNxNxnwNxNxIcxpeLeLeLeLbYdAfOzszsEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGVllLSTzDWacEWAOQOQOQOQOQOQlEOQOQOQOQOQOQRnzyzDWaqwXnzCEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGVlfMTLWpososgswCyAMiUjbTyAVEaebTlMGVaeGzYAzFESWaqwclzCEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGwAUowgKRhyhySePAyXyXyXyXyXyXyXyXyXyXyXirYAzFqQSwIltarUEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGVlfMFCyTOLKOgAGFyXyXyXyXyXyXyXyXyXyXyXPlcmfeESWaLLclzCEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGVlPIFCyTluluhUQMyXyXyXyXyXyXyXyXyXyXyXMUYAVMzDWaqwIOzCEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGKbkbkbPFALfYTKQOGnyXyXyXyXyXyXyXyXyXyXyXqMZIVMvSYfbadzdzEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGKbTJluSTbqVDysPNjLyXyXyXyXyXyXyXyXyXyXyXirsqmJESWakPdznrEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGKbLDlusyQNhvXePNGFyXyXyXyXyXyXyXyXyXyXyXHoEVKKkGWacCdzICICICICICICICICICICICICICICICICICICICICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGKbIvluSTbqVDVDPNhbyXyXyXyXyXyXyXyXyXyXyXCrsNmJESkrnydzICRLqZaOISoGVxaOwcaOhaGOuVEWRXRXaOICICICICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGKbdzdzXDWYCnxPbjGnyXyXyXyXyXyXyXyXyXyXyXqMYAVMsgWaqqdzICprKnhmikOSPMaOwcaOIUiadHdHdHdHaODsTNIRICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGKbwXjHSTDMdSvnFVjLyXyXyXyXyXyXyXyXyXyXyXircmVMzDWaLLXnDAprVtUVYGbAkdaOwcaOpGOwoZoZlGlGMPfCoauBICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGKbwXeySTcEESzFXdshyXyXyXyXyXyXyXyXyXyXyXPlcmfeESWaLLclNfPRLbaOhpYzWjaOwcaOTzcLlVhiOqlVaOhzVUTAICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzdzdzdzdzdzdzdOJCsyWsvqzFXdsnyXyXyXyXyXEDyXyXyXyXyXwrcmfekGSwIltWaOSvjcaOaOaOaOaOwcaOwummazwZyMZZaOORVUSrICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzlululululudzwXfMMwcEESzFsYSjyXyXyXyXyXyXyXyXyXyXyXWmYAfeESWaLLfNNfPRCSKlPLqZenaOaOaOPvlTlVBpqYlVaOsfVUJYICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzlululululudzwXFUSTcEzDNFsYjLyXyXyXyXyXyXyXyXyXyXyXeuYANFzDcELLIOICzoBWPRPRgVAOgEPbRKPbPUjUrGkMVCNfwvnpWPICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzlululululudzdzdzBzcEzDNFsYGFyXyXyXyXyXyXyXyXyXyXyXUzYAVMzDWabadzIClNprKnKnWEMcoblGJNBntYlGoZoZlGaODssKAdICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzlulululululuULlulucEESfesYhbyXyXyXyXyXyXyXyXyXyXyXAJYAfeESWaADdzICrCUMZwZWzdYXICDsVWqUCzJemiBeNSICICICICICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzlululululueymbeylucEESfesYGnyXyXyXyXyXyXyXyXyXyXyXWmYAfeESWaEHdzICICICICICICICICICICICICICICICICICICICICEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzlulululululuULluluWaESzFXdPAyXyXyXyXyXyXyXyXyXyXyXeuYAzFESWaYxdzEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzlululululudzdzdzcTIIKpVMXdGFyXyXyXyXyXyXyXyXyXyXyXPlYAVMvSqngqxUHfHfHfHfSdSdSdHfHfFFFFHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzlululululudzkXWuSTcEzDNFsYhbyXyXyXyXyXyXyXyXyXyXyXAJcmVMzDWaLLeIKNNCFxMqrqdtotEBHLYwYwHLDGQbEbHLHLHLHLHLHLHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzlululululudzkXeySTWaESzFsYSjyXyXyXyXyXyXyXyXyXyXyXWmYAfeEScELLtIVgKWKWqeKWKWqeXccauGgIHLeknBanHLawjRCxHLHLHfHfvdUYUYUYZBmPmPKXKXmPvdUYUYUYUYUYZBHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzlululululudzhOVysySwvqzFsYPAyXyXyXyXyXyXyXyXyXyXyXirYAfekGWsIlhIKNPEqeqeqeDzqePErErMKWqRzvnBFuHLoxKWhMHLHLHfHfDwGRrulsSumPmPxozOmPDwGRfhvUfhCVSuHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzlululululudzkXfMSTWaESzFsYSHhcDynxdYVzDynxZLhchcDylhYAfeESWaLLtIVgKWKWqeKWKWqeXccaPEnfHLeknBanHLpiKWwpHLHLHfHfDwnGrnqXOTgYmPmPmPmPDwkCcXrnNEqXSuHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzlululululudzkXfMSTWazDNFSMgcgcMEMEkFfouefoQZgcgcgcgcmGVMzDWaLLndKNjOGoKMEZRgwzHQHLqgaQHLeknBanHLyYKWAjHLHLHfHfDwNcBvicDiHCUbFmKvbWdWkCpQrnpQqXSuHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzkylulululudzdzdzjdosJatdWaWaWaTkWabRNiioIqbRWaWaWaWaWaKTuInHvlEvHLHLHLHLiXececHLHLAPCiHLCiDmCiHLCizVCiHLHLHfHfiBUEtDUEwNpVKWqeKWzhJcyNHXrnsBvASuHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGdzdzdzdzdzdzdzspQkEfQBeDMtKVoWLOVnMHQpxsCInKQpqvtgnhPHWamupPtvssXTcVDtVYHjHjdFumdVSoKWEZGJEZEZKWBmEZEZEZEZksyQGiGMSCtcAWItHBGarxWQkOhTzAVqVqVqxnSuHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGKbjjCpxcCpEkOacEWaWaWaWabRIAzgesbRWaWaWacEcEWDBLUlRrkYylDtqGKWKWKWPgHLktDzsxUhArVIPEDzsxUhArVIPEntGiMoqeqeqeqeqeJPLeZbyEwLVcVcVcVcVcOYHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGKbudrHEfzLIgXvWacEWacEWaVDbRQpbRVDWaWacEWaWasYzpnqEMZKkDDtCZEZEZNlumdVqgKWHjHjHjHjKWKWHjHjHjHjKWyQGigjZMQhZMagwOlbPnzJMxSJGRfhUCfhtGSuHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGKbuhuhXHQdbzMOhlXrXrhlXrXrhlhlhlZHZHhlZHZHhlwbbzJlkkHLHLHLHLHLJXHLecHLHLMylPKWoEAEmdMylPKWoEyaApHfHfvdUYOEUYZBpVKWqeKWzhENyNcXrnNEvASuHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGfmqjmQNmClyjhltebookboInceFzEsboboFyIndUhlNmClyjGKHdReypfdoCHjrpEXaRHLHGHGahHGHGHLHGHGahHGHGHLHfHfDwYQfRXARPJsGZYhAkPQdxkCpQrnpQqXSuHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGfmPamQNmClsUjBTTLCLCLCLCqILCfTLCtjLCtjLNxSCtClmaGKGXdlrMKWKWEZKWKWDzHLwTHjKWHjBxHLwTHjKWHjBxHLHfHfDwnGrnqXIsgTmPmPmPmPDwkCHXrnsBqXSuHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGJrKsPOlilasUjBTGLCaKtjLCqIARfTLCLCAnLCLNxSFbBteBIKGmHLOVbJQIqeONONhBHLKrKWKWKWxLHLKrKWKWKWxLHLHfHfDwcqASRmSumPmPKwtRmPDwDuVqvXVqIxSuHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGvCPamQBwClsUjBkgLCLCLCLCqILMzTLCtjLCLMLNxSCtClyjGKDzECrMKWKWHjKWKWDzHLPzKWWXKWhMHLPzKWWXKWhMHLHfHfiBUEUEUEwNmPmPqoqomPiBUEUEUEUEUEwNHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGvCbemQBwClyjhlLsWwiuEcWwNOKHBievWwiuEcCfhlBwClmaGKAKReypBBNkrfmWvLvWHLLZRpuHUXEwHLLZRpuHUXEwHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhuhYqddOnhqhqhqhqhqhqriNVhqhqhqhqhqhqhqhqhqOnfsTSHLHLHLHLHLHLHLHLHLHLHLHLHLHLHLHLHLHLHLHLHLHfEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGnFuhnUErHzhqkBJwtQGCOepemqznoTfuOeznoTfuivhqIYTusmWhWhWhWhWhWhWhWhWhWhWhvbvbvbvbvbvbvbvbvbvbvbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGnFuhKYCmYuXrBcLCLCYImKIPGvTXstVLBSVLstpmLCXrYuELKYWhWhWhodaNogUUogFoogpEbxvbvbvbvbvbvbvbvbvbvbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGnFuhnUELizXrMbLCLCkgYBkJAzLBGSLBLBLBGSFTLCoOezCmvJWhWhWhSbaNaNaNgmNANAQHbxbxrhootZvfWeutlgLnvbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhuhKqCmYuXrqfBUgoRWmKXtnaGSWHqVdqqVcvBNcHXrigqyJAWhWhogduzZvMQFnlnlnleGYpeoeoeoXyXyMDbpeoKEdEEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGNhFXmQELYuhqRQRQjoOeOeIEqOAciLiLAciLiLiONwhqKxyjGKgdBkBkNAaNaNaNcgBkKfXmxteoeoeoCYovEiyycwopFhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGNhbemQELYuhqEIBUBUzWxQLKuTGftEtEphtEtEGBwkhqKxyjGKOrqbBkBkXoogoUogGwogoUbxWeWePcmsImeomTeolBeUEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGeVKsPOVrIpZHveveveverOnubuxrpcpcpcpcpcYlzNhqBtFHIKJgtFRsxNoiogogogogogogbxbxPmhnQcXyRdOolQWebxEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGNhPanABwClFdHrHtHtBUBUpZSFxGpcpcpcpcpcYlnVXrClyjGKsiBkBkNAneogrrogrrogrrbxWeWeQudPdPWrbxbxbxbxEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGNhOgnANmClOeYmlzHconKGnuskdjpcpcWVpcpchkIhyDClyjGKefqbBkNAaNblaNarNAgmXmlBeoeoeoXyyGyGhKOfETfkEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhuhXJNmClFdHrBUBUBUHtpZxExGpcpcpcpcpcYlZRXrOnfsCTWhWhogkwQFFjQFnlnlnleGwteoeoeoeoDoPyjAeowhPtEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhDRvhqAXrdCjvaUxFGrnubuxrpcpcpcpcpcYlKFhqYuCmUiWhWhFaQHBkBkQHLTQHNABkbxbxgXeoXyujfWGYgkUQfkEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhCHyqofhqEIBUHtBUmBpZatlltktkeHtktkswEOhqYuCmOsWhWhNLaNBuBuUUogFoBuBuvbvbvbyHyHvbvbvbvbvbvbEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhMABwClhqRQRQMeiYyPseyoZPDdDdZPDdDdZPDdzIYuCmKYuhuhWhWhQaBkWhWhWhQaBkWhWhWhQaBkWhWhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhuhKqZmlahqhVVTkJTCmKEFnoPDTVTVTVTVkKTVTVgvynIQLkuhuhWhogVJVJogogogVJVJogogogVJVJogWhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGAUFXmQBwClXrTrBHBUkJxkdgpsIfiNHqzeLGjrbKoNhqMIqyGKFXbfWhunRYCBzcogXWRYdDOkogXWdyRYOkWhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGAUPamQBwClXrBIBUBUpZmKWbEeBUmStjLCHtLCLCHthqClyjGKVQbfWhaqRYUONTogaqRYdDNTogaqdynkNTWhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGqsyZATsSMzelocSapnishqCUABExfvNPRNxfyJSPdGhqBtrwPwczzKWhXWNrNrOkogunNrNrzcogunNrNrzcWhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGAUbemQNmXGrBrBrBrBrBrBrieKrirBKjKjrBVbVbrBrBClyjGKqFbfWhaqRYAmNTogaqRYRYNTogaqRYRYNTWhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGAUOgnAvhqADgqlqlqlWMCmNmqlqlqlyjCmDgqlqlqlBdFLfsGKOgbfWhiMRYAmaVogiMRYRYaVogiMRYRYaVWhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhuhTHKYRfoubLLjTwfnlrNNbLLjbLdKlrNNbLLjTwfnvHKYTSuhuhWhWhWhWhWhWhWhWhWhWhWhWhWhWhWhWhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhvrKYkxVpVpUJVpfDncVpVpUJVpVpUqfDVpUJVpVpVXrRvruhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhuhuhvrxxnXuJnXnXuhnXnXuJOiOiuhnXOiuJOiTfvruhuhuhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhuhVRVRVRVRGuuhPCPCPCPCPCuhVRVRVRVRVRuhuhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhererererCRuhbUbUbUbUbUuherererereruhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGuhWWWWWWWWYCuhCmCmELELCmuhWWWWWWWWWWuhEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +EGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEGEG +"} diff --git a/maps/map_files/Palisade/sprinkles/.gitkeep b/maps/map_files/Palisade/sprinkles/.gitkeep new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/maps/map_files/Palisade/sprinkles/.gitkeep @@ -0,0 +1 @@ + diff --git a/maps/palisade.json b/maps/palisade.json new file mode 100644 index 0000000000..95fc308768 --- /dev/null +++ b/maps/palisade.json @@ -0,0 +1,9 @@ +{ + "map_name": "USS Palisade", + "map_path": "map_files/Palisade", + "map_file": "Palisade.dmm", + "webmap_url": "GoldenArrow", + "traits": [{"Marine Main Ship": true}], + "nightmare_path": "maps/Nightmare/maps/golden_arrow/", + "platoon": "/datum/squad/marine/alpha" +} diff --git a/maps/shuttles/breacher_shuttle.dmm b/maps/shuttles/breacher_shuttle.dmm new file mode 100644 index 0000000000..7139127421 --- /dev/null +++ b/maps/shuttles/breacher_shuttle.dmm @@ -0,0 +1,73 @@ +"bd" = (/turf/closed/shuttle/midway/transparent{icon_state = "86a"},/area/shuttle/breach) +"cu" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "99a"},/turf/template_noop,/area/shuttle/breach) +"dr" = (/turf/closed/shuttle/midway/transparent{icon_state = "26"},/area/shuttle/breach) +"ds" = (/obj/structure/bed/chair/dropship/passenger{dir = 4},/turf/open/shuttle/dropship{icon_state = "rasputin3"},/area/shuttle/breach) +"dI" = (/turf/closed/shuttle/midway/transparent{icon_state = "35"},/area/shuttle/breach) +"dU" = (/turf/closed/shuttle/midway/transparent{icon_state = "27"},/area/shuttle/breach) +"gH" = (/turf/closed/shuttle/midway/transparent{icon_state = "39"},/area/shuttle/breach) +"ht" = (/obj/structure/shuttle/part/midway{icon_state = "15"},/turf/template_noop,/area/shuttle/breach) +"jK" = (/obj/structure/shuttle/part/midway{icon_state = "106"},/turf/open/space/basic,/area/shuttle/breach) +"kF" = (/obj/structure/machinery/door/airlock/evacuation,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/shuttle/breach) +"mk" = (/turf/closed/shuttle/midway/transparent{icon_state = "113"},/area/shuttle/breach) +"mI" = (/obj/structure/shuttle/part/midway{icon_state = "48"},/turf/open/space/basic,/area/shuttle/breach) +"mZ" = (/turf/closed/shuttle/midway/transparent{icon_state = "29"},/area/shuttle/breach) +"nm" = (/turf/closed/shuttle/midway/transparent{icon_state = "34"},/area/shuttle/breach) +"oC" = (/turf/closed/shuttle/midway{icon_state = "83"},/area/shuttle/breach) +"pd" = (/obj/effect/attach_point/fuel/midway{attach_id = 10},/turf/closed/shuttle/midway/transparent{icon_state = "28"},/area/shuttle/breach) +"pe" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "91"},/obj/effect/attach_point/electronics/midway,/turf/template_noop,/area/shuttle/breach) +"qa" = (/obj/structure/blocker/forcefield/multitile_vehicles,/obj/structure/machinery/door/airlock/hatch/cockpit/four,/turf/open/shuttle/dropship{icon_state = "rasputin15"},/area/shuttle/breach) +"qo" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "41"},/turf/template_noop,/area/shuttle/breach) +"ry" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "6"},/turf/template_noop,/area/shuttle/breach) +"rO" = (/turf/open/shuttle/dropship{icon_state = "rasputin3"},/area/shuttle/breach) +"sh" = (/obj/structure/shuttle/part/midway{icon_state = "46"},/turf/template_noop,/area/shuttle/breach) +"sr" = (/obj/structure/shuttle/part/midway{icon_state = "47"},/turf/open/space/basic,/area/shuttle/breach) +"sM" = (/turf/closed/shuttle/midway/transparent{icon_state = "86b"},/area/shuttle/breach) +"ua" = (/turf/closed/shuttle/midway/transparent{icon_state = "78"},/area/shuttle/breach) +"wE" = (/turf/closed/shuttle/midway/transparent{icon_state = "80"},/area/shuttle/breach) +"wL" = (/turf/closed/shuttle/midway/transparent{icon_state = "108"},/area/shuttle/breach) +"xB" = (/turf/closed/shuttle/midway/transparent{icon_state = "32"},/area/shuttle/breach) +"yT" = (/turf/closed/shuttle/midway/transparent{icon_state = "22"},/area/shuttle/breach) +"zd" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "84"},/obj/effect/attach_point/electronics/midway,/turf/template_noop,/area/shuttle/breach) +"zn" = (/turf/closed/shuttle/midway/transparent{icon_state = "107"},/area/shuttle/breach) +"zx" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "2"},/turf/template_noop,/area/shuttle/breach) +"zW" = (/obj/structure/bed/chair/dropship/passenger{dir = 4},/obj/structure/machinery/light/double{dir = 1; light_color = #FF0000},/turf/open/shuttle/dropship{icon_state = "rasputin3"},/area/shuttle/breach) +"Ac" = (/turf/closed/shuttle/midway/transparent{icon_state = "114"},/area/shuttle/breach) +"Di" = (/obj/structure/bed/chair/dropship/passenger{dir = 8},/obj/structure/machinery/light/double{dir = 1; light_color = #FF0000},/turf/open/shuttle/dropship{icon_state = "rasputin3"},/area/shuttle/breach) +"Dl" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "95a"},/turf/template_noop,/area/shuttle/breach) +"Ep" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "40"},/turf/template_noop,/area/shuttle/breach) +"Es" = (/obj/structure/shuttle/part/midway/transparent,/obj/docking_port/mobile/crashable/breacher/b,/turf/template_noop,/area/shuttle/breach) +"IE" = (/turf/closed/shuttle/midway/transparent{icon_state = "89a"},/area/shuttle/breach) +"Jb" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "5"},/turf/template_noop,/area/shuttle/breach) +"JZ" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "40"},/obj/structure/shuttle/part/midway/transparent{icon_state = "15"},/turf/template_noop,/area/shuttle/breach) +"Ke" = (/turf/closed/shuttle/midway/transparent{icon_state = "38"},/area/shuttle/breach) +"Kp" = (/turf/closed/shuttle/midway/transparent{icon_state = "97a"},/area/shuttle/breach) +"Lq" = (/obj/structure/bed/chair/dropship/passenger{dir = 8},/obj/structure/machinery/light/double{light_color = "#FF0000"},/turf/open/shuttle/dropship{icon_state = "rasputin3"},/area/shuttle/breach) +"MC" = (/turf/open/shuttle/escapepod{icon_state = "floor5"},/area/shuttle/breach) +"ME" = (/turf/closed/shuttle/midway/transparent{icon_state = "69"},/area/shuttle/breach) +"MG" = (/obj/structure/stairs/perspective{dir = 1; icon_state = "p_stair_full"; pixel_y = 22},/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{dir = 1; pixel_x = 8; layer = 5},/obj/structure/machinery/computer/shuttle/breacher_pod_panel{pixel_y = 23},/turf/open/shuttle/dropship{icon_state = "rasputin15"},/area/shuttle/breach) +"NK" = (/turf/closed/shuttle/midway/transparent{icon_state = "50"},/area/shuttle/breach) +"Ph" = (/turf/closed/shuttle/midway{icon_state = "75"},/area/shuttle/breach) +"Qk" = (/obj/effect/attach_point/fuel/midway{pixel_x = -32; attach_id = 11},/turf/closed/shuttle/midway/transparent{icon_state = "33"},/area/shuttle/breach) +"So" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "41"},/obj/structure/shuttle/part/midway{icon_state = "46"},/turf/template_noop,/area/shuttle/breach) +"Sp" = (/turf/template_noop,/area/shuttle/breach) +"Tu" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "20"},/turf/template_noop,/area/shuttle/breach) +"TM" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "21"},/turf/template_noop,/area/shuttle/breach) +"UQ" = (/turf/closed/shuttle/midway/transparent{icon_state = "23"},/area/shuttle/breach) +"Yo" = (/obj/structure/shuttle/part/midway/transparent{icon_state = "10"},/turf/open/space/basic,/area/shuttle/breach) +"YD" = (/obj/structure/bed/chair/dropship/passenger{dir = 4},/obj/structure/machinery/light/double{light_color = "#FF0000"},/turf/open/shuttle/dropship{icon_state = "rasputin3"},/area/shuttle/breach) + +(1,1,1) = {" +SpDlKpcuSp +zdbdMGIEpe +PhuaqawEoC +sMzWMCDiME +NKdsMCrOkF +sMYDMCLqME +shsrMCmIht +EpSoYoJZqo +nmdIjKKegH +pdmZznxBQk +yTUQwLdrdU +TuTMmkTuTM +EszxAcJbry +"}